Zend自动加载器无法在实时站点上运行

时间:2010-09-29 11:23:37

标签: php zend-framework zend-autoloader

我刚刚将我的开发站点复制到了实时服务器,使用新的数据库连接详细信息等更新了配置,但是收到以下错误消息:

Fatal error: Uncaught exception 'Zend_Loader_PluginLoader_Exception' with message `'Plugin by name 'IncludeStyles' was not found in the registry; used paths: Zend_View_Helper_Navigation_: Zend/View/Helper/Navigation/ Zend_View_Helper_: Zend/View/Helper/:./views/helpers/:/home/wheresrh/public_html/spz/application/views/helpers/' in /home/wheresrh/public_html/spz/library/Zend/Loader/PluginLoader.php:412 Stack trace: #0 /home/wheresrh/public_html/spz/library/Zend/View/Abstract.php(1173): Zend_Loader_PluginLoader->load('IncludeStyles') #1 /home/wheresrh/public_html/spz/library/Zend/View/Abstract.php(609): Zend_View_Abstract->_getPlugin('helper', 'includeStyles') #2 /home/wheresrh/public_html/spz/library/Zend/View/Abstract.php(336): Zend_View_Abstract->getHelper('includeStyles') #3 [internal function]: Zend_View_Abstract->__call('includeStyles', Array) #4 /home/wheresrh/public_html/spz/application/layouts/layout.phtml(19): Zend_View->includeStyles('full') #5 /home/wheresrh/public_html/spz/library/Zend/View.php(108): include('/h in /home/wheresrh/public_html/spz/library/Zend/Loader/PluginLoader.php on line 412`

因此看起来自动加载器无法将视图/帮助程序目录作为辅助类的位置,即使文件结构和引导程序在实时和开发站点上完全相同。

还有什么可能影响自动加载器找到辅助类的能力?

这是我的application.ini:

[production]
phpSettings.display_startup_errors = 0
phpSettings.display_errors = 0
includePaths.library = APPLICATION_PATH "/../library"
bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
bootstrap.class = "Bootstrap"
autoloaderNamespaces[] = "SPZ_"
resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
resources.frontController.params.displayExceptions = 0
resources.layout.layoutPath = APPLICATION_PATH "/layouts/"
resources.db.adapter       = PDO_MySql
resources.db.params.host = localhost
resources.db.params.username = ******
resources.db.params.password = ******
resources.db.params.dbname = ******  

和我的引导程序

<?php

class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
    protected function _initAutoload()
    {
        $moduleLoader = new Zend_Application_Module_Autoloader(array(
            'namespace' => '', 
            'basePath'  => APPLICATION_PATH));

    }

    protected function _initViewHelpers()
    {
        $this->bootstrap('layout');
        $layout = $this->getResource('layout');
        $view = $layout->getView();
        $view->doctype('XHTML1_STRICT');
        $view->headMeta()->appendHttpEquiv('Content-Type', 'text/html;charset=utf-8');
        $view->headTitle()->setSeparator(' - ');
        $view->headTitle('Sum Puzzles');
        $view->addHelperPath(APPLICATION_PATH.'/views/helpers/');
    }


}

这是我的index.php

<?php
error_reporting(E_ALL | E_STRICT);
// Define path to application directory
defined('APPLICATION_PATH')
    || define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));

// 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 . '/../library'),
    get_include_path(),
)));

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

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

也许我的bootstrap和配置文件中有一些冲突/冗余行?

*编辑我现在正在尝试复制到差异服务器并获得类似的错误,因为“views”目录尚未设置为查找视图脚本的位置。

3 个答案:

答案 0 :(得分:1)

添加另一个答案,因为它需要一个完全不同的方法。

根据我的经验,在一个平台(如本地WinXP开发机器)上成功,然后在我的生产机器上失败(如Linux盒子)是文件名或类名中的结果区分大小写。 Windows允许它滑动,因为文件系统中的路径不区分大小写,而Linux则因为我的粗心而打电话给我。

在你的情况下,可以吗?

例如,堆栈跟踪提到了文件夹/home/wheresrh/public_html/spz/,但configs/application.ini添加了autoloaderNamespace[] = "SPZ_"

答案 1 :(得分:1)

事实证明我的ftp客户端有问题所以有些文件上传不完整。一个新的上传修复了这个。只是我很幸运,在提供赏金之后才能解决这个问题。

答案 2 :(得分:0)

这些值之间是否存在冲突:

    'SPZ_'appnamespace指令中提供了
  1. application/config.ini
  2. "",在Bootstrap::_initAutoloader()
  3. 中作为appnamespace提供

    乍一看 - 没有解释为什么你在观察开发和生产环境之间的差异,但是任何影响加载/自动加载的东西似乎都是相关的。