Hear us Roar
Article:
 |
|
PHP 4.3 and Mac OS X
|
| Subject: |
|
include_path |
| Date: |
|
2003-01-17 02:15:55 |
| From: |
|
maarky
|
Response to: include_path
|
|
Try entering this into your httpd.conf file:
<IfModule mod_php4.c>
php_value include_path "/Library/WebServer/Documents/"
</IfModule>
You will find a number of these <IfModule> ... </IfModule> entries in your config file. Place it after one of the closing </IfModule> statements. Change the path to whatever you want the include path to be. Also, if you have any virtual hosts set up you can add this inside the <VirtualHost *> ... </VirtualHost> statements. Again, change the path to correspond to the Virtual Host's path.
Hope this helps.
|
|
| |