by (1.4k points)
retagged by
This is a Question from Forum. I had the same problem an will answer now.  

> Hello,
after install, a have error:
Warning: require_once(Zend/Application.php) [function.require-once]: failed to open stream: No such file or directory in /var/www/web2/html/index.php on line 29
Fatal error: require_once() [function.require]: Failed opening required 'Zend/Application.php' (include_path='.') in /var/www/web2/html/index.php on line 29
can anybody me help !!!

1 Answer

by (1.4k points)
Reason is probably  a wrong apache config. (confixx??)
Search  "php_admin_value include_path ." in your apache config and comment it.

@seotoaster-team
I recommend to integrate follow lines in install/index.php on line 20:

// Ensure library/ is on include_path
if(!set_include_path(implode(PATH_SEPARATOR, array(
    ZFLIBPATH,
    get_include_path(),
)))){die("Wrong includepath! check your webserver config of '
php_admin_value'") ; //or so...
...