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

                    Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

                    Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

                    Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form