Fatal error : execution time of 30 seconds exceeded in phpMyAdmin

后端 未结 5 1372
太阳男子
太阳男子 2020-12-08 17:05

I have a MySQL table which contains 6.5 million records. When I try to access that table from phpMyAdmin I get:

Fatal error: Maximum execution time of

5条回答
  •  攒了一身酷
    2020-12-08 17:40

    This solution has resolved the issue Place the following lines at the top of the script page and before the query that initiates the memory:

    ini_set('max_execution_time', 0);
    set_time_limit(1800);
    ini_set('memory_limit', '-1');
    

提交回复
热议问题