I have tried every way I can think of to set the include_path in .htaccess
php_value reurns a server error: 'php_value', perhaps mis-spelled or defined by a module not included in the server configuration
ini_set returns a 500 error: 'ini_set('include_path',', perhaps mis-spelled or defined by a module not included in the server configuration
A blank .htaccess returns a notice that I didn't read the directons.
My include_path in php.ini is: include_path = ".;c:\php\includes;d:\web_site\phopenchat\includes"
I am running apache on a Windows 2000 machine, with mysql and php installed...
Can someone please help me with a workaround to get this script working?
Thanks
Try the following in .htaccess:
php_value include_path "/yourpathtophpopenchat/includes"
Cheers
Tom
Log in to post a comment.
I have tried every way I can think of to set the include_path in .htaccess
php_value reurns a server error:
'php_value', perhaps mis-spelled or defined by a module not included in the server configuration
ini_set returns a 500 error:
'ini_set('include_path',', perhaps mis-spelled or defined by a module not included in the server configuration
A blank .htaccess returns a notice that I didn't read the directons.
My include_path in php.ini is:
include_path = ".;c:\php\includes;d:\web_site\phopenchat\includes"
I am running apache on a Windows 2000 machine, with mysql and php installed...
Can someone please help me with a workaround to get this script working?
Thanks
Try the following in .htaccess:
php_value include_path "/yourpathtophpopenchat/includes"
Cheers
Tom