好的,所以我对 Zend 比较陌生。我创建了一个新的应用程序并开始构建基于指南的身份验证系统。但是,服务器正在排除内部服务器错误。
检查 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 第 18 行
[2012 年 7 月 19 日星期四 10:26:40] [错误] [客户端 80.194.255.4] PHP 致命错误:require_once():无法打开所需的“Zend/Application.php”(include_path='/home/www-data/zend .danielgroves.net/htdocs/library:.:/usr/share/php:/usr/share/pear') 在 /home/www-data/zend.danielgroves.net/htdocs/public/index.php 第 18 行
控制器:-
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 工具创建的文件。
任何指针/建议等都会非常受欢迎。
担。