XF 1.4 Images as Thumbnails after import

New Joe

Well-known member
So I just did a test import, and the images have come through as Thumbnails

Not all, say hotlinked images, they are full size, ones which are brought from out the forum are fine.
Just the images which were added as attachments which don't show in full size

Any way to get them to show full size?
 
If they all use the basic attach tags, you can do a query to change attach to attach=full.

Code:
UPDATE xf_post SET message = REPLACE(message,'current_content','new_content');

Take a backup first, just in case.
 
If they all use the basic attach tags, you can do a query to change attach to attach=full.

Code:
UPDATE xf_post SET message = REPLACE(message,'current_content','new_content');

Take a backup first, just in case.
Just submitted that query to the data base but nothing came back
 
PHP:
UPDATE xf_post SET message = REPLACE(message,'[ATTACH]','[ATTACH=full]');
I submitted that and it came back with a lot of tables, should I be looking for a table like, xf_thread xf_post then update the query?
 
You are already specifying the table in the query, all you need to do is select the database.

Can you screenshot what you are seeing?
 
Are you doing this via phpmyadmin? Sounds like it because you're saying it came back with a list of tables. If so, select the database and then the SQL tab, throw it into there.
 
Top Bottom