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

For development purposes, I need to disable the same-origin policy in Safari (on Windows) on my machine.

In Chrome, this can be done by launching with the flag --disable-web-security. Is there an equivalent flag or hidden setting in Safari?

share|improve this question

2 Answers

In theory all you should have to do is open a command prompt and type in:

C:\<path to installation>\Safari\Safari.exe --disable-web-security

But that doesn't seem to produce the desired result. I know on a Mac running OS X you can achieve this result by opening the terminal application and typing in:

open -a '/Applications/Safari.app' --args --disable-web-security

Since both Google Chrome and Safari both use webkit as its rendering engine the --disable-web-security does behave as expected on OS X. It could very well be that Safari on Windows is closed to accepting command line arguments.

share|improve this answer
Which version of safari are you using on OSX? – Steven de Salas Jan 14 '11 at 12:45
2  
This doesnt seem to work, can you please double check and confirm? Thanx! – Steven de Salas Jan 14 '11 at 14:25
I am using Safari Version 5.0.3 (6533.19.4) on Mac OS X 10.6.6. I just tested this today and it still works. All I can say is make sure your URL call is properly formed (I'm assuming AJAX). Also make sure to enable the developer menu. The error console in Safari can let you inspect XHR's and make sure that they are being made. You can enable the developer menu via Safari preferences under the Advanced tab. – avelis Jan 14 '11 at 19:20
The question was about Safari on Windows so this unfortunately doesn't help. – kpozin Jan 15 '11 at 17:03
1  
I'm using Safari 5.1.7 on mac 10.7.4 and it doesn't work. Did they update the arguments or something? – Chan Le May 12 '12 at 18:21
show 1 more comment

If you are running OSX Lion (Safari 6.0), then you only need to enable the developer menu, and select "Disable local file restrictions" from the develop menu.

share|improve this answer
This menu item doesn't exist. I've checked Safari 6.0 and 6.0.2 on Mac OS X Lion, but as you can see in this screenshot, there's not such an option called "Disable local file restrictions". Apple's KB article (last edited 16 nov 2012) mentions this feature, but still, it does not exist. – Rob W Jan 12 at 22:47
1  
This menu item is in the Develop menu which needs to be enabled in preferences under Advanced "Show Develop menu in menu bar". But it doesn't seem to avoid the the cors issue. – Pyrolistical Feb 6 at 22:38
Rob W: Down vote? I did say that you "need to enable the developer menu", and then you can select "Disable local file restrictions". – skymook Mar 31 at 15:12

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.