Reply to thread

In your main directory


If you use .htaccess add this into it;


[CODE]<IfModule mod_headers.c>

    Header set Access-Control-Allow-Origin "*"

</IfModule>[/CODE]


If you use IIS,


  • Go into your IIS manager
  • Right click on the site your using
  • Goto the HTTP Headers Section (Might also be called HTTP Response Headers)
  • Click Add
  • Enter; Access-Control-Allow-Origin as the Header name
  • Enter; * as the value.


Then confirm both boxes and then try your client again.


Top