I have the directory structure that is shown in the image.
If i have this code in HomePage.ss
<img src="../../images/sprites.jpg" />
Why this relative path is incorrect? Failed to load the given url.

|
I have the directory structure that is shown in the image. If i have this code in
Why this relative path is incorrect?
|
||||
|
what you need to know about SilverStripe is that it reads your templates, and outputs them.
So if you have the url this means you can NOT use relative paths like "../images/sprites.jpg" in templates (you can use those in css though). as @Mark has already mentioned in a comment, the way to go is using |
||||
|
|
|
Silverstripe uses a tag so all relative urls are relative to the root url not the current pages url. The accepted answer of is the correct way to link to an image in the theme |
|||
|
|
|
Based on the documentation from Silverstripe, you can acces your images with a framework URL:
|
|||||||||||
|
|
if you don't know the path load the image from URL putting the correct url... example: img src="http://www.yourwebsite.com/themes/simple/images/img/sprite.jpg" right, click and see the image location from browser, and copy the correct url. |
|||||||||||
|
|
|
||||
|
|
HomePage.ssdirectly or are you including it somewhere else? – Jon Oct 30 '12 at 23:01