emeraldjava / bhaawp

Wordpress plugin for the Business Houses Athletic Assoication
3 stars 0 forks source link

enable https access across the site #91

Closed emeraldjava closed 7 years ago

emeraldjava commented 8 years ago

Update the site to use https by default

UPDATE wp_postmeta SET meta_value=(REPLACE (meta_value, '="http://bhaa.ie','https://bhaa.ie'));

UPDATE wp_postmeta SET meta_value=(REPLACE (meta_value, 'http://bhaa.ie','https://bhaa.ie')) WHERE meta_value LIKE 'http://bhaa.ie%';

-- av_image src='http://bhaa.ie

UPDATE wp_postmeta SET meta_value=(REPLACE (meta_value, 'http://bhaa.ie','https://bhaa.ie')) WHERE meta_value LIKE '%http://bhaa.ie%';

UPDATE wp_posts SET post_content=(REPLACE (post_content, 'http://bhaa.ie','https://bhaa.ie')) WHERE post_content LIKE '%http://bhaa.ie%';

UPDATE wp_em_events SET post_content=(REPLACE (post_content, 'http://bhaa.ie','https://bhaa.ie')) WHERE post_content LIKE '%http://bhaa.ie%';

https://css-tricks.com/moving-to-https-on-wordpress/

emeraldjava commented 7 years ago

Done.