将 Zend 应用程序推送到 Amazon EC2 实例

Pushing a Zend Application into Amazon EC2 Instance

我正在尝试将 zend 应用程序推送到 amazon EC2 实例上。

我已经在服务器上设置了我的 Zend 应用程序并设置了 httpd conf。

当我尝试通过浏览器访问我的网站时,打印了以下消息:

bootstrap() ->run();

我已遵循所有标准程序,并且能够查看静态 HTML 文件。但是当我尝试访问 PHP 文件时,我看到了一个空白页面。

我检查了日志文件,但没有 return 任何错误。

知道我为什么会遇到这个问题。

更新:

我用 zend 库更新了我的 php.ini 文件 include_path。

现在我遇到了以下错误:

 Fatal error: Uncaught exception 'Zend_Application_Bootstrap_Exception' with message 'Resource
matching "Jquery" not found' in /usr/share/php/libzend-framework-php/Zend/Application/Bootstrap
    /BootstrapAbstract.php:694 Stack trace: #0 /usr/share/php/libzend-framework-php/Zend/Application
    /Bootstrap/BootstrapAbstract.php(626): 
    Zend_Application_Bootstrap_BootstrapAbstract->_executeResource('Jquery') #1 /usr/share/php/libzend-
    framework-php/Zend/Application/Bootstrap/BootstrapAbstract.php(586): 
    Zend_Application_Bootstrap_BootstrapAbstract->_bootstrap(NULL) #2 /usr/share/php/libzend-framework-
    php/Zend/Application.php(355): Zend_Application_Bootstrap_BootstrapAbstract->bootstrap(NULL) #3 
    /var/www/html/urban-chatter/public/index.php(29): Zend_Application->bootstrap() #4 {main} thrown in 
    /usr/share/php/libzend-framework-php/Zend/Application/Bootstrap/BootstrapAbstract.php on line 694

已解决:

我将 zend 库从我的系统复制到服务器上,并将 include_path 更改为 php.ini 文件中的新库,一切都开始工作了。我认为我使用另一个版本的 zend 库时存在一些兼容性问题。