Quote:
Originally Posted by Marsupilami
Consider the following setup: - Forum URL = "www.teflon1.net/forum"
- Homepage URL = "www.teflon2.net/"
- Upload space = "/home/webuser/upload"
- Thumbs space = "/home/webuser/thumbs"
- Forum web root = "/home/webuser/public_html"
- force_redirect = 0
- thumbs_dir = "../thumbs/"
- local_file_root = No
- protected_link = 0
When browsing a category containing pictures with Opera 8.51 is works fine.
But when browsing with IE 6.0 the thumbnails will not show up at all.
And the URL to the thumbs shows up to be something like: "www.teflon2.net/../thumbs/63721154952051.jpg"
This is a bug in the following aspects: - It shows the path to the thumbs, which should be hidden
- It tries to find the thumbs on the wrong server
- It uses a URL containing ".." above the forum web root
- It does not evaluate the relative, (".."), URL into an absolute URL
One cannot rely on the Homepage URL to point at the web root for the forum.
That must be found using proper PHP system variable.
Strange that it works on Opera, but not on IE.
Can this be solved?
|
I'll take a look.
In general, the code does not try to resolve relative directories when local_file_root is set to 0 - I need to confirm that.
Concerning the file locations being made visible, a distinction is between the original file and its thumbnail. The location of the original is not made visible, but the generated thumb is. Is this an issue for you?