gpt4 book ai didi

zend-framework - Zend 无法打开 Zend/Application.php

转载 作者:行者123 更新时间:2023-12-04 04:27:09 26 4
gpt4 key购买 nike

好的,所以我对 Zend 比较陌生。我已经创建了一个新的应用程序并开始构建基于 a guide 的身份验证系统.但是,服务器正在踢出一个内部服务器错误。

检查 PHP 错误日志后,我得到以下两个错误:

[Thu Jul 19 10:26:40 2012] [error] [client 80.194.255.4] PHP Warning: require_once(Zend/Application.php): failed to open stream: No such file or directory in /home/www-data/zend.danielgroves.net/htdocs/public/index.php on line 18

[Thu Jul 19 10:26:40 2012] [error] [client 80.194.255.4] PHP Fatal error: require_once(): Failed opening required 'Zend/Application.php' (include_path='/home/www-data/zend.danielgroves.net/htdocs/library:.:/usr/share/php:/usr/share/pear') in /home/www-data/zend.danielgroves.net/htdocs/public/index.php on line 18

Controller :-

class Admin_AuthController extends Zend_Controller_Action 
{
public function init()
{
/* Initialize action controller here */
}

public function indexAction()
{
$form = new Application_Form_login();
$request = $this->getRequest();
if ($request->isPost()) {
if ($form->isValid($request->getPost())) {

}
}
$this->view->form = $form;
}
}

关于这可能是什么原因的任何想法?正如我所说,我是 Zend 的新手,所以当遇到这些错误时,我真的不知道从哪里开始,尤其是因为这是引用由 Zend CLI 工具创建的文件。

任何指示/建议等都将不胜感激。

丹.

最佳答案

您的应用程序需要能够访问 Zend Framework 类。通常,您会将它们放入应用程序的 library 文件夹中(Zend Tool 不会为您执行此操作)。因此,从您下载的 ZF 副本中,将 library/Zend 文件夹复制到您的 library 文件夹中。您最终应该在 /home/www-data/zend.danielgroves.net/htdocs/library/Zend/Application.php 找到它正在寻找的文件,这将修复错误。

关于zend-framework - Zend 无法打开 Zend/Application.php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11559275/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com