How to solve Cross-Origin Read Blocking error display on console?












0















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.



enter image description here










share|improve this question





























    0















    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.



    enter image description here










    share|improve this question



























      0












      0








      0








      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.



      enter image description here










      share|improve this question
















      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.



      enter image description here







      javascript






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 22 '18 at 18:34







      Tahridabbas

















      asked Nov 22 '18 at 17:51









      TahridabbasTahridabbas

      1816




      1816
























          1 Answer
          1






          active

          oldest

          votes


















          0














          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>






          share|improve this answer


























          • 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 '18 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 '18 at 18:07











          • Can you please show your error meassage. show your console.

            – Banujan Balendrakumar
            Nov 22 '18 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 '18 at 18:16













          • can you show me plz?

            – Banujan Balendrakumar
            Nov 22 '18 at 18:23











          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
          });


          }
          });














          draft saved

          draft discarded


















          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









          0














          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>






          share|improve this answer


























          • 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 '18 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 '18 at 18:07











          • Can you please show your error meassage. show your console.

            – Banujan Balendrakumar
            Nov 22 '18 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 '18 at 18:16













          • can you show me plz?

            – Banujan Balendrakumar
            Nov 22 '18 at 18:23
















          0














          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>






          share|improve this answer


























          • 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 '18 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 '18 at 18:07











          • Can you please show your error meassage. show your console.

            – Banujan Balendrakumar
            Nov 22 '18 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 '18 at 18:16













          • can you show me plz?

            – Banujan Balendrakumar
            Nov 22 '18 at 18:23














          0












          0








          0







          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>






          share|improve this answer















          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>







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 22 '18 at 18:04

























          answered Nov 22 '18 at 18:02









          Banujan BalendrakumarBanujan Balendrakumar

          9921213




          9921213













          • 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 '18 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 '18 at 18:07











          • Can you please show your error meassage. show your console.

            – Banujan Balendrakumar
            Nov 22 '18 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 '18 at 18:16













          • can you show me plz?

            – Banujan Balendrakumar
            Nov 22 '18 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 '18 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 '18 at 18:07











          • Can you please show your error meassage. show your console.

            – Banujan Balendrakumar
            Nov 22 '18 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 '18 at 18:16













          • can you show me plz?

            – Banujan Balendrakumar
            Nov 22 '18 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 '18 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 '18 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 '18 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 '18 at 18:07













          Can you please show your error meassage. show your console.

          – Banujan Balendrakumar
          Nov 22 '18 at 18:14







          Can you please show your error meassage. show your console.

          – Banujan Balendrakumar
          Nov 22 '18 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 '18 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 '18 at 18:16















          can you show me plz?

          – Banujan Balendrakumar
          Nov 22 '18 at 18:23





          can you show me plz?

          – Banujan Balendrakumar
          Nov 22 '18 at 18:23




















          draft saved

          draft discarded




















































          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.




          draft saved


          draft discarded














          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





















































          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







          這個網誌中的熱門文章

          Tangent Lines Diagram Along Smooth Curve

          Yusuf al-Mu'taman ibn Hud

          Zucchini