View Single Post
Old 10.09.2004, 08:02   #2 (permalink)
thethepapapa
Senior Mamber
 
Join Date: Apr 2004
Posts: 135
thethepapapa is an unknown quantity at this point
Default Re: Can't figure out why the images won't show in my local server

Take a close look at the code within the HTML file of the template.

I suspect you'd find that the code is calling for <link href="<?php echo $mosConfig_live_site;?>/templates/sbbigbis/css/template_css.css" rel="stylesheet" type="text/css" />

the snippet of code:

<?php echo $mosConfig_live_site;?>

is telling a web server to serve up

http://www.DomainNameofyourWebsite

--------------------------------------------------------------

To remedy this problem, change all instances of

<img src="<?php echo $mosConfig_live_site;?>

to read

<img src="../templates/sbsimbis/image.name"

or <img src=" localhost/mambo45/templates/sbsimbis/image.name "

----------------------------------------------------------------------------------------

hope this helps.
thethepapapa is offline   Reply With Quote