• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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