Ask Your Question
1

How can the "No 'Access-Control-Allow-Origin' header is present on the requested resource" CORS Error be resolved when posting an Ajax request to a PHP file?

asked 2023-06-28 19:23:26 +0000

qstack gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2023-06-28 19:39:02 +0000

lalupa gravatar image

The "No 'Access-Control-Allow-Origin' header is present on the requested resource" error occurs when an Ajax request is made to a server that doesn't have the appropriate CORS headers enabled. This error can be resolved by adding the following PHP code to the top of the PHP file that is being requested:

header("Access-Control-Allow-Origin: *");
header("Access-Control-Allow-Methods: POST, GET, OPTIONS");
header("Access-Control-Allow-Headers: Content-Type, Authorization");

This code enables cross-origin resource sharing (CORS) on the server and allows the Ajax request to be processed without error. It should be noted, however, that enabling CORS on a server can pose security risks if not done correctly.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-28 19:23:26 +0000

Seen: 10 times

Last updated: Jun 28 '23