I’m afraid we haven’t made any progress on this yet. Could you give me a URL of a page where you experience the issue, so I can forward that to our team in charge of Photon?
Thanks!
This issue should now be fixed! Let me know if you still experience issues!
same issue
here is my link: http://giflix.net/world/2016/11/11/sun-movement/
-
This reply was modified 9 years, 6 months ago by
canferman.
@canferman Thanks for the report. I’ll ask our Photon team to take a look and I’ll get back to you.
@canferman Photon appears to be properly set, and your domain as well. You can check it by running the following command in your terminal:
$ curl -sI -H 'Origin: http://giflix.net' 'http://i1.wp.com/giflix.net/wp-content/uploads/2016/11/image-145640544412350136841.gif?fit=364%2C364' | grep Access
Access-Control-Allow-Origin: *
Access-Control-Allow-Methods: GET, HEAD
That indicates that the Access-Control-Allow-Origin header is set. The problem is most likely caused by something else on your site.
Could you try to switch to another theme, or deactivate all other plugins, one at a time, to make sure that’s not caused by a conflict with your theme or another plugin?
There is no relevance to the theme or any other plugins,
i changed the theme and deactivate all other plugins, but the problem continues…
simply i just want to show loading proccess time of images and i wrote these lines of codes (php):
(with progress js)
....
var imgSrc =
imgSrc = $(this).attr('src');
progressJs("img[src='" + imgSrc + "']").setOptions({
overlayMode: true,
theme: 'blueOverlayRadiusWithPercentBar'
}).start().set(1);
$progress = document.querySelector('#progress');
var url = imgSrc;
var request = new XMLHttpRequest();
request.onprogress = onProgress;
request.onComplete = onComplete;
request.onerror = onError;
....
XMLHttpRequest get errors
This may help you customize your request to solve this issue:
http://stackoverflow.com/a/20035319/1045686