Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 172383
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T13:09:22+00:00 2026-05-11T13:09:22+00:00

Help, if you can- The situation: http://foobar.com includes a remotely hosted javacript file (

  • 0

Help, if you can-

The situation:

http://foobar.com includes a remotely hosted javacript file (http://boobar.com/stuff.js).

The goal is to just get an alert from the remotely hosted php script on foobar.com

I have tried the following code in stuff.js:

$.ajax({   type: 'GET',   url: 'http://www.boobar.com/script.php?callback=?',   dataType: 'jsonp',   success: function(result) { alert(result); } }); 

No luck.

$.getJSON('http://www.boobar.com/script.php?jsonp=?',   function(data) { alert(data); } ); 

Also no luck.

On the php side I have tried both the following:

return json_encode(array(0 => 'test'));  echo json_encode(array(0 => 'test')); 

In Firefox I get a security error. I understand that it thinks I’m violating the security model. However, according to the jquery documentation, I should be able to accomplish this.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T13:09:23+00:00Added an answer on May 11, 2026 at 1:09 pm

    The error seems to be a security feature of the Same Origin Policy: to simplify, you can only make AJAX requests for stuff on the originating server (http://foobar.com). One way around this is to make a simple facade on the originating server, e.g.:

     <?php  // this file resides at http://foobar.com/getstuff.php  echo file_get_contents('http://www.boobar.com/script.php?callback=?'           . $possibly_some_other_GET_parameters );  ?> 

    Then, from foobar.com, you can make an AJAX request for http://foobar.com/getstuff.php (which in turn makes a HTTP GET request from your web server to boobar.com and sends it back to the browser).

    To the browser, the request goes to the origin server, and is allowed (the browser has no way of knowing that the response comes from somewhere else behind the scene).

    Caveats:

    • the PHP config at foobar.com must have allow_url_fopen set to ‘1’. Although this is the default setting, some servers have it disabled.
    • the request to http://www.boobar.com is made from foobar.com server, not from the browser. That means no cookies or user authentication data are sent to http://www.boobar.com, just whatever you put into the request URL (‘$possibly_some_other_GET_parameters‘).
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 104k
  • Answers 104k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Most database servers have a COALESCE function, which will return… May 11, 2026 at 8:34 pm
  • Editorial Team
    Editorial Team added an answer Your code is wrong in objective C... (200 / 23)… May 11, 2026 at 8:34 pm
  • Editorial Team
    Editorial Team added an answer You can wrap the iframe in a DIV with an… May 11, 2026 at 8:34 pm

Related Questions

We have several UNIX machines you can wind up with when you telnet to
This seems so tricky to me that I think I am overlooking something simple
I have a LINQ query: var result = from mt in MessageTypes join mtfmt
I have a little dilemma that maybe you can help me sort out. I've

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.