DAS LERNEN HAT SICH AUSGEZAHLT

30. January 2021

Dank meiner Arbeit hatte ich die Gelegenheit Programmieren zu lernen. Das kommt  mir nun bei aufräumen vom Blog zu gute. Ich konnte etliche Links in einem run fixen. Nun sind nur noch ca. 700 Urls nicht mehr verfügbar. Dazu gehören leider alle Bilder von 2007-2011. Die hatte Tobi damals leider löschen müssen um Speicherplatz für neue Posts zu bekommen. Heutzutage ist Speicherplatz zum Glück kein Thema mehr.

Massenupdate per SQL Script

Hier noch die SQL Statements

UPDATE `wp_posts` SET post_content = REPLACE(post_content,’allowfullscreen>’,’allowfullscreen=”1″>’) WHERE post_content LIKE ‘%allowfullscreen>%’ AND post_status = ‘publish’;

UPDATE `wp_posts` SET post_content = REPLACE(post_content,’allowfullscreen=””‘,’allowfullscreen=”1″‘) WHERE post_content LIKE ‘%allowfullscreen=””%’ AND post_status = ‘publish’;

UPDATE `wp_posts` SET post_content = REPLACE(REPLACE(post_content,'[iframe’,'<iframe’),’]’,’></iframe>’) WHERE post_content LIKE ‘%[iframe%’ AND post_status = ‘publish’;

UPDATE `wp_posts` SET post_content = REPLACE(post_content,’http://’,’https://’) WHERE post_content LIKE ‘%http://%’ AND post_status = ‘publish’;

UPDATE `wp_posts` SET post_content = REPLACE(post_content,’/BTF4.0/’,’/site/’) WHERE post_content LIKE ‘%/BTF4.0/%’ AND post_status = ‘publish’;

UPDATE `wp_posts` SET post_content = REPLACE(post_content,’src=”https://www.youtube.com/embed’,’src=”https://www.youtube-nocookie.com/embed’) WHERE post_content LIKE ‘%src=”https://www.youtube.com/embed%’ AND post_status = ‘publish’;

UPDATE `wp_posts` SET post_content = REPLACE(post_content,’src=”//www.youtube.com/embed’,’src=”https://www.youtube-nocookie.com/embed’) WHERE post_content LIKE ‘%src=”//www.youtube.com/embed%’ AND post_status = ‘publish’;

Leave a Reply

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