Status
Not open for further replies.

UKInternetGroup

Banned
Banned
565
2012
110
0
Right, ive installed and played with kloxo alot!! and ive never had this issue before..

Im trying to import a 20MB database via phpmyadmin... but the connections times out

So i edit php.ini... reboot Apache... still no change still times out... i set limit to something silly like 20000!

Any ideas anyone? maybe im missing something?

Thanks
 
6 comments
Thr are number of settings bcoz of which this can happen, I would always say if it is possible then import it via ssh. But by any chance If u dont have ssh access then split ur DB in number of small sql files & import one by one
 
change those value into php.ini

memory_limit = 256M
post_max_size = 50M
upload_max_filesize = 50M

and also
$cfg['ExecTimeLimit'] = '0';
Add the above line to phpMyAdmin configurations to disabled execution time limit.

Better use ssh for import mysql database
 
Status
Not open for further replies.
Back
Top