On 2 Apr 2001, at 13:26, Richard Kurth wrote:
> I am using php4.0.4pl1 with apache 3.0.12 on Windows 98. It is set as PHP as
> a module in Apache using LoadModule php4_module c:/php/sapi/php4apache.dll.
> It works just fine as far as I can tell except when I try to use a .htaccess
> file it does not seem to read the file. The file I what it to read looks
> like this
>
> php_value include_path "C:\httpd\htdocs\home\inc"
>
> It does not give me any errors it just doesn't read the file.
>
> Anybody now how to make this work.
>
Richard,
Beware that you set the include_path in php.ini to also include the
current directory (.). Just like
include_path .;C:\httpd\htdocs\home\inc
Otherwise the PHP-engine will not execute any more scripts.
I've had errors like this after changing this path. Took me some
time to find out why it did not work anymore.
Greetings,
Martijn Weisbeek
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]