首页 文章

Symfony2 ContextErrorException:警告:filemtime():stat失败

提问于
浏览
4

当我将应用程序部署到 生产环境 服务器时,我得到了 生产环境 环境的空白页面,即app.php .

但是,我试图通过使用我的开发环境“* app_dev.php *”找出问题,从而评论限制我的代码,然后我得到以下错误:

ContextErrorException:警告:filemtime():对于/ var / www / web /中的C:\ xampp \ htdocs \ deploy \ Demo \ src \ SoftMarshal \ Bundle \ MainBundle / Resources / views / Default / index.html.twig,stat失败bilyonedemo / htdocs / vendor / twig / twig / lib / Twig / Loader / Filesystem.php第165行ContextErrorException:警告:filemtime():对于C:\ xampp \ htdocs \ deploy \ Demo \ src \ SoftMarshal \ Bundle \ MainBundle,stat失败/Resources/views/Default/index.html.twig在/var/www/web/bilyonedemo/htdocs/vendor/twig/twig/lib/Twig/Loader/Filesystem.php第165行

in /var/www/web/bilyonedemo/htdocs/vendor/twig/twig/lib/Twig/Loader/Filesystem.php line 165
at ErrorHandler->handle('2', 'filemtime(): stat failed for C:\xampp\htdocs\deploy\Demo\src\SoftMarshal\Bundle\MainBundle/Resources/views/Default/index.html.twig', '/var/www/web/bilyonedemo/htdocs/vendor/twig/twig/lib/Twig/Loader/Filesystem.php', '165', array('name' => 'SoftMarshalMainBundle:Default:index.html.twig', 'time' => '1384444091'))
at filemtime('C:\xampp\htdocs\deploy\Demo\src\SoftMarshal\Bundle\MainBundle/Resources/views/Default/index.html.twig') in /var/www/web/bilyonedemo/htdocs/vendor/twig/twig/lib/Twig/Loader/Filesystem.php line 165
at Twig_Loader_Filesystem->isFresh('SoftMarshalMainBundle:Default:index.html.twig', '1384444091') in /var/www/web/bilyonedemo/htdocs/app/cache/dev/classes.php line 4582
at Twig_Environment->isTemplateFresh('SoftMarshalMainBundle:Default:index.html.twig', '1384444091') in /var/www/web/bilyonedemo/htdocs/app/cache/dev/classes.php line 4563
at Twig_Environment->loadTemplate('SoftMarshalMainBundle:Default:index.html.twig') in /var/www/web/bilyonedemo/htdocs/vendor/symfony/symfony/src/Symfony/Bridge/Twig/TwigEngine.php line 131
at TwigEngine->load('SoftMarshalMainBundle:Default:index.html.twig') in /var/www/web/bilyonedemo/htdocs/vendor/symfony/symfony/src/Symfony/Bridge/Twig/TwigEngine.php line 53
at TwigEngine->render('SoftMarshalMainBundle:Default:index.html.twig', array()) in /var/www/web/bilyonedemo/htdocs/vendor/symfony/symfony/src/Symfony/Bundle/TwigBundle/TwigEngine.php line 79
at TwigEngine->render('SoftMarshalMainBundle:Default:index.html.twig', array()) in /var/www/web/bilyonedemo/htdocs/vendor/symfony/symfony/src/Symfony/Bundle/TwigBundle/Debug/TimedTwigEngine.php line 52
at TimedTwigEngine->render('SoftMarshalMainBundle:Default:index.html.twig', array()) in /var/www/web/bilyonedemo/htdocs/vendor/symfony/symfony/src/Symfony/Bundle/TwigBundle/TwigEngine.php line 108
at TwigEngine->renderResponse('SoftMarshalMainBundle:Default:index.html.twig', array(), null) in /var/www/web/bilyonedemo/htdocs/vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Controller/Controller.php line 106
at Controller->render('SoftMarshalMainBundle:Default:index.html.twig') in /var/www/web/bilyonedemo/htdocs/src/SoftMarshal/Bundle/MainBundle/Controller/DefaultController.php line 11
at DefaultController->indexAction()
at call_user_func_array(array(object(DefaultController), 'indexAction'), array()) in /var/www/web/bilyonedemo/htdocs/app/bootstrap.php.cache line 2844
at HttpKernel->handleRaw(object(Request), '1') in /var/www/web/bilyonedemo/htdocs/app/bootstrap.php.cache line 2818
at HttpKernel->handle(object(Request), '1', true) in /var/www/web/bilyonedemo/htdocs/app/bootstrap.php.cache line 2947
at ContainerAwareHttpKernel->handle(object(Request), '1', true) in /var/www/web/bilyonedemo/htdocs/app/bootstrap.php.cache line 2249
at Kernel->handle(object(Request)) in /var/www/web/bilyonedemo/htdocs/web/app_dev.php line 29

虽然,它在我的本地机器上工作正常 .

2 回答

  • 17

    如果它有帮助,清除缓存,然后通过composer重新安装供应商解决了我的问题:

    php app/console cache:clear
    php composer.phar install
    
  • 0

    有我的xdebug配置中设置的错误处理参数引起的相同问题 . 通过注释掉以下行来编辑xdebug配置(注释字符是分号“;”字符 .

    ; Error Handling
    ; xdebug.halt_level = E_WARNING
    ; xdebug.force_display_errors = 1
    ; xdebug.scream = 1
    

相关问题