Re: include path [message #962 is a reply to message #961] |
Wed, 18 July 2007 12:47 |
AJM
Messages: 2367 Registered: April 2006 Location: Surrey, UK
|
Senior Member |
|
|
The include_path is initially defined in your PHP.INI file, but can also be modified using the correct instruction in an htaccess file (if you are using Apache). It can also be modified using the ini_set() function in your PHP code.
In order to check that the htaccess file is being properly processed you need to run the phpinfo() function. Simply create a script called 'phpinfo.php' with the following contents
, put in in your web root, then run it from your browser.
If the contents of the htaccess file are not being processed, perhaps you have not configured Apache to deal with htaccess files. Details are provided in the installation instructions.
Tony Marston
http://www.tonymarston.net
http://www.radicore.org
|
|
|