SQLSTATE[HY000]: General error: 2006 MySQL server has gone away on running cron job magento

前端 未结 6 2209
遇见更好的自我
遇见更好的自我 2021-02-07 22:55

I am working on Magento site and I get this error:

SQLSTATE[HY000]: General error: 2006 MySQL server has gone away on running 
cron job magento

6条回答
  •  梦谈多话
    2021-02-07 23:08

    If you have any actions which do not operate with Magento DB for more than 20 seconds (I met shared hosting with such wait_timeout=20), you have to close DB connection. Magento will create new connection on next call to DB.

        Mage::getSingleton('core/resource')->getConnection('read')->closeConnection();
    

提交回复
热议问题