• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

running command line and php

S

stuayre

Guest
Hi,

im trying to write an automated setup script in php
but i can't seem to get the domain.sh or any of the other
command line tools to work in PHP.

I've tried...

Code:
exec('usr/local/psa/bin/./domain.sh -i mydomain.com',$result);


Code:
exec('/usr/local/psa/bin/./domain.sh -i mydomain.com',$result);


Code:
exec('../../../../usr/local/psa/bin/./domain.sh -i mydomain.com',$result);


but $result is always empty, it works fine from shell, how can I run these programs from within PHP?


cheers

Stu
 
Just to answer my own question


this is the only one that works

Code:
exec('/usr/local/psa/bin/./domain.sh -i funkygroup.com 2>&1',$status);


but it always errors with "Permission denied"


does anyone know what i need to do to get this to work?



cheers

Stu
 
Back
Top