Website Provisioning from Agilebill

C

Clyde Swann

Guest
Greetings!

Using Agilebill to auto provision websites after customer signup. Plesk 8 not yet included. Need variables and other info to pass to Plesk 8 to accomplish task please. I have provided instructions and setup info for how it works under Plesk 7 for clarity as follows:

--------
On the server with Plesk7 provisioning plugin, where the plesk creation utilities are created you must create a .sh file with the following included;

CURL=/usr/bin/curl
KEY=252c716a69e3b2fd2b5e98ac5afb78da
PLG=PLESK_LINUX_7
URL=http://blackswann.net/ab/plugins/provision/

${CURL} -d "key=${KEY}" ${URL}${PLG}.php > provision_output.sh
sh provision_output.sh
rm provision_output.sh
----------------------------
on the target serverYou must then give the .sh file you have created proper permission to execute the plesk creation utilities (normally root), and create a crontab job that runs it every 2-3 minutes.

Any help with this is appreciated.
 
Back
Top