Posted inJavaScript / Codeigniter / Laravel / Node.js / php / Programming / ReactJS / VueJs

Cross Header Access Control Allow Origin missing

Cross Header Access Control Allow Origin missing

In this Post We Will Explain About is Cross Header Access Control Allow Origin missing With Example and Demo.Welcome on Pakainfo.com – Examples, The best For Learn web development Tutorials,Demo with Example! Hi Dear Friends here u can know to Access Control Allow Origin Error SolutionExample

Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://www.pakainfo.com/api/index.php/driverlist/0. (Reason: CORS header ‘Access-Control-Allow-Origin’ missing).

1.cross-origin request blocked: (reason: cors header ‘access-control-allow-origin’ missing).
2.this can be fixed by moving the resource to the same domain or enabling cors.
3.cors header ‘access-control-allow-origin’ missing jquery , Angularjs or any ajax call

In this post we will show you Best way to implement reason cors header ‘access-control-allow-origin’ missing angularjs, hear for no access control allow origin header is present jquery ajax originwith Download .we will give you demo,Source Code and examples for implement Step By Step Good Luck!.

AngularJS $http, CORS and http authentication

 $http({
        url: 'http://www.Pakainfo.com/api/v1/get_profile',
        method: "POST",
        data: {username :  ravi dholakiya },
        withCredentials: true,
        headers: {
                    'Content-Type': 'application/json; charset=utf-8'
        }
    });

Nodejs : Access-Control-Allow-Origin

server side you have to put headers nodejs

app.all('*', function(get_request, result,next) {

    var get_response = {
        "AccessControlAllowOrigin": get_request.headers.origin,
        "AccessControlAllowHeaders": "Content-Type,X-CSRF-Token, X-Requested-With, Accept, Accept-Version, Content-Length, Content-MD5,  Date, X-Api-Version, X-File-Name",
        "AccessControlAllowMethods": "POST, GET, PUT, DELETE, OPTIONS",
        "AccessControlAllowCredentials": true
    };

    result.header("Access-Control-Allow-Credentials", get_response.AccessControlAllowCredentials);
    result.header("Access-Control-Allow-Origin",  get_response.AccessControlAllowOrigin);
    result.header("Access-Control-Allow-Headers", (get_request.headers['access-control-request-headers']) ? get_request.headers['access-control-request-headers'] : "x-requested-with");
    result.header("Access-Control-Allow-Methods", (get_request.headers['access-control-request-method']) ? get_request.headers['access-control-request-method'] : get_response.AccessControlAllowMethods);

    if ('OPTIONS' == get_request.method) {
        result.send(200);
    }
    else {
        next();
    }

});

config.xml file



.htaccess : Access-Control-Allow-Origin

AngularJS, PHP Restful Cors issue : My .htaccess:

# Cors
Header always set Access-Control-Allow-Origin "*"
Header always set Access-Control-Allow-Headers "Origin, X-Requested-With, Content-Type, Access-Control-Allow-Origin"
Header always set Access-Control-Allow-Methods "PUT, GET, POST, DELETE, OPTIONS"

PHP : Access-Control-Allow-Origin

we are missing CORS settings on your simple PHP headers:

header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Methods: GET, POST, OPTIONS');
header('Access-Control-Allow-Headers: Origin, Content-Type, Accept, Authorization, X-Request-With');
header('Access-Control-Allow-Credentials: true');

Example

I hope you have Got What is Access Control Allow Origin Error Solution And how it works.I would Like to have FeadBack From My Blog(Pakainfo.com) readers.Your Valuable FeadBack,Any Question,or any Comments abaout This Article(Pakainfo.com) Are Most Always Welcome.

I am Jaydeep Gondaliya , a software engineer, the founder and the person running Pakainfo. I'm a full-stack developer, entrepreneur and owner of Pakainfo.com. I live in India and I love to write tutorials and tips that can help to other artisan, a Passionate Blogger, who love to share the informative content on PHP, JavaScript, jQuery, Laravel, CodeIgniter, VueJS, AngularJS and Bootstrap from the early stage.

Leave a Reply

Your email address will not be published. Required fields are marked *

We accept paid guest Posting on our Site : Guest Post Chat with Us On Skype