Need help with Image Source Problem

3 posts by 2 authors in: Forums > CMS Builder
Last Post: April 25, 2008   (RSS)

Re: [gbengston] Need help with Image Source Problem

By Dave - April 25, 2008

Hi gbengston, welcome to the forums! :)

Try disabling the SEO urls option like this: $options['useSeoUrls'] = '0';

Because the SEO urls use slashes it's as if that page was in a subdirectory so relative urls won't work. You'd have to use absolute urls from the root like this: /images/logo_GKB_Solutions.gif

Turning off SEO urls will generate urls like this and show your image just fine:
http://www.gkbsolutions.com/newsPage.php?Another_sample_article-3

Hope that helps! Let me know if you need more detail about any of that or if you have any other questions.
Dave Edis - Senior Developer
interactivetools.com

Re: [Dave] Need help with Image Source Problem

By gbengston - April 25, 2008

Thank you, simply adding the "/" in front of the "images/logo.gif" fixed everything while still keeping the seo urls.