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 8671377
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T18:56:07+00:00 2026-06-12T18:56:07+00:00

Sometimes when I submit ajax requests I get this error XMLHttpRequest cannot load http://www.mysite.com/go/submit.

  • 0

Sometimes when I submit ajax requests I get this error

XMLHttpRequest cannot load http://www.mysite.com/go/submit. Origin http://mysite.com is not allowed by Access-Control-Allow-Origin.

Here are solutions I thought about:

* Add the allow origin rule everywhere?
* Write .htaccess to always redirect to full url
* Use this method http://james.padolsey.com/javascript/cross-domain-requests-with-jquery/

How should I fix this problem?

  • 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. Editorial Team
    Editorial Team
    2026-06-12T18:56:08+00:00Added an answer on June 12, 2026 at 6:56 pm

    The same origin policy means you cannot analyze data (json, html, image, etc.) that are coming from another “origin” (domain, port) than yours.

    Note that

    The term “origin” is defined using the domain name, application layer
    protocol, and (in most browsers) port number of the HTML document
    running the script

    A solution is to set, on the server serving the other data, CORS headers explicitly allowing the access :

    Access-Control-Allow-Origin: *
    

    So you must have control of the server serving the data you embed as soon as you’re not just displaying them.

    A somewhat indirect solution is to let the browser think there is only one origin, by putting on your server a proxy. On apache you don’t need .htaccess but mod_proxy. If you want to install such a proxy, you may be interested by this SO question (in fact you’d probably be more interested by the answer which helped me set such a proxy on one of my servers).

    If your only problem is people typing mysite.com instead of http://www.mysite.com and you have only one server, you may simply use .htaccess to rewrite the URL :

    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^mysite\.com$ [NC]
    RewriteRule ^(.*)$ http://www.mysite.com/$1 [L,R=301]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I modified the code here (http://www.w3schools.com/PHP/php_ajax_database.asp) to update and display my database after an
I am using jquery with ajax. Sometimes, It is giving error $ is not
Sometimes when using Visual Studio it displays a prompt with a filename: This file
Sometimes I heard people discussing about the start-up time for Java. It seems this
When the city input field is blurred I get somnething via an ajax request
I have some tricky AJAX code on a form, and sometimes it will fail
I sometimes wonder what happens when you submit a form multiple times and the
The validation sometimes works when tabbing but not always. For example, load webpage, delete
edit in progress will re-submit sometimes later edit in progress will re-submit sometimes later
I have small question regarding the following error: this.context.sourceCache On a custom control I

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.