2010-02-27 109 views
1
[2] fopen(/var/www/vhosts/tuthost/httpdocs/application/controllers/helpers/ViewRenderer.php) failed to open stream: No such file or directory 
    in file: /var/www/vhosts/tuthost/httpdocs/library/Zend/Loader.php 
    on line: 165 
    [2] fopen(/var/www/vhosts/tuthost/httpdocs/application/views/helpers/HeadTitle.php) failed to open stream: No such file or directory 
    in file: /var/www/vhosts/tuthost/httpdocs/library/Zend/Loader.php 
    on line: 165 
    [2] fopen(/var/www/vhosts/tuthost/httpdocs/application/views/helpers/FormLabel.php) failed to open stream: No such file or directory 
    in file: /var/www/vhosts/tuthost/httpdocs/library/Zend/Loader.php 
    on line: 165 
    [2] fopen(/var/www/vhosts/tuthost/httpdocs/application/views/helpers/FormSelect.php) failed to open stream: No such file or directory 
    in file: /var/www/vhosts/tuthost/httpdocs/library/Zend/Loader.php 
    on line: 165 
    [2] fopen(/var/www/vhosts/tuthost/httpdocs/application/views/helpers/FormText.php) failed to open stream: No such file or directory 
    in file: /var/www/vhosts/tuthost/httpdocs/library/Zend/Loader.php 
    on line: 165 
    [2] fopen(/var/www/vhosts/tuthost/httpdocs/application/views/helpers/FormTextarea.php) failed to open stream: No such file or directory 
    in file: /var/www/vhosts/tuthost/httpdocs/library/Zend/Loader.php 
    on line: 165 
    [2] fopen(/var/www/vhosts/tuthost/httpdocs/application/views/helpers/FormSubmit.php) failed to open stream: No such file or directory 
    in file: /var/www/vhosts/tuthost/httpdocs/library/Zend/Loader.php 
    on line: 165 
    [2] fopen(/var/www/vhosts/tuthost/httpdocs/application/views/helpers/FormCheckbox.php) failed to open stream: No such file or directory 
    in file: /var/www/vhosts/tuthost/httpdocs/library/Zend/Loader.php 
    on line: 165 
    [2] fopen(/var/www/vhosts/tuthost/httpdocs/application/views/helpers/HeadStyle.php) failed to open stream: No such file or directory 
    in file: /var/www/vhosts/tuthost/httpdocs/library/Zend/Loader.php 
    on line: 165 
    [2] fopen(/var/www/vhosts/tuthost/httpdocs/application/views/helpers/Layout.php) failed to open stream: No such file or directory 
    in file: /var/www/vhosts/tuthost/httpdocs/library/Zend/Loader.php 
    on line: 165 

什麼能導致這種情況?Zend Framework助手路徑問題

如何解決助手路徑捆綁ZF助手?

在引導我只有這一點:

Zend_Controller_Action_HelperBroker::addPath(APPLICATION_PATH . '/controllers/helpers','Helper'); 

這:

$viewRenderer = Zend_Controller_Action_HelperBroker::getStaticHelper(
    'ViewRenderer' 
); 
$viewRenderer->setView($view); 

// Return it, so that it can be stored by the bootstrap 
return $view; 
+1

請參閱http://stackoverflow.com/questions/2335545/how-to-add-a-view-helper-directory-zend-framework – Gordon 2010-02-27 17:47:40

回答