Hi,
the access from 'portreti.bg360.net' to 'bg360.net' is a cross-domain access!
In HTML5 it is necessary that the server is sending the 'CORS header' together with the images to allow that access.
e.g. when using an Apache Webserver (like in your case), simply create a '.htaccess' in the root folder of your example (or directly in the root folder of your server to allow access for all folders) with the following content:
.htaccess:
|
Quellcode
|
1
|
Header set Access-Control-Allow-Origin *
|
Btw - regarding 'relatives' paths - you could also use relative paths to the root folder of the server to avoid cross domain access.
E.g.:
url="/krpano/skin/soundon.png"
Best regards,
Klaus