Re: [htmltmpl] Problem accessing directories through .tmpl files
Brought to you by:
samtregar
From: Karen C. <kar...@gm...> - 2004-11-25 03:35:44
|
On Tue, 23 Nov 2004 20:26:42 -0800 (PST), Kasturirangan Rangaswamy <kas...@ya...> wrote: > Now, the B.tmpl and C.tmpl files access images stored in yet another > directory (NOTE: Also tested by putting them in same directory and that > is not working either!!!). Those images are not getting displayed. That doesn't sound like an H::T problem... the template isn't what's going to give your browser the graphics files, unless you're doing something very different from what it looks like. The template is just presenting the HTML portion to the browser. The browser then parses the HTML and requests the graphics files from the web server (if it chooses to). This happens in separate HTTP requests. If the graphics don't come up, it either means your template has the wrong URL in it, or you need to look at the permissions and paths of your web server. |