How to Import 1GB .sql file to WAMP/phpmyadmin

I suspect you will be able to import 1 GB file through phpmyadmin But you can try by increasing the following value in php.ini and restart the wamp. post_max_size=1280M upload_max_filesize=1280M max_execution_time = 300 //increase time as per your server requirement. You can also try below command from command prompt, your path may be different as … Read more

InnoDB: Attempted to open a previously opened tablespace

I had the same problem. I tried all the solution others has proposed, and unfortunately nothing worked. After spending hours on searching for the solution in Google I finally found this Open my.ini (my.cnf on linux-based systems and Mac) Look for [mysqld] Just below [mysqld] insert innodb_force_recovery = 1 Start MySQL Service Stop MySQL Service … Read more

MySQL said: Documentation #1045 – Access denied for user ‘root’@’localhost’ (using password: NO)

I had this problem after changing the password for the root user in phpMyAdmin. I know nothing about programming but I solved it by doing the following: Go to file C:\wamp\apps\phpmyadmin3.2.0.1\config.inc.php (I guess you would replace “wamp” with the name of your server if you’re not using Wamp Server) Find the line $cfg[‘Servers’][$i][‘password’]=” and change … Read more