WordPress: Bulk URL change from SQL

Ας "μιλήσουμε" για . After merging its database in the iguru database, all the image links pointed to the iguru.gr directories. For example:

wordpress-code

https://cdn.iguru.gr/wp-content/uploads/2016/10/Mechanic.jpg

So although there were the in iguru the they kept coming from iguru. So after moving all the files from iguru's /uploads to iguru's dir of the same name, we had to bulk change the URLs to get the images from:

https://cdn.iguru.gr/wp-content/uploads/

Let's see how it's easy to do (make a backup of your database before trying it):

Below are the SQL commands we used to change URLs across the database.

UPDATE wp_options SET option_value = replace (option_value, 'https://iguru.gr/wp-content/uploads/files',' https://iguru.gr/wp-content/uploads/files') WHERE option_name = 'home 'OR option_name =' siteurl ';
UPDATE wp_posts SET guid = replace (guid, 'https://iguru.gr/wp-content/uploads/files','https://iguru.gr/wp-content/uploads/files');
UPDATE wp_posts SET post_content = replace (post_content, 'https://iguru.gr/wp-content/uploads/files', 'https://iguru.gr/wp-content/uploads/files');
UPDATE wp_postmeta SET meta_value = replace (meta_value, 'https: //iguru.gr/wp-content/uploads/files','https: //iguru.gr/wp-content/uploads/files');

iGuRu.gr The Best Technology Site in Greecefgns

every publication, directly to your inbox

Join the 2.087 registrants.

Written by giorgos

George still wonders what he's doing here ...

Leave a reply

Your email address is not published. Required fields are mentioned with *

Your message will not be published if:
1. Contains insulting, defamatory, racist, offensive or inappropriate comments.
2. Causes harm to minors.
3. It interferes with the privacy and individual and social rights of other users.
4. Advertises products or services or websites.
5. Contains personal information (address, phone, etc.).