Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm making a Ajax.request to a remote PHP server in a Sencha Touch 2 application (wrapped in phonegap).

The response from the server is the following:

XMLHttpRequest cannot load http://nqatalog.negroesquisso.pt/login.php. Origin http://localhost:8888 is not allowed by Access-Control-Allow-Origin.

share|improve this question
2  
while using jQuery, setting dataType: 'jsonp', does the trick – amit Oct 11 '12 at 12:45
2  
by the way that is not the response from the server. To be precise that error is issued on the client side. – matteo Feb 1 at 17:41

9 Answers

up vote 117 down vote accepted

I wrote an article on this issue a while back here: Cross Domain AJAX

The easiest way to handle this if you have control of the responding server is to add a response header for:

Access-Control-Allow-Origin: *

This will allow cross domain AJAX. In PHP you'll want to modify the response like so:

<?php header('Access-Control-Allow-Origin: *'); ?>

you can just put Header set Access-Control-Allow-Origin * setting on apache conf or htaccess file it just work like a charm

share|improve this answer
2  
I'll contact my server provider. Thanks – Ricardo Apr 13 '12 at 15:04
6  
Are there any security concerns with this? This answer, for example, says "JavaScript is limited by the "same origin policy" for security reasons, For example, a malicious script cannot contact a remote server and send sensitive data from your site." – JohnK Nov 2 '12 at 18:14
Awesome, I just put this in my node.js server file: response.writeHead(200, { 'Content-Type': contentType, 'Access-Control-Allow-Origin': '*' }); And it worked. Thanks! – vbullinger Nov 29 '12 at 4:33
9  
JohnK, yes, the wildcard is going to allow any domain to send requests to your host. I recommend replacing the asterisk with a specific domain that you will be running scripts on. – Nick Dec 20 '12 at 19:33
Uh, you shouldn't even suggest the wildcard. It's a massive security no no and should be used only if you really know what you're doing, see code.google.com/p/html5security/wiki/CrossOriginRequestSecurity It's scary to see this answer upvoted so many times. – jfrej May 17 at 12:21

If you're using Apache just add:

<ifModule mod_headers.c>
    Header set Access-Control-Allow-Origin: *
</ifModule>

in your configuration. This will cause all responses from your webserver to be accessible from any other site on the internet. If you intend to only allow services on your host to be used by a specific server you can replace the * with the URL of the originating server:

Header set Access-Control-Allow-Origin: http://my.origin.host
share|improve this answer
1  
And don't forget to load module: a2enmod headers – Walery Strauch Oct 25 '12 at 13:58

If you don't have control of the server, you can simply add this argument to your Chrome launcher: --disable-web-security.

Note that I wouldn't use this for normal "web surfing". For reference, see this post: Chrome: Disable same origin policy.

One you use Phonegap to actually build the application and load it onto the device, this won't be an issue.

share|improve this answer
Thanks. But my app is running on mobile devices, I cant pass arguments to my webview wrapper. – Ricardo Apr 13 '12 at 16:52
Don't you test your app in a browser first? How do you debug? – Travis Webb Apr 13 '12 at 17:33
Yes i debug in a Chrome browser, but the app wont run on chrome. It will be on phonegap webview witch i cant control. – Ricardo Apr 16 '12 at 10:25
how to heck do you do this? I've looking and can't find this setting inside of chrome. – Jamie Hutber Mar 6 at 15:11
1  
read the answer: you can simply add this argument to your Chrome launcher. There is no setting for this inside Chrome – Travis Webb Mar 6 at 16:43

As Matt Mombrea is correct for the server side, you might run into another problem which is whitelisting rejection.

You have to configure your phonegap.plist. (I am using a old version of phonegap)

For cordova, there might be some changes in the naming and directory. But the steps should be mostly the same.

First select Supporting files > PhoneGap.plist

enter image description here

then under "ExternalHosts"

Add a entry, with a value of perhaps "http://nqatalog.negroesquisso.pt" I am using * for debugging purposes only.

enter image description here

share|improve this answer
Thank you for your time. – Ricardo Apr 23 '12 at 8:49

This is because same origin policy.

See more at MDN or Wiki

Basically you need in your example load http://nqatalog.negroesquisso.pt/login.php page only from nqatalog.negroesquisso.pt not localhost

share|improve this answer
But I need to load the webservice from a mobile device, I would a bypass this? – Ricardo Apr 13 '12 at 14:54
Well you need to make some server-side changes or use JSONP en.wikipedia.org/wiki/JSONP – antyrat Apr 13 '12 at 14:55
1  
thank you for your time – Ricardo Apr 13 '12 at 15:05

I've run into this a few times when working with various APIs. Often a quick fix is to add "&callback=?" to the end of a string. Sometimes the ampersand has to be a character code.

share|improve this answer

We also have same problem with phonegap application tested in chrome. One windows machine we use below batch file everyday before Opening Chrome. Remember before running this you need to clean all instance of chrome from task manager or you can select chrome to not to run in background. BATCH: cd D:\Program Files (x86)\Google\Chrome\Application\ chrome.exe --disable-web-security

share|improve this answer

If you get this in Angular.js, then make sure you escape your port number like this:

var Project = $resource(
       'http://localhost\\:5648/api/...',
          {'a':'b'}, 
          {
            update: { method: 'PUT' }
          }
      );

See https://github.com/angular/angular.js/issues/1243 for more info on it.

share|improve this answer

Although you have marked the answer that worked or works anyway,but I have figured out another "workaround" that is, you just omit the protocol part of the url.

For example:

 "http://example.com"

becomes

"//example.com"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.