0
Fatal error: Uncaught exception 'UnexpectedValueException' with message 
'DirectoryIterator::__construct(/modules) [<a href='directoryiterator.--construct'>directoryiterator.--construct</a>]: 
failed to open dir: No such file or directory' in 
/home/www/zf/library/Zend/Controller/Front.php:289 Stack trace: 
#0 /home/www/zf/library/Zend/Controller/Front.php(289): DirectoryIterator->__construct('/modules') 
#1 /home/www/zf/library/Zend/Application/Resource/Frontcontroller.php(72): Zend_Controller_Front->addModuleDirectory('/modules') 
#2 /home/www/zf/library/Zend/Application/Bootstrap/BootstrapAbstract.php(683): Zend_Application_Resource_Frontcontroller->init() 
#3 /home/www/zf/library/Zend/Application/Bootstrap/BootstrapAbstract.php(626): Zend_Application_Bootstrap_BootstrapAbstract->_executeResource('frontcontroller') 
#4 /home/www/zf/library/Zend/Application/Bootstrap/BootstrapAbstract.php(586): Zend_Application_Bootstrap_BootstrapAbstract->_bootstrap(NULL)
#5 /home/www/zf/library/Zend/Application.php(355): Zend_Application_Boot in /home/www/zf/library/Zend/Controller/Front.php on line 292

这就是我得到的错误。我检查了所有的路径,看起来都是正确的。我不知道这个错误是怎么回事。请帮忙。

这是我的 index.php

<?php

// Define path to application directory
defined('APPLICATION_PATH')
    || define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/home/www/mf/application'));

//path for public
defined('PUBLIC_PATH')
    || define('PUBLIC_PATH', realpath(dirname(__FILE__) . '/home/www/iops.axeleron.biz'));


// Define application environment
defined('APPLICATION_ENV')
    || define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'production'));

// Ensure library/ is on include_path
set_include_path(implode(PATH_SEPARATOR, array(
    realpath(APPLICATION_PATH . '/home/www/zf/library'),
    get_include_path(),
)));




/** Zend_Application */
require_once 'Zend/Application.php';


// Create application, bootstrap, and run
$application = new Zend_Application(
    APPLICATION_ENV,
    APPLICATION_PATH . '/home/www/mf/application/configs/application.ini'
);
$application->bootstrap()
            ->run();
4

2 回答 2

0

你的APPLICATION_PATH样子不对。如果您对硬编码感到满意,您可能想要:

defined('APPLICATION_PATH')
    || define('APPLICATION_PATH', '/home/www/mf/application'));

对下面的行也应用相同的更改PUBLIC_PATH

通常,您不想对路径进行硬编码,而您之前可能拥有的是:

defined('APPLICATION_PATH')
    || define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));

这应该仍然有效。这使用当前文件的路径计算出应用程序路径。

于 2013-09-06T17:56:51.007 回答
0

谢谢大家的回复。我自己解决了这个问题。我的服务器需要到处都有硬编码的路径,所以我在 config 和 index.php 中进行了这些更改,它的工作就像一个魅力。

感谢你的帮助!...

于 2013-09-07T06:03:12.997 回答