The status bar just freezes a 0% when opening an image. I can see that others have had the same problem. But I'm on the live website, so it seems to be another problem.
The package installed perfectly and the crossdomain.xml is in the root of the website.
I don't think it was stupid - Sometimes it's hard to remember all the possible things that it could be related to. We all do this one time or another, so don't you worry :)
I'm afraid I'm encountering the same problem. I've updated the crossdomain.xml, disabled cache in Chrome, and tried IE (10). Alas, the "Loading image" popup is stuck at 0%.
I'm now running Umbraco 6.0.3. Changed the XML-file, but I still encountered the same problem. Turned out that clearing my browser cache resolved the issue...
Pixlr not loading image
Hi,
The status bar just freezes a 0% when opening an image. I can see that others have had the same problem. But I'm on the live website, so it seems to be another problem.
The package installed perfectly and the crossdomain.xml is in the root of the website.
I'm running Umbraco 7.1.1.
Any help is much appreciated
/Rune
Update:
It's in all browsers and I have tried recycling the website with no luck. Also it doesn't matter if I check the "Save as new?" checkbox.
/Rune
This crossdomain.xml fixed it for me (umbraco 4.7.x):
hth,
Marc
Hmm
I'm having the same issue on a local instance running Umbraco 4.7.1.1.
I tried to use the crossdomain file posted above but it did not resolve anything. I have recycled the app pool etc. after making the change...
Any other ideas on what to check?
/Jan
Jan
Am having the same issue.
Try this it worked for me:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<allow-access-from domain="*.pixlr.com" />
<site-control permitted-cross-domain-policies="master-only"/>
<allow-http-request-headers-from domain="*.pixlr.com" headers="*" secure="true"/>
</cross-domain-policy>
The changes from Marc's above are in bold.
TT
Hi TT
Thanks a ton, the missing encoding was exactly the issue it seems. After adding it this works like a charm!
I hope the package creator will modify the crossdomain.xml file so it will not be neccesary to do this manually in the future.
/Jan
Hi Guys,
I have tried all of the above and still having no joy ...
I have just noticed it all works fine in Safari , but I have the no image loading issue in Chrome (my client uses chrome unfortunately)
Any ideas on this one ?
Cheers
Glynn
Hi Glynn and welcome to our :)
Have you tried clearing the browser data to see if that helps? (You don't have to delete the browser history of course).
/Jan
Hi Jan,
I was hoping that my first post wouldn't be something so stupid ... be alas it was :(
Thankyou , that fixed it (obviously)
:)
Glynn
Hi Glynn
I don't think it was stupid - Sometimes it's hard to remember all the possible things that it could be related to. We all do this one time or another, so don't you worry :)
I'm just happy it helped.
Have fun using Umbraco!
/Jan
I'm afraid I'm encountering the same problem. I've updated the crossdomain.xml, disabled cache in Chrome, and tried IE (10). Alas, the "Loading image" popup is stuck at 0%.
I'm running Umbraco 4.11.1.
I'm now running Umbraco 6.0.3. Changed the XML-file, but I still encountered the same problem. Turned out that clearing my browser cache resolved the issue...
I'm having this problem in Umbraco 6.0.5.
I'm clikcing on the pixlr link that comes with the DAMP datatype.
I've updated the XML file and cleared all my caches but it won't work on my live server in Firefox or IE10. It works fine in Chrome though.
On my local development machine it works fine in FF, IE & Chrome.
I have no idea what the difference is, can anybody help?
is the format for adding multiple domain just comma separating the values
<cross-domain-policy>
<allow-access-from domain="*.sitre.com, *.site2.com" />
<site-control permitted-cross-domain-policies="master-only"/>
<allow-http-request-headers-from domain="*.sitre.com, *.site2.com" headers="*" secure="true"/>
</cross-domain-policy>
As far as I know you only have to add the pixlr.com domain. Not your own domain.
is working on a reply...