Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a custom HTTP web server, whenever I browse to it, let say: http://hotname:port it redirects to this:

http://hotname:port/base

The server runs from: /home/user/app_web/bin/start.pl

I have a directory of HTMLs listed in: /home/user/app_web/static

while the server is running, one of the request I send to him is an HTML with a body having this img:

<img src="../static/page.html">

this page loads fine, but of the images in it, doesnt, which is in: "/home/user/app_web/static/image/1.jpg"

when I look at the HTML site the pages has loaded, it looks like:

http://hotname:port/base/../home/user/app_web/static/image/1.jpg"

I have no idea what am I doing wrong, also, I'm a newbie when it comes to web.

Thanks,

share|improve this question
Can you update your question with the HTML image tag for 1.jpg? Also a snippet of your code that parses the tag and determines the on-disk file location would be useful. – ed. Sep 19 '11 at 9:14
image tag updated, the http server, from what I know uses anyevent::socket tcp_server method call, I dont have the code here at the moment (not on the computer) – soulSurfer2010 Sep 19 '11 at 10:53

1 Answer

up vote 1 down vote accepted

If the HTML file location is

/home/user/app_web/static/page.html

and the image is in

/home/user/app_web/static/image/1.jpg

Then try changing the image tag to:

<img src="image/1.jpg">

URLs will be worked out relative to the HTML file.

(Since "static" is part of the folder location and not the URL, as far as I can see, you should never have to include "static" in the URL.)

share|improve this answer
For some reason, I tried that in the first place, and it didnt work. seems like that /base the HTTP server redirects to is located in: /var/webapp/ for which I dont have permissions. how do I know that its there? there is an icon there, when I replaced the image in my HTML with that icon like: src="iconname.ico" it worked fine. – soulSurfer2010 Sep 19 '11 at 11:42
1  
OK. What's the URL you use to visit page.html? – ed. Sep 19 '11 at 12:16
"h t t p://hotname:port" and then its automatically redirects to: "h t t p://hotname:port/base" – soulSurfer2010 Sep 19 '11 at 12:29
Can you try: hotname:port/base/page.html (whatever you page.html is called). Also, try visiting hotname:port/base/image in a browser. – ed. Sep 19 '11 at 12:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.