A webapp I’m developing (@ http://www.PureRGB.com ) appears to load correctly both for the www and non-www urls for the site. However it appears ajax calls are not working correctly for the non-www version of the site. At least I think it might be related to ajax? The issue is apparent when you interact with some of the checkboxes (e.g. “E6-C41 cross processing” checkbox) on my webapp for the non-www url.
Any thoughts on why this might be happening?
Many thanks
You’re trying to hit
http://www.purergb.com/cmd_dispatch.phpwhen you click on that checkbox, so the request is blocked by the browser due to being cross-domain. Remove the entire domain from that request (i.e. just hit/cmd_dispatch.phpinstead).