Yellow Swordfish said
To get things corrected as far as AutoUpdate goes then you could edit these database entries directly if you feel able. The problem is that these are held in what php calls a serialised array. So there are two edits to be made for each one in the sfmeta table.
If you look at that row entry above, just before the url there is the number 58. This has to be set to the number of characters in the following text string. I know you have replaced the real url here because the text in your post is only 50 characters long You will find the real one in your database is 58.
So – quite simply – if you change that to https then you will need to change that value to 59. Failure to do so will cause errors. This is why complex edits on serialised array data is fraught with danger. But this one is not complex.
So yes – you only change those 4 sfmeta entries.
As to the other 4 then it really depends on where they are. As Steve pointed out above, if they are in the post content then should they be changed? It is really up to you.
Meanwhile we will have a conversation here about this as we do need to try and avoid this happening (the sfmeta table) in the future of course.
Hi,
Ok, I’ve solved that issue and the auto-update is working now 😀
Now for the second problem where I can’t link any external images, the actual sql source of the post with the image shows a correct:
<img alt=”” src=”http://www.somewebsite.com/wp-content/uploads/picture.jpg” width=”250″ height=”400″ />
If I disable https on my site then the link works, now if I switch https on… it shows:
because it’s somehow trying to load it as https (the site in question doesn’t have ssl certificate)
If I inspect element it shows:
<img src=”//www.somewebsite.com/wp-content/uploads/picture.jpg” width=”250″ class=”sfimagebaseline” alt=””>
It’s turning them into cdn style links… // before the www???