eridanus

Registered
Dec 7, 2006
3
0
151
Hello, I have a website that needs to run the php system() command (linux shell command), i realized that this command is executed by the user nobody, in the httpd.conf is:

...

User nobody
Group nobody
...

ok...but....

in this specific virtual host is

<VirtualHost x.x.x.x x.x.x.x>
ServerAlias somedomain.com
ServerAdmin [email protected]
DocumentRoot /home/somedomain/public_html
BytesLog domlogs/somedomain.com-bytes_log
User somedomain
Group somedomain
ServerName www.somedomain.com



I want the command to be executed by the user somedomain, is this possible???

Thanks