How to solve Cross-Origin Read Blocking error display on console?
Can anyone please guide me. how can i resolve this error responding on console,i am trying to run my script but the script is not working and getting this error on console of browser.
This is the javascript what i am trying to run:
Cross-Origin Read Blocking (CORB) blocked cross-origin response https://profreehost.com/404/index.php with MIME type text/html. See https://www.chromestatus.com/feature/5629709824032768 for more details.
javascript
add a comment |
Can anyone please guide me. how can i resolve this error responding on console,i am trying to run my script but the script is not working and getting this error on console of browser.
This is the javascript what i am trying to run:
Cross-Origin Read Blocking (CORB) blocked cross-origin response https://profreehost.com/404/index.php with MIME type text/html. See https://www.chromestatus.com/feature/5629709824032768 for more details.
javascript
add a comment |
Can anyone please guide me. how can i resolve this error responding on console,i am trying to run my script but the script is not working and getting this error on console of browser.
This is the javascript what i am trying to run:
Cross-Origin Read Blocking (CORB) blocked cross-origin response https://profreehost.com/404/index.php with MIME type text/html. See https://www.chromestatus.com/feature/5629709824032768 for more details.
javascript
Can anyone please guide me. how can i resolve this error responding on console,i am trying to run my script but the script is not working and getting this error on console of browser.
This is the javascript what i am trying to run:
Cross-Origin Read Blocking (CORB) blocked cross-origin response https://profreehost.com/404/index.php with MIME type text/html. See https://www.chromestatus.com/feature/5629709824032768 for more details.
javascript
javascript
edited Nov 22 at 18:34
asked Nov 22 at 17:51
Tahridabbas
185
185
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You should tell your server to allow the request by setting header.
If you want to allow for only that PHP file, Add this line on top of your PHP file.
header("Access-Control-Allow-Origin: *");
If you want to allow for all resources, Add this line in your root .htaccess
file.
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
And if you don't have access to the server, there is nothing you can do from the user perspective. Only chance is to build own backend that will automatically redirect request to the service and add Access-Control-Allow-Origin header to the response.
– Patrik Valkovič
Nov 22 at 18:04
@PatrikValkovič Yes.... **Tahridabbas This is a secury header. If this is your server or your backend. If this is a third-party URL, You can't. They don't want to allow anyone to access their resource.
– Banujan Balendrakumar
Nov 22 at 18:07
Can you please show your error meassage. show your console.
– Banujan Balendrakumar
Nov 22 at 18:14
Where did you put? You sould put on the file which you are tring to access fromhttps://profreehost.com
. For example if you want to connecthttps://profreehost.comprofile.php
you should add that line inhttps://profreehost.comprofile.php
file
– Banujan Balendrakumar
Nov 22 at 18:16
can you show me plz?
– Banujan Balendrakumar
Nov 22 at 18:23
|
show 6 more comments
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53436100%2fhow-to-solve-cross-origin-read-blocking-error-display-on-console%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You should tell your server to allow the request by setting header.
If you want to allow for only that PHP file, Add this line on top of your PHP file.
header("Access-Control-Allow-Origin: *");
If you want to allow for all resources, Add this line in your root .htaccess
file.
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
And if you don't have access to the server, there is nothing you can do from the user perspective. Only chance is to build own backend that will automatically redirect request to the service and add Access-Control-Allow-Origin header to the response.
– Patrik Valkovič
Nov 22 at 18:04
@PatrikValkovič Yes.... **Tahridabbas This is a secury header. If this is your server or your backend. If this is a third-party URL, You can't. They don't want to allow anyone to access their resource.
– Banujan Balendrakumar
Nov 22 at 18:07
Can you please show your error meassage. show your console.
– Banujan Balendrakumar
Nov 22 at 18:14
Where did you put? You sould put on the file which you are tring to access fromhttps://profreehost.com
. For example if you want to connecthttps://profreehost.comprofile.php
you should add that line inhttps://profreehost.comprofile.php
file
– Banujan Balendrakumar
Nov 22 at 18:16
can you show me plz?
– Banujan Balendrakumar
Nov 22 at 18:23
|
show 6 more comments
You should tell your server to allow the request by setting header.
If you want to allow for only that PHP file, Add this line on top of your PHP file.
header("Access-Control-Allow-Origin: *");
If you want to allow for all resources, Add this line in your root .htaccess
file.
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
And if you don't have access to the server, there is nothing you can do from the user perspective. Only chance is to build own backend that will automatically redirect request to the service and add Access-Control-Allow-Origin header to the response.
– Patrik Valkovič
Nov 22 at 18:04
@PatrikValkovič Yes.... **Tahridabbas This is a secury header. If this is your server or your backend. If this is a third-party URL, You can't. They don't want to allow anyone to access their resource.
– Banujan Balendrakumar
Nov 22 at 18:07
Can you please show your error meassage. show your console.
– Banujan Balendrakumar
Nov 22 at 18:14
Where did you put? You sould put on the file which you are tring to access fromhttps://profreehost.com
. For example if you want to connecthttps://profreehost.comprofile.php
you should add that line inhttps://profreehost.comprofile.php
file
– Banujan Balendrakumar
Nov 22 at 18:16
can you show me plz?
– Banujan Balendrakumar
Nov 22 at 18:23
|
show 6 more comments
You should tell your server to allow the request by setting header.
If you want to allow for only that PHP file, Add this line on top of your PHP file.
header("Access-Control-Allow-Origin: *");
If you want to allow for all resources, Add this line in your root .htaccess
file.
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
You should tell your server to allow the request by setting header.
If you want to allow for only that PHP file, Add this line on top of your PHP file.
header("Access-Control-Allow-Origin: *");
If you want to allow for all resources, Add this line in your root .htaccess
file.
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
edited Nov 22 at 18:04
answered Nov 22 at 18:02
Banujan Balendrakumar
567211
567211
And if you don't have access to the server, there is nothing you can do from the user perspective. Only chance is to build own backend that will automatically redirect request to the service and add Access-Control-Allow-Origin header to the response.
– Patrik Valkovič
Nov 22 at 18:04
@PatrikValkovič Yes.... **Tahridabbas This is a secury header. If this is your server or your backend. If this is a third-party URL, You can't. They don't want to allow anyone to access their resource.
– Banujan Balendrakumar
Nov 22 at 18:07
Can you please show your error meassage. show your console.
– Banujan Balendrakumar
Nov 22 at 18:14
Where did you put? You sould put on the file which you are tring to access fromhttps://profreehost.com
. For example if you want to connecthttps://profreehost.comprofile.php
you should add that line inhttps://profreehost.comprofile.php
file
– Banujan Balendrakumar
Nov 22 at 18:16
can you show me plz?
– Banujan Balendrakumar
Nov 22 at 18:23
|
show 6 more comments
And if you don't have access to the server, there is nothing you can do from the user perspective. Only chance is to build own backend that will automatically redirect request to the service and add Access-Control-Allow-Origin header to the response.
– Patrik Valkovič
Nov 22 at 18:04
@PatrikValkovič Yes.... **Tahridabbas This is a secury header. If this is your server or your backend. If this is a third-party URL, You can't. They don't want to allow anyone to access their resource.
– Banujan Balendrakumar
Nov 22 at 18:07
Can you please show your error meassage. show your console.
– Banujan Balendrakumar
Nov 22 at 18:14
Where did you put? You sould put on the file which you are tring to access fromhttps://profreehost.com
. For example if you want to connecthttps://profreehost.comprofile.php
you should add that line inhttps://profreehost.comprofile.php
file
– Banujan Balendrakumar
Nov 22 at 18:16
can you show me plz?
– Banujan Balendrakumar
Nov 22 at 18:23
And if you don't have access to the server, there is nothing you can do from the user perspective. Only chance is to build own backend that will automatically redirect request to the service and add Access-Control-Allow-Origin header to the response.
– Patrik Valkovič
Nov 22 at 18:04
And if you don't have access to the server, there is nothing you can do from the user perspective. Only chance is to build own backend that will automatically redirect request to the service and add Access-Control-Allow-Origin header to the response.
– Patrik Valkovič
Nov 22 at 18:04
@PatrikValkovič Yes.... **Tahridabbas This is a secury header. If this is your server or your backend. If this is a third-party URL, You can't. They don't want to allow anyone to access their resource.
– Banujan Balendrakumar
Nov 22 at 18:07
@PatrikValkovič Yes.... **Tahridabbas This is a secury header. If this is your server or your backend. If this is a third-party URL, You can't. They don't want to allow anyone to access their resource.
– Banujan Balendrakumar
Nov 22 at 18:07
Can you please show your error meassage. show your console.
– Banujan Balendrakumar
Nov 22 at 18:14
Can you please show your error meassage. show your console.
– Banujan Balendrakumar
Nov 22 at 18:14
Where did you put? You sould put on the file which you are tring to access from
https://profreehost.com
. For example if you want to connect https://profreehost.comprofile.php
you should add that line in https://profreehost.comprofile.php
file– Banujan Balendrakumar
Nov 22 at 18:16
Where did you put? You sould put on the file which you are tring to access from
https://profreehost.com
. For example if you want to connect https://profreehost.comprofile.php
you should add that line in https://profreehost.comprofile.php
file– Banujan Balendrakumar
Nov 22 at 18:16
can you show me plz?
– Banujan Balendrakumar
Nov 22 at 18:23
can you show me plz?
– Banujan Balendrakumar
Nov 22 at 18:23
|
show 6 more comments
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53436100%2fhow-to-solve-cross-origin-read-blocking-error-display-on-console%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown