Invalid template file magento2.3.0












4














I have recently installed magento latest version i.e. Magento 2.3.0 in local wamp machine with php 7.2.4



Installed it using command line interface.



But when i tired to run it show me error like



Exception #0 (MagentoFrameworkExceptionValidatorException): Invalid template file: 'D:/wamp64/www/mage23/vendor/magento/module-theme/view/frontend/templates/page/js/require_js.phtml' in module: '' block's name: 'require.js'









share|improve this question
























  • Is it working for you?
    – Rohan Hapani
    Nov 30 '18 at 8:55










  • no still not working all extenssion are there.
    – MageLerner
    Nov 30 '18 at 8:58
















4














I have recently installed magento latest version i.e. Magento 2.3.0 in local wamp machine with php 7.2.4



Installed it using command line interface.



But when i tired to run it show me error like



Exception #0 (MagentoFrameworkExceptionValidatorException): Invalid template file: 'D:/wamp64/www/mage23/vendor/magento/module-theme/view/frontend/templates/page/js/require_js.phtml' in module: '' block's name: 'require.js'









share|improve this question
























  • Is it working for you?
    – Rohan Hapani
    Nov 30 '18 at 8:55










  • no still not working all extenssion are there.
    – MageLerner
    Nov 30 '18 at 8:58














4












4








4







I have recently installed magento latest version i.e. Magento 2.3.0 in local wamp machine with php 7.2.4



Installed it using command line interface.



But when i tired to run it show me error like



Exception #0 (MagentoFrameworkExceptionValidatorException): Invalid template file: 'D:/wamp64/www/mage23/vendor/magento/module-theme/view/frontend/templates/page/js/require_js.phtml' in module: '' block's name: 'require.js'









share|improve this question















I have recently installed magento latest version i.e. Magento 2.3.0 in local wamp machine with php 7.2.4



Installed it using command line interface.



But when i tired to run it show me error like



Exception #0 (MagentoFrameworkExceptionValidatorException): Invalid template file: 'D:/wamp64/www/mage23/vendor/magento/module-theme/view/frontend/templates/page/js/require_js.phtml' in module: '' block's name: 'require.js'






magento2 magento2.3.0






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 30 '18 at 7:25

























asked Nov 30 '18 at 7:24









MageLerner

11510




11510












  • Is it working for you?
    – Rohan Hapani
    Nov 30 '18 at 8:55










  • no still not working all extenssion are there.
    – MageLerner
    Nov 30 '18 at 8:58


















  • Is it working for you?
    – Rohan Hapani
    Nov 30 '18 at 8:55










  • no still not working all extenssion are there.
    – MageLerner
    Nov 30 '18 at 8:58
















Is it working for you?
– Rohan Hapani
Nov 30 '18 at 8:55




Is it working for you?
– Rohan Hapani
Nov 30 '18 at 8:55












no still not working all extenssion are there.
– MageLerner
Nov 30 '18 at 8:58




no still not working all extenssion are there.
– MageLerner
Nov 30 '18 at 8:58










4 Answers
4






active

oldest

votes


















4














Yes, This is the problem with windows. Windows uses "" as separator, the array "directories" contains entries with "/" as separator, so the check will always fail.
So you need to fix this by replacing the separator in core file:



MagentoFrameworkViewElementTemplateFileValidator


function isPathInDirectories replace below code in isPathInDirectories function



$realPath = str_replace('\', '/', $this->fileDriver->getRealPath($path));





share|improve this answer





























    3














    Magento 2.3 does not support windows.
    You can find my solution here:
    enter link description here






    share|improve this answer





















    • it makes no sense for it to not support windows but has such a simple "fix".
      – R T
      Dec 18 '18 at 8:40



















    1














    It's the core issue of Magento 2.3.0. To fix this issue you have to change the code in the core file of Magento.



    Go to path
    /vendor/magento/framework/View/Element/Template/File/Validator.php In this file find




    $realPath = $this->fileDriver->getRealPath($path);




    Replace with




    $realPath = str_replace('', '/', $this->fileDriver->getRealPath($path));







    share|improve this answer





















    • The same answer posted by @Saurabh Dwivedi and also its accepted mate
      – MageLerner
      2 days ago



















    0














    It should be double slash i.e "\"



    $realPath = str_replace('\', '/', $this->fileDriver->getRealPath($path));






    share|improve this answer





















      Your Answer








      StackExchange.ready(function() {
      var channelOptions = {
      tags: "".split(" "),
      id: "479"
      };
      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: false,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: null,
      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%2fmagento.stackexchange.com%2fquestions%2f251924%2finvalid-template-file-magento2-3-0%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      4 Answers
      4






      active

      oldest

      votes








      4 Answers
      4






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      4














      Yes, This is the problem with windows. Windows uses "" as separator, the array "directories" contains entries with "/" as separator, so the check will always fail.
      So you need to fix this by replacing the separator in core file:



      MagentoFrameworkViewElementTemplateFileValidator


      function isPathInDirectories replace below code in isPathInDirectories function



      $realPath = str_replace('\', '/', $this->fileDriver->getRealPath($path));





      share|improve this answer


























        4














        Yes, This is the problem with windows. Windows uses "" as separator, the array "directories" contains entries with "/" as separator, so the check will always fail.
        So you need to fix this by replacing the separator in core file:



        MagentoFrameworkViewElementTemplateFileValidator


        function isPathInDirectories replace below code in isPathInDirectories function



        $realPath = str_replace('\', '/', $this->fileDriver->getRealPath($path));





        share|improve this answer
























          4












          4








          4






          Yes, This is the problem with windows. Windows uses "" as separator, the array "directories" contains entries with "/" as separator, so the check will always fail.
          So you need to fix this by replacing the separator in core file:



          MagentoFrameworkViewElementTemplateFileValidator


          function isPathInDirectories replace below code in isPathInDirectories function



          $realPath = str_replace('\', '/', $this->fileDriver->getRealPath($path));





          share|improve this answer












          Yes, This is the problem with windows. Windows uses "" as separator, the array "directories" contains entries with "/" as separator, so the check will always fail.
          So you need to fix this by replacing the separator in core file:



          MagentoFrameworkViewElementTemplateFileValidator


          function isPathInDirectories replace below code in isPathInDirectories function



          $realPath = str_replace('\', '/', $this->fileDriver->getRealPath($path));






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 30 '18 at 12:53









          Saurabh Dwivedi

          47726




          47726

























              3














              Magento 2.3 does not support windows.
              You can find my solution here:
              enter link description here






              share|improve this answer





















              • it makes no sense for it to not support windows but has such a simple "fix".
                – R T
                Dec 18 '18 at 8:40
















              3














              Magento 2.3 does not support windows.
              You can find my solution here:
              enter link description here






              share|improve this answer





















              • it makes no sense for it to not support windows but has such a simple "fix".
                – R T
                Dec 18 '18 at 8:40














              3












              3








              3






              Magento 2.3 does not support windows.
              You can find my solution here:
              enter link description here






              share|improve this answer












              Magento 2.3 does not support windows.
              You can find my solution here:
              enter link description here







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Nov 30 '18 at 12:26









              Vincent

              311




              311












              • it makes no sense for it to not support windows but has such a simple "fix".
                – R T
                Dec 18 '18 at 8:40


















              • it makes no sense for it to not support windows but has such a simple "fix".
                – R T
                Dec 18 '18 at 8:40
















              it makes no sense for it to not support windows but has such a simple "fix".
              – R T
              Dec 18 '18 at 8:40




              it makes no sense for it to not support windows but has such a simple "fix".
              – R T
              Dec 18 '18 at 8:40











              1














              It's the core issue of Magento 2.3.0. To fix this issue you have to change the code in the core file of Magento.



              Go to path
              /vendor/magento/framework/View/Element/Template/File/Validator.php In this file find




              $realPath = $this->fileDriver->getRealPath($path);




              Replace with




              $realPath = str_replace('', '/', $this->fileDriver->getRealPath($path));







              share|improve this answer





















              • The same answer posted by @Saurabh Dwivedi and also its accepted mate
                – MageLerner
                2 days ago
















              1














              It's the core issue of Magento 2.3.0. To fix this issue you have to change the code in the core file of Magento.



              Go to path
              /vendor/magento/framework/View/Element/Template/File/Validator.php In this file find




              $realPath = $this->fileDriver->getRealPath($path);




              Replace with




              $realPath = str_replace('', '/', $this->fileDriver->getRealPath($path));







              share|improve this answer





















              • The same answer posted by @Saurabh Dwivedi and also its accepted mate
                – MageLerner
                2 days ago














              1












              1








              1






              It's the core issue of Magento 2.3.0. To fix this issue you have to change the code in the core file of Magento.



              Go to path
              /vendor/magento/framework/View/Element/Template/File/Validator.php In this file find




              $realPath = $this->fileDriver->getRealPath($path);




              Replace with




              $realPath = str_replace('', '/', $this->fileDriver->getRealPath($path));







              share|improve this answer












              It's the core issue of Magento 2.3.0. To fix this issue you have to change the code in the core file of Magento.



              Go to path
              /vendor/magento/framework/View/Element/Template/File/Validator.php In this file find




              $realPath = $this->fileDriver->getRealPath($path);




              Replace with




              $realPath = str_replace('', '/', $this->fileDriver->getRealPath($path));








              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered 2 days ago









              Evince Development

              1,060318




              1,060318












              • The same answer posted by @Saurabh Dwivedi and also its accepted mate
                – MageLerner
                2 days ago


















              • The same answer posted by @Saurabh Dwivedi and also its accepted mate
                – MageLerner
                2 days ago
















              The same answer posted by @Saurabh Dwivedi and also its accepted mate
              – MageLerner
              2 days ago




              The same answer posted by @Saurabh Dwivedi and also its accepted mate
              – MageLerner
              2 days ago











              0














              It should be double slash i.e "\"



              $realPath = str_replace('\', '/', $this->fileDriver->getRealPath($path));






              share|improve this answer


























                0














                It should be double slash i.e "\"



                $realPath = str_replace('\', '/', $this->fileDriver->getRealPath($path));






                share|improve this answer
























                  0












                  0








                  0






                  It should be double slash i.e "\"



                  $realPath = str_replace('\', '/', $this->fileDriver->getRealPath($path));






                  share|improve this answer












                  It should be double slash i.e "\"



                  $realPath = str_replace('\', '/', $this->fileDriver->getRealPath($path));







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered yesterday









                  zuber bandi

                  443




                  443






























                      draft saved

                      draft discarded




















































                      Thanks for contributing an answer to Magento Stack Exchange!


                      • 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.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function () {
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f251924%2finvalid-template-file-magento2-3-0%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







                      Popular posts from this blog

                      An IMO inspired problem

                      Management

                      Has there ever been an instance of an active nuclear power plant within or near a war zone?