Problem not directly related to ZF, more a PHP configuration. (Before
someone gets angry, I apologize for the post which is not directly connect
to ZF)
The server seems to not recognize the value of the include_path
in the main php.ini file:
include_path='.:/php/ZF'
Under this path there is a Zend folder with all the content of all the files
drwxr-xr-x 5 apache apache 4096 Mar 17 02:01 Acl
-rw-r--r-- 1 apache apache 37781 Feb 21 15:01 Acl.php
drwxr-xr-x 4 apache apache 4096 Mar 17 02:01 Auth
-rw-r--r-- 1 apache apache 3848 Feb 16 11:58 Auth.php
....
The error:
Failed opening required 'Zend/Feed.php' (include_path='.:.:/php/ZF')
Ok, let's try from the script:
set_include_path('.:/php/ZF/Zend');
Almost same error:
Failed opening required 'Zend/Feed.php' (include_path='.:/php/ZF')
I have no problems if I put the Zend Folder under the same directory, but I
wanted it to be configured server wide via the include_path. The ZF folder
and subfiles are all owned by the apache user/group.
Thank you for the time you spent reading and sharing some solution.