• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

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