Back to amCharts.com

Loading data from a different domain or from a secure server (https://)

To load data from a different domain, or from a server whose URL starts with https:// , you need to create a cross domain policy file and upload it to the server where your data is. More ways to solve this problem can be found here.

There is another easy way to load data from a secure server (starting with https://) - all you need to do is to add this header to your PHP file:

header("Pragma: cache");

Back to top