Click to See Complete Forum and Search --> : PHP scripts only run in top level directories


TheBouleOfFools
04-07-2002, 05:32 PM
This is rather annoying. Scripts that are in the top level directory (either the root directory or a users' directory) will work, but if they are in a directory under that, say /forum, they wont work. bogo.ath.cx/~user/index.php works, but bogo.ath.cx/~user/forum/index.php doesn't work. Same goes for bogo.ath.cx/index.php and bogo.ath.cx/forum/index.php. Why is this? Any help would be appreciated.

Choozo
04-08-2002, 06:03 AM
Check your httpd.conf file for 'FollowSymLinks' in the <Directory /> directive, and 'SymLinksIfOwnerMatch' in the <Directory /home/*/public_html> directive.

Hope that helps? :)

TheBouleOfFools
04-08-2002, 08:47 PM
Thank you very much! Worked great :)