Quote:
Originally Posted by briealeida Adding the following to my .htaccess worked:
php_flag allow_furl_open on
php_flag allow_url_include on |
These are dangerous options that could allow someone to include remote PHP code if they can find a security hole in your scripts. Make sure your scripts are 110% secure before turning these on. They should not be needed for including files on the local server, anyway.
Quote:
Originally Posted by twmprys When I change the script to write the instruction 'require', I get a fatal error - Failed opening required 'menu.php' (include_path='.:/usr/share/pear') -. Trouble is, because the pages are seen as belonging to Apache, I can't get into them to find out what the script has written. |
Something is wrong with the configuration of your PHP installation. Try changing the include (or require) path to "./menu.php".