Cors disable

https://variouspvp.xyz

Error Message

no error message but i want to disable CORS

Other Information

nope

CORS is enabled by default.
If you need to bypass CORS restriction, please upgrade to premium hosting

1 Like

That’s not really how it works; Whatever hosting you use CORS will always be there. Its a standard web security feature present on all websites unless disabled.

You cannot disable CORS using a .htaccess file on this hosting, but you can disable it for individual PHP files by using this code at the top of your file:

header("Access-Control-Allow-Origin: *");
4 Likes

I don’t think it will work…

I know it works, as when I used this hosting, it worked. Like it says in that post, its a server header, and that code sends the header from the server.

As the admin said in that topic: Our servers block all CORS, meaning the request will be rejected before it hits your PHP code. - this is not true. Yes, certain headers get sent before a file is loaded, however, these headers can be changed as the request reaches the file, because even if you set specific denial headers, the request will still reach the target page.

4 Likes

Great then! I learnt something today…

3 Likes

Only if you are using cloudflare, otherwise if you want to load it from another site then it’ll face into the browser check page which does not contain that header.

4 Likes

Yes you get the cookie check but not CORRs.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.