3

I have a big table on my local database (phpmyadmin). When I export my table, IDM (internet download manager) will start downloading and still not completed stops.

For example, my table size is 80Mb, but my export file will be 50Mb. In oder words, the number of my rows are +300,000, But when I download my table, those will be +180,000.

Note: My export file is not always the same, But often, it is between 50mb and 60mb.

Why does phpmyadmin kills export? (downloading). How can i fix it ?!

Shafizadeh
  • 9,960
  • 12
  • 52
  • 89

2 Answers2

0

My initial thought is you have a very meager max_execution_time, and php is killing the export before it can be completed.

ethan
  • 985
  • 6
  • 10
0

Could be memory or execution time limit.

Change script execution time limit with set_time_limit (note the value is in seconds) Also, increase the memory limit with ini_set('memory_limit', 'xM'); where x is an integer value (i.e.: 128).

If you're handling a huge database and you have SSH access to your server it's better to use mysqldump