Posted by Janwillem Borleffs on 01/01/06 03:10
Jim Carlock wrote:
> Any recommendations on the best way to map paths?
>
IMO, the most convenient way to do this is to add a php_value directive to
the httpd.conf file:
php_value include_path ".;C:/Path to includes dir"
Or when using virtual hosts:
<VirtualHost *:80>
php_value include_path ".;C:/Path to includes dir"
...
</VirtualHost>
JW
[Back to original message]
|