Advertisement:

Author Topic: phpbb to SMF to SMF 2.0 RC4 Images not showing  (Read 7316 times)

Offline 3fifty

  • Jr. Member
  • **
  • Posts: 187
  • Gender: Male
phpbb to SMF to SMF 2.0 RC4 Images not showing
« on: January 30, 2011, 01:03:20 PM »
Previous admin convert back to SMF and none of the images are showing in previous posts on the forum.  If I click on edit and the save the post will show the pictures.  Thats a lot of threads to go through.  Is there any way to correct this?

Thanks in advance.

Offline 3fifty

  • Jr. Member
  • **
  • Posts: 187
  • Gender: Male
Re: phpbb to SMF to SMF 2.0 RC4 Images not showing
« Reply #1 on: January 30, 2011, 10:08:48 PM »
Bump for the night crew.

Offline TE

  • SMF Hero
  • ******
  • Posts: 4,210
  • Gender: Male
    • eurich.de
Re: phpbb to SMF to SMF 2.0 RC4 Images not showing
« Reply #2 on: January 31, 2011, 01:59:51 PM »
can you check one of these "broken" posts via phpMyAdmin (table is smf_messages, row "body")? I'd be interested in the original content (before you click the edit button). Maybe we can fix it via SQL statement.
Only buddies are allowed to send me a PM and my buddy list is pretty small ;)
---------------------------------------------------
My Github profile

Offline 3fifty

  • Jr. Member
  • **
  • Posts: 187
  • Gender: Male
Re: phpbb to SMF to SMF 2.0 RC4 Images not showing
« Reply #3 on: January 31, 2011, 02:37:04 PM »
As soon as the server move is done.  Switching DNS today.  I will do that and update this post.

Offline TE

  • SMF Hero
  • ******
  • Posts: 4,210
  • Gender: Male
    • eurich.de
Re: phpbb to SMF to SMF 2.0 RC4 Images not showing
« Reply #4 on: February 03, 2011, 01:31:09 PM »
3fifty, do you still need assistance with this issue?
Only buddies are allowed to send me a PM and my buddy list is pretty small ;)
---------------------------------------------------
My Github profile

Offline 3fifty

  • Jr. Member
  • **
  • Posts: 187
  • Gender: Male
Re: phpbb to SMF to SMF 2.0 RC4 Images not showing
« Reply #5 on: February 03, 2011, 08:34:58 PM »
Yes.  The person switching hosts has not done it yet.  Im waiting on everyone to get their act together and there is nothing I can do to speed it up unfortunately.

Offline rufee

  • Newbie
  • *
  • Posts: 1
Re: phpbb to SMF to SMF 2.0 RC4 Images not showing
« Reply #6 on: February 06, 2011, 12:25:54 PM »
I have the same issue
Here is the code from db before the edit (don't mind the language):
Code: [Select]
Čia aš parašiau kaip pakeisti lemputės spalvą.

1. Susikurkite žemėlapį.

2. Įdėkite lemputę:

[img]http://img291.imageshack.us/img291/7797/lempa1.jpg[/img]
After edit:
Code: [Select]
Čia aš parašiau kaip pakeisti lemputės spalvą.<br /><br />1. Susikurkite žemėlapį.<br /><br />2. Įdėkite lemputę:<br /><br />[img]http://img291.imageshack.us/img291/7797/lempa1.jpg[/img]
EDIT:
After tinkering around i have come up with a sql query that fixed my problems
Try running these 2 queries:

Code: [Select]
UPDATE `smf_messages` SET `body` = replace(`body`,'&#46;','.')
UPDATE `smf_messages` SET `body` = replace(`body`,'&#58;',':')
« Last Edit: February 07, 2011, 01:34:36 PM by rufee »

Offline k3nny

  • Semi-Newbie
  • *
  • Posts: 11
Re: phpbb to SMF to SMF 2.0 RC4 Images not showing
« Reply #7 on: February 17, 2011, 07:38:59 PM »
I have the same issue, too.

Thanks for the two queries rufee!
As there may be hyperlinks in signatures, I would also do this one:

Code: [Select]
UPDATE `smf_members` SET `signature` = replace(`signature`,'&#46;','.');
UPDATE `smf_members` SET `signature` = replace(`signature`,'&#58;',':');

Offline michael.z

  • Newbie
  • *
  • Posts: 3
Re: phpbb to SMF to SMF 2.0 RC4 Images not showing
« Reply #8 on: May 19, 2012, 12:46:35 PM »
I'm having the similar issue converting from phpBB3 to SMF 2.0.2. After looking around almost one day for solution, finally i found this. I have tried and it works! Thank you so much