Ahmad Naser Turnkey Ecosystem Ahmad Naser
April 9, 2019

Update cdn links after migrating from WPEngine

Published in the Ahmad Naser ecosystem. Estimated reading time: 1 minute.

Update cdn links after migrating from WPEngine

Go to Phpmyadmin and hit sql, then replace your old wpengine url cdn with the new cdn url

UPDATE wp_options SET option_value = replace(option_value, 'https://15f7fy16numklnwbn3m52e15-wpengine.netdna-ssl.com', 'https://anbilarabi-quaxn7qwddc5nuqg.netdna-ssl.com') WHERE option_name = 'home' OR option_name = 'siteurl';

UPDATE wp_posts SET post_content = replace(post_content, 'https://15f7fy16numklnwbn3m52e15-wpengine.netdna-ssl.com', 'https://anbilarabi-quaxn7qwddc5nuqg.netdna-ssl.com');

UPDATE wp_postmeta SET meta_value = replace(meta_value,'https://15f7fy16numklnwbn3m52e15-wpengine.netdna-ssl.com','https://anbilarabi-quaxn7qwddc5nuqg.netdna-ssl.com');

UPDATE wp_usermeta SET meta_value = replace(meta_value, 'https://15f7fy16numklnwbn3m52e15-wpengine.netdna-ssl.com','https://anbilarabi-quaxn7qwddc5nuqg.netdna-ssl.com');

UPDATE wp_links SET link_url = replace(link_url, 'https://15f7fy16numklnwbn3m52e15-wpengine.netdna-ssl.com','https://anbilarabi-quaxn7qwddc5nuqg.netdna-ssl.com');

UPDATE wp_comments SET comment_content = replace(comment_content , 'https://15f7fy16numklnwbn3m52e15-wpengine.netdna-ssl.com','https://anbilarabi-quaxn7qwddc5nuqg.netdna-ssl.com');

 

Leave a Reply

Your email address will not be published. Required fields are marked *