Admin Login form empty after upgrade to 1.9.4.2Checkout process not proceeding after 2 step in magento 1.9.4Magento 1.9 Admin Form

What is the difference between a historical drama and a period drama?

Is there a away to apply a CSS static resource to just the LWC?

What units are kpts?

How serious is plagiarism in a master’s thesis?

How can solar sailed ships be protected from space debris?

Does a multiclassed wizard start with a spellbook?

Does the Defensive Duelist feat stack with the AC calculation from the Warforged's Integrated Protection trait?

What do you call the angle of the direction of an airplane?

Two queries on triangles, the sides of which have rational lengths

Did Snape really give Umbridge a fake Veritaserum potion that Harry later pretended to drink?

Has there ever been a cold war other than between the U.S. and the U.S.S.R.?

How did שְׁלֹמֹה (shlomo) become Solomon?

What/Where usage English vs Japanese

About opening an LLC with little to report in the beginning

Should I warn my boss I might take sick leave

Can 4 Joy cons connect to the same Switch?

How many spells does my Bard 6/Wizard 1 know?

Data normalization before or after train-test split?

Do the 26 richest billionaires own as much wealth as the poorest 3.8 billion people?

What are the differences of checking a self-signed certificate vs ignore it?

How to travel between two stationary worlds in the least amount of time? (time dilation)

Contributing to a candidate as a Foreign National US Resident?

Taking advantage when the HR forgets to communicate the rules

How to calculate a conditional PDF in mathematica?



Admin Login form empty after upgrade to 1.9.4.2


Checkout process not proceeding after 2 step in magento 1.9.4Magento 1.9 Admin Form






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








2















After upgrading from 1.9.4.1 to 1.9.4.2, the login form for the backend is empty (No input tags for username or password). This is same after cache has been cleared. Does anyone have a solution?



enter image description here



The call to this->getFormKey(); appears to be causing the problem.



<input name="form_key" type="hidden" value="<?php echo $this->getFormKey() ?>" />









share|improve this question






























    2















    After upgrading from 1.9.4.1 to 1.9.4.2, the login form for the backend is empty (No input tags for username or password). This is same after cache has been cleared. Does anyone have a solution?



    enter image description here



    The call to this->getFormKey(); appears to be causing the problem.



    <input name="form_key" type="hidden" value="<?php echo $this->getFormKey() ?>" />









    share|improve this question


























      2












      2








      2








      After upgrading from 1.9.4.1 to 1.9.4.2, the login form for the backend is empty (No input tags for username or password). This is same after cache has been cleared. Does anyone have a solution?



      enter image description here



      The call to this->getFormKey(); appears to be causing the problem.



      <input name="form_key" type="hidden" value="<?php echo $this->getFormKey() ?>" />









      share|improve this question
















      After upgrading from 1.9.4.1 to 1.9.4.2, the login form for the backend is empty (No input tags for username or password). This is same after cache has been cleared. Does anyone have a solution?



      enter image description here



      The call to this->getFormKey(); appears to be causing the problem.



      <input name="form_key" type="hidden" value="<?php echo $this->getFormKey() ?>" />






      magento-1.9.4






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jun 25 at 20:48







      EL45

















      asked Jun 25 at 20:26









      EL45EL45

      1566 bronze badges




      1566 bronze badges




















          1 Answer
          1






          active

          oldest

          votes


















          3














          I ended up discovering the issue. At some point app/code/core/Mage/Core/functions.php was copied to app/code/local/Mage/Core/functions.php to fix a compatibility issue. Therefor after updating, I was missing a patch to functions.php which include defining random_int() for PHP versions less than 7. This method is used to generate the form key.






          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%2f279594%2fadmin-login-form-empty-after-upgrade-to-1-9-4-2%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









            3














            I ended up discovering the issue. At some point app/code/core/Mage/Core/functions.php was copied to app/code/local/Mage/Core/functions.php to fix a compatibility issue. Therefor after updating, I was missing a patch to functions.php which include defining random_int() for PHP versions less than 7. This method is used to generate the form key.






            share|improve this answer



























              3














              I ended up discovering the issue. At some point app/code/core/Mage/Core/functions.php was copied to app/code/local/Mage/Core/functions.php to fix a compatibility issue. Therefor after updating, I was missing a patch to functions.php which include defining random_int() for PHP versions less than 7. This method is used to generate the form key.






              share|improve this answer

























                3












                3








                3







                I ended up discovering the issue. At some point app/code/core/Mage/Core/functions.php was copied to app/code/local/Mage/Core/functions.php to fix a compatibility issue. Therefor after updating, I was missing a patch to functions.php which include defining random_int() for PHP versions less than 7. This method is used to generate the form key.






                share|improve this answer













                I ended up discovering the issue. At some point app/code/core/Mage/Core/functions.php was copied to app/code/local/Mage/Core/functions.php to fix a compatibility issue. Therefor after updating, I was missing a patch to functions.php which include defining random_int() for PHP versions less than 7. This method is used to generate the form key.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jun 25 at 21:07









                EL45EL45

                1566 bronze badges




                1566 bronze badges



























                    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.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f279594%2fadmin-login-form-empty-after-upgrade-to-1-9-4-2%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

                    Grendel Contents Story Scholarship Depictions Notes References Navigation menu10.1093/notesj/gjn112Berserkeree

                    Log in Navigation menu

                    Invalid response line returned from server: HTTP/2 401 | ErrorPlease Please Help With Error 500 Internal Server Error after upgrading from 1.7 to 1.9Unable to place new customer orders in admin backendMagento - For “Manage Categories” Forbidden You do not have permission to access this documentHTTP ERROR 500 when using require(_once) app/Mage.phpMemcached causing Web Setup Wizard ErrorCould not create an acl object: Invalid XMLAn error occurred on the server. Please try to place the order againInvalid response line returned from server: HTTP/2 200 - message after update to 2.1.7Magento-CE 2.3.0 installation error on XamppMagento 2.2.6- After Migration all default Payment Methods are not working fine