作为警告,我不是程序员。我继承了一个使用Zend Framework的应用程序,需要更新,我正努力在这里做到最好。如果您能提供详细信息以解决问题,我将非常感谢。
将Zend Framework更新到版本2.2.5后,我开始收到如下所示的错误。 我在网上看到了这个,但我不知道如何使用这些例子来纠正错误。 http://framework.zend.com/manual/2.1/en/modules/zend.loader.autoloader-factory.html
Warning: require_once(/Zend/Loader/Autoloader.php): failed to open stream: No such file or directory in D:\vFabricWS\vfabric-web-server\ProductionApp\htdocs\globals.php on line 38
Fatal error: require_once(): Failed opening required '/Zend/Loader/Autoloader.php' (include_path='.;D:\vFabricWS\vfabric-web-server\ProductionApp\htdocs/library/;D:\vFabricWS\vfabric- web-server\ProductionApp\htdocs/library/Doctrine/;D:\vFabricWS\vfabric-web-server\ProductionApp\htdocs/library/Braishfield/;D:\vFabricWS\vfabric-web-server\ProductionApp\htdocs/application/;D:\vFabricWS\vfabric-web-server\ProductionApp\htdocs/application/default/models/;D:\vFabricWS\vfabric-web-server\ProductionApp\htdocs/application/default/forms/') in D:\vFabricWS\vfabric-web-server\ProductionApp\htdocs\globals.php on line 38
* *这是我正在使用的主要全局数据配置文件:
//Define root path
//define('ROOT_PATH', dirname(__FILE__));
//Modify include path to include path to libraries and application folders
ini_set('include_path', '.' .
PATH_SEPARATOR . ROOT_PATH . '/library/' .
PATH_SEPARATOR . ROOT_PATH . '/library/Doctrine/' .
PATH_SEPARATOR . ROOT_PATH . '/library/CompanyName/' .
PATH_SEPARATOR . ROOT_PATH . '/application/' .
PATH_SEPARATOR . ROOT_PATH . '/application/default/models/' .
PATH_SEPARATOR . ROOT_PATH . '/application/default/forms/'
);
//Include Loader File, and Load needed Classes
//require_once 'Zend/Loader.php';
require_once '/Zend/Loader/Autoloader.php';
$autoloader = Zend_Loader_Autoloader::getInstance();
$autoloader->setFallbackAutoloader(true);
//Load some config files and store them in the Registry for the rest of the
//app to access
if (! defined( 'UNIT_TESTING' ))
{
$config = new Zend_Config_Ini(ROOT_PATH . '/config/config.ini', 'application');
}
else
{
$config = new Zend_Config_Ini(ROOT_PATH . '/config/config.ini', 'application');
}
Zend_Registry::set('config',$config);
//turn error reporting on if the debug flag is set in teh config file
$logger = new Zend_Log();
$writer = new Zend_Log_Writer_Firebug();
$logger->addWriter($writer);
Zend_Registry::set('logger', $logger);
if($config->debug)
{
error_reporting(E_ALL);
ini_set('display_errors', 'on');
$writer->setEnabled(true);
}
else
{
ini_set('display_errors','off');
$writer->setEnabled(false);
}
ini_set('log_errors','on');
ini_set('error_log',ROOT_PATH . DIRECTORY_SEPARATOR . 'logs/phperrors.log');
//Set mssql text sizes
ini_set("mssql.textlimit", "65536");
ini_set("mssql.textsize", "65536");
//set default time zone for the application
date_default_timezone_set('America/New_York');
答案 0 :(得分:2)
您的应用程序不使用Zend Framework版本2.它使用版本1,两者完全不兼容,除了大多数时候使用相同的习语和模块,因为版本2使用PHP命名空间,版本1执行不
如果你想从1升级到2,这是一个重要的重构任务,如果你不是程序员,可能会超出你的能力范围。
另一件事是:如果您使用的是2.2版本,请不要查看版本2.1的文档(在链接中提到)。
版本1的最新版本是1.12.3,但请注意不要通过升级到此版本来销毁您的应用程序,因为在次要版本之间的步骤中有时会引入不兼容的更改。因此,如果您没有可以检查软件每个部分的可靠测试套件,那么更新仍然是一些冒险。