• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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