iBEAUTHENTIC wrote:Nop 3.0 version, 3.02 Nop-template
I'm getting something similar, please see below. The page url is http://www.thestylegarage.com/en/content/fancybox/fancy_shadow_nw.png which if you go to that it does not resolve. If you remove /en/ it does. Any thoughts?
Hi iBEAUTHENTIC,
You are right.
After some digging with the code we found out what the problem is.
It looks like that the css of the fancybox jquery plugin uses some ie6 specific styles that don't support relative paths to the images. I don't know if you are familiar with css fixes for IE6 but in order to have support for transparent images you need to use something like this "DXImageTransform.Microsoft.AlphaImageLoader" in the css file. But unfortunately this doesn't support relative paths (location of the image is relative to the css file). So the image is specified with the full path to it on the server i.e "/content/fancybox/fancy_shadow_nw.png". The problem with this is that this images will not be loaded when you have a virtual directory as in your case "/en/".
To summarize: It is not a big deal that these images are missing as the browser will simply ignore them. This will have impact only in IE6, which in any case is almost dead see here -
http://www.ie6countdown.com/So guys please simply ignore these error messages as they are not anything that is worth worrying about. If you still don't like these annoying messages then simply delete the styles that are specific for IE6 from this file -
Content\fancybox\jquery.fancybox-1.3.4.css.
Hope this information is useful!
Thanks