2012-05-08 98 views
0

經過一段時間後,當第二次重新加載頁面時,我總是收到內部服務器錯誤500。第二次重新加載時出現服務器錯誤

  • 清除緩存修復了問題,約10小時
  • 切換瀏覽器讓我重新加載頁面,使我對第二重裝錯誤沒有爲搜索行動使

緩存。 只有一個模塊受到影響,其他模塊在站點關閉期間工作。

任何想法在哪裏看? symfony錯誤日誌並不真正有用,這個請求甚至沒有達到symfony。

+0

什麼是你的web服務器的錯誤日誌說? – jprofitt

+2

然後檢查Apache的錯誤日誌。 – mingos

+0

您應該考慮關閉display_errors http://www.php.net/manual/en/errorfunc.configuration.php#ini.display-errors –

回答

0

這可能與路由緩存有關。嘗試在factories.yml中禁用路由緩存,並查看是否有幫助。

例如:

 
    routing: 
    class: sfPatternRouting 
    param: 
     load_configuration:    true 
     suffix:       '' 
     default_module:     default 
     default_action:     index 
     debug:       %SF_DEBUG% 
     logging:       %SF_LOGGING_ENABLED% 
     generate_shortest_url:   true 
     extra_parameters_as_query_string: true 
     cache:       ~ 
相關問題