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 

何が原因でしょうか?

バンドルされた 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;
4

1 に答える 1

0

ビュー ヘルパー ディレクトリを追加する方法 (zend フレームワーク)

このトピックを助けました。

于 2010-09-19T10:46:51.280 に答える