大家好
因為最近網站使用Cloudflare免費的SSL
所以網址改成https
但是以前的文章裡面圖片連結還是http
會導致圖片無法顯示
我就參考網路上教學
到phpMyAdmin的SQL來更新圖片連結
語法如下:
UPDATE wp_posts
SET post_content = ( Replace (post_content, 'src="http://', 'src="//') )
WHERE Instr(post_content, 'jpeg') > 0
OR Instr(post_content, 'jpg') > 0
OR Instr(post_content, 'gif') > 0
OR Instr(post_content, 'png') > 0;
但就會出現這個錯誤
#1064 - You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use near
'SET post_content = ( Replace (post_content, 'src="http://', 'src="//') )
WHERE I' at line 2
MySQL版本 5.1.73
phpMyAdmin版本 4.3.8
希望有人能解決我的問題
感激不盡