V
V
Valera2017-01-13 03:17:37
Domain name market
Valera, 2017-01-13 03:17:37

Migrate Wordpress + Woocommerce, can there be problems?

Hello. In general , WP + Woocommerce is installed on site.site.ru. I want to transfer all this stuff to site.ru.
Question.
Is it possible to
correctly transfer all this stuff with the All-in-one WP Migration or Duplicator or Search/Replace plugin? Do you have experience with this case? Is there a video tutorial? How do you generally solve such problems? Thank you.

Answer the question

In order to leave comments, you need to log in

6 answer(s)
E
Elsevar Rizayev, 2017-01-13
@EllPro

Duplicator

M
Mr Crabbz, 2017-01-13
@Punkie

Use Duplicator. There will be no problems.

I
Ivan Kozlov, 2017-01-13
@trampick

I always manage this task very simply in a few steps:
1. Make an archive of the site and transfer it to a new directory of the new domain.
2. Make a sql dump of the database. Then replace all occurrences of the old domain in it with the new one using notepad++.
3. Upload the dump to a new database.
4. Enter the data from the new database in the wp-config.php file
If the site was designed correctly, then everything will work ok. There are rarely any problems.

M
Maxim E, 2017-01-13
@creativeworm

I do this:
- transfer the files to the desired directory
- change the domain in the database to a new one, upload *.sql to the host
- run through Fix-Serialization
so that the serialized data is restored
- upload *.sql to the database.
All operations above are easily done via SSH.

A
Alexey Karpan, 2017-01-13
@dvguinf

You can do this:
1) download all site files via ftp to your computer
2) backup the database to your computer via phpmyadmin
3) upload site files to site.ru
4) upload the database file to site.ru via phpmyadmin
4) replace everything paths in the site files from "site.site.ru" to "site.ru" through sql queries like this.
Run SQL queries through Php My Admin:

UPDATE wp_options SET option_value = REPLACE(option_value, 
'http://site.site.ru', 'http://site.ru') WHERE option_name = 
'home' OR option_name = 'siteurl';

UPDATE wp_posts SET guid = REPLACE(guid, 
'http://site.site.ru','http://site.ru');

UPDATE wp_posts SET post_content = REPLACE(post_content, 
'http://site.site.ru', 'http://site.ru');

Launch.
But this is a stupid way, there are probably tools for fast travel, I didn’t delve into it.

V
Valera, 2017-01-13
@GrifasOfficial

Is there a limit on Duplicator? There is a huge amount of goods + media files. about 3 GB.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question