Сообщение от tetatet
Посмотреть сообщение
Выгледит так, что виджету закрыли доступ.
Некоторые сервисы меня спрашивали на счёт виджет сервера, и они добавили у себя ип адресс виджет сервера чтоб решит проблему с "cross browser access".
https://stackoverflow.com/questions/...-exception-101
хороший ответ:
f the url you provide is located externally to your server, and the server has not allowed you to send requests, you have permission problems. You cannot access data from another server with a XMLHttpRequest, without the server explicitly allowing you to do so.
See this related question
See this related question
https://stackoverflow.com/questions/...origin-domains
пусть в httpd.conf добавят:
Код:
Access-Control-Allow-Origin:54.194.33.124
PHP код:
<?php header('Access-Control-Allow-Origin: 54.194.33.124'); ?>
Комментарий