Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

I am migrating a WordPress site but have problem with phpMyAdmin restriction (too big - 240 something mb)

I am using »bigdump«.

I believe I have followed every instructions (create a temp directory, drop the tables, update config etc) but when I try to open mysite/dump/bigdump.php I got this error message:

This webpage has a redirect loop The webpage at http://mysite.com/dump/bigdump.php/wp-admin/install.php has resulted in too many redirects. Clearing your cookies for this site or allowing third-party cookies may fix the problem. If not, it is possibly a server configuration issue and not a problem with your computer

Noticed that it redirected me to wp-admin/install.php.

Does anyone knows what went wrong? Thanks in advance.

share|improve this question
sorry this seems very simple and I bet it is.. maybe wrong set up somewhere, but I've spent hours trying and Google can't help.. looks like it works for everyone but me. – Mario88 Aug 9 '12 at 13:35
have you setup your wp_config.php file ? – amit Aug 9 '12 at 14:05
Yes, I have. Same info in wp-config and bigdump setting. – Mario88 Aug 9 '12 at 14:28

1 Answer

Most probably it is your htaccess file. Remove that which you might have in your domain root.

P.S. - Dumping & Importing database via terminal is super easy if you are on Linux/Mac

Commands:

On local, do this for export: mysqldump -uUSER -pPASS DBNAME > FILE.sql. It will be saved in the directory from which you ran the command in terminal.

On server, do this for import: mysql -uUSER -pPASS DBNAME < FILE.sql after uploading the file to the directory from which you are issuing that command

share|improve this answer
Hello, thanks for your answer. I've removed htaccess file (it was a very simple one, just begin and end WP with nothing in it) but still no luck. I'm using Windows but I'll see if I can run terminal in it. Thank you – Mario88 Aug 9 '12 at 14:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.