I just installed suPHP and now need a little help setting up some environment variables to make it work with my web directory structure.
In the suPHP.conf I have a standard array of global options, what I'm really concerned about is this line:
;Path all scripts have to be in
docroot=${HOME}
;Path to chroot() to before executing script
;chroot=/mychroot
I replaced the default value of /var/www to ${HOME} hoping that it does something.
I know suPHP is running because when I was playing around with the docroot paths I would get an error telling the Documentroot of my site isn't specified in the suPHP configuration.
In my VirtualHost directive I have placed:
<VirtualHost *:80>
ServerAdmin admin@abc.com
ServerName abc.com
ServerAlias www.abc.com
DocumentRoot /web/users/abc.com/htdocs
<IfModule mod_suphp.c>
suPHP_ConfigPath ${DOCUMENT_ROOT}/
</IfModule>
<Directory "/web/users/abc.com/htdocs">
AllowOverride All
Order allow,deny
Allow from ALl
</Directory>
</VirtualHost>
Now, I have placed a php.ini in the document root of my VirtualHost and did something simple like display_errors = On and echoed an un declared variable to test it. But I'm not seeing an error pop up (and yes, I have the error level set to E_STRICT and E_ALL).
Further more, I can't seem to get su_PHP_UserGroup to work, on reloading apache i get an error saying that i have a syntax error at that line.
suPHP_UserGroup(no underscore between the su and PHP} andsuPHP_ConfigPath %{DOCUMENT_ROOT}– TerryE Mar 6 at 16:30