Quote:
Originally Posted by pavithrap
Along with that Zend Framework also got installed. Now the path of Zend Framework classes is 'C:\Program Files\Zend\Core\ZendFramework\library'. So as per instructions, in the php.ini file of Apache, i included the this path. So it became,
include_path = ".;c:\php\includes;c:\ProgramFiles\Zend\Core\ZendF ramework\library"
But if i restart the server, I am getting the same error again and again. When I checked in the server error log, the error that I am getting is ,
PHP Warning: require_once(Zend/Filter/Digits.php) [<a href='function.require-once'>function.require-once</a>]: failed to open stream: No such file or directory in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\Zend\Filters\Customize d_Filter.php on line 4
PHP Fatal error: require_once() [<a href='function.require'>function.require</a>]: Failed opening required 'Zend/Filter/Digits.php' (include_path='.;C:\Program Files\Zend\Core\ZendFramework-0.8.0') in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\Zend\Filters\Customize d_Filter.php on line 4
|
Your include_path in your php.ini:
include_path =
".;c:\php\includes;c:\ProgramFiles\Zend\Core\ZendFramework\library"
and the error you get:
Failed opening required 'Zend/Filter/Digits.php'
(
include_path='.;C:\Program Files\Zend\Core\ZendFramework-0.8.0')
The values for the include_path don't match.
That could be the problem, i guess.
Are you sure, you are loading the desired php.ini?
Ckeck it with phpinfo().
hth
/friedhelm