Log in

View Full Version : [IMG] Tag and relative addressing of image URL


Bernard
12-05-2005, 08:10 AM
Hi there !

https://vborg.vbsupport.ru/

--> works https://vborg.vbsupport.ru/images/smoothblue/top_logo.gif

images/smoothblue/top_logo.gif

--> does nor work

Why can I insert a image only with a full url (including domain-name) ? Is this feature configurable ?

You see this example here with the header graphic of this forum.

I have problems with my imported phpBB posts. All graphics are relative addressed and not displayed.

Thanks in forward.

Greetings
Bernard

Marco van Herwaarden
12-05-2005, 08:36 AM
Well it doesn't work because it is not a full address.

You could try the following:

!!! Untested, use on a tesboard first. Make a backup of your database first !!!!

update post set pagetext = REPLACE(pagetext, ']images/', ']http://www.myboard.com/forum/images/') WHERE pagetext LIKE '%]images/%';
TRUNCATE TABLE post_parsed;