finding out what is causing dreaded “The website encountered an unexpected error. Please try again later.” message

前端 未结 6 1534
梦毁少年i
梦毁少年i 2021-02-14 03:54


while doing a drupal 6 to 7 upgrade I am getting the not so helpful message \"The website encountered an unexpected error. Please try again later.\" everytime I go to certa

6条回答
  •  没有蜡笔的小新
    2021-02-14 04:33

    If dlog/watchdog and php error log aren't working, try this:

    go on /includes/error.inc comment line line 245

    print theme('maintenance_page', array('content' => t('The website encountered an unexpected error. Please try again later.')));
    

    and put this

    print theme('maintenance_page', array('content' => t('The website encountered an unexpected error. Please try again later.'.$fatal.' '.var_export($error,true))));
    

    Very similar, you put var_export($error,true)) at end of error

提交回复
热议问题