Can't add items to cart in Magento 1.7












0















I'm working on migrating my site over to a new server and everything is up and running, except when I go to add an item into stock it doesn't work.




I am not getting a Magento error nor is it showing an error in my
error log. There is also no errors in console when I inspect the page.
I have tried clearing my cache, and this error exists on different
browsers. Where should I look next to get this fixed?




Edit: there are no db that I can see, and the items are in stock










share|improve this question





























    0















    I'm working on migrating my site over to a new server and everything is up and running, except when I go to add an item into stock it doesn't work.




    I am not getting a Magento error nor is it showing an error in my
    error log. There is also no errors in console when I inspect the page.
    I have tried clearing my cache, and this error exists on different
    browsers. Where should I look next to get this fixed?




    Edit: there are no db that I can see, and the items are in stock










    share|improve this question



























      0












      0








      0








      I'm working on migrating my site over to a new server and everything is up and running, except when I go to add an item into stock it doesn't work.




      I am not getting a Magento error nor is it showing an error in my
      error log. There is also no errors in console when I inspect the page.
      I have tried clearing my cache, and this error exists on different
      browsers. Where should I look next to get this fixed?




      Edit: there are no db that I can see, and the items are in stock










      share|improve this question
















      I'm working on migrating my site over to a new server and everything is up and running, except when I go to add an item into stock it doesn't work.




      I am not getting a Magento error nor is it showing an error in my
      error log. There is also no errors in console when I inspect the page.
      I have tried clearing my cache, and this error exists on different
      browsers. Where should I look next to get this fixed?




      Edit: there are no db that I can see, and the items are in stock







      magento-1.7 addtocart






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 3 mins ago









      Muhammad Hasham

      15510




      15510










      asked 11 hours ago









      Morgan SmithMorgan Smith

      85




      85






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Potentially 2 things.



          First possibility:



          The current configuration has different cookie path/domain, so your user session is never maintained - which results into an empty cart even right after adding an item.



          You can check/verify this by using Chrome DevTools, navigating to "Application" tab and then Cookies in the left menu. Find one that has the name "frontend" and verify that the "Domain" and "Path" columns for that are correct.



          If not - this can be fixed in System configuration: Web -> Session Cookie Management-> Cookie Path / Cookie Domain or by making edits directly in the database within core_config_data table.



          Second possibility:



          It is likely that your 1.7 has had patches installed which makes it so form_keys are required for forms to accept your post data.



          To verify this go to the product page in front-end and check the page source and verify that you have a form_key input within your add to cart form. The input field should look like this:.



          <input name="form_key" type="hidden" value="......." />


          If you can not find this make sure you add it into your add to cart form via XML layout or directly into phtml by adding:



          <input name="form_key" type="hidden" value="<?php echo Mage::getSingleton('core/session')->getFormKey() ?>" />





          share|improve this answer








          New contributor




          Lukas J. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.




















            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%2f259880%2fcant-add-items-to-cart-in-magento-1-7%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














            Potentially 2 things.



            First possibility:



            The current configuration has different cookie path/domain, so your user session is never maintained - which results into an empty cart even right after adding an item.



            You can check/verify this by using Chrome DevTools, navigating to "Application" tab and then Cookies in the left menu. Find one that has the name "frontend" and verify that the "Domain" and "Path" columns for that are correct.



            If not - this can be fixed in System configuration: Web -> Session Cookie Management-> Cookie Path / Cookie Domain or by making edits directly in the database within core_config_data table.



            Second possibility:



            It is likely that your 1.7 has had patches installed which makes it so form_keys are required for forms to accept your post data.



            To verify this go to the product page in front-end and check the page source and verify that you have a form_key input within your add to cart form. The input field should look like this:.



            <input name="form_key" type="hidden" value="......." />


            If you can not find this make sure you add it into your add to cart form via XML layout or directly into phtml by adding:



            <input name="form_key" type="hidden" value="<?php echo Mage::getSingleton('core/session')->getFormKey() ?>" />





            share|improve this answer








            New contributor




            Lukas J. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.

























              0














              Potentially 2 things.



              First possibility:



              The current configuration has different cookie path/domain, so your user session is never maintained - which results into an empty cart even right after adding an item.



              You can check/verify this by using Chrome DevTools, navigating to "Application" tab and then Cookies in the left menu. Find one that has the name "frontend" and verify that the "Domain" and "Path" columns for that are correct.



              If not - this can be fixed in System configuration: Web -> Session Cookie Management-> Cookie Path / Cookie Domain or by making edits directly in the database within core_config_data table.



              Second possibility:



              It is likely that your 1.7 has had patches installed which makes it so form_keys are required for forms to accept your post data.



              To verify this go to the product page in front-end and check the page source and verify that you have a form_key input within your add to cart form. The input field should look like this:.



              <input name="form_key" type="hidden" value="......." />


              If you can not find this make sure you add it into your add to cart form via XML layout or directly into phtml by adding:



              <input name="form_key" type="hidden" value="<?php echo Mage::getSingleton('core/session')->getFormKey() ?>" />





              share|improve this answer








              New contributor




              Lukas J. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
              Check out our Code of Conduct.























                0












                0








                0







                Potentially 2 things.



                First possibility:



                The current configuration has different cookie path/domain, so your user session is never maintained - which results into an empty cart even right after adding an item.



                You can check/verify this by using Chrome DevTools, navigating to "Application" tab and then Cookies in the left menu. Find one that has the name "frontend" and verify that the "Domain" and "Path" columns for that are correct.



                If not - this can be fixed in System configuration: Web -> Session Cookie Management-> Cookie Path / Cookie Domain or by making edits directly in the database within core_config_data table.



                Second possibility:



                It is likely that your 1.7 has had patches installed which makes it so form_keys are required for forms to accept your post data.



                To verify this go to the product page in front-end and check the page source and verify that you have a form_key input within your add to cart form. The input field should look like this:.



                <input name="form_key" type="hidden" value="......." />


                If you can not find this make sure you add it into your add to cart form via XML layout or directly into phtml by adding:



                <input name="form_key" type="hidden" value="<?php echo Mage::getSingleton('core/session')->getFormKey() ?>" />





                share|improve this answer








                New contributor




                Lukas J. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.










                Potentially 2 things.



                First possibility:



                The current configuration has different cookie path/domain, so your user session is never maintained - which results into an empty cart even right after adding an item.



                You can check/verify this by using Chrome DevTools, navigating to "Application" tab and then Cookies in the left menu. Find one that has the name "frontend" and verify that the "Domain" and "Path" columns for that are correct.



                If not - this can be fixed in System configuration: Web -> Session Cookie Management-> Cookie Path / Cookie Domain or by making edits directly in the database within core_config_data table.



                Second possibility:



                It is likely that your 1.7 has had patches installed which makes it so form_keys are required for forms to accept your post data.



                To verify this go to the product page in front-end and check the page source and verify that you have a form_key input within your add to cart form. The input field should look like this:.



                <input name="form_key" type="hidden" value="......." />


                If you can not find this make sure you add it into your add to cart form via XML layout or directly into phtml by adding:



                <input name="form_key" type="hidden" value="<?php echo Mage::getSingleton('core/session')->getFormKey() ?>" />






                share|improve this answer








                New contributor




                Lukas J. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.









                share|improve this answer



                share|improve this answer






                New contributor




                Lukas J. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.









                answered 9 hours ago









                Lukas J.Lukas J.

                262




                262




                New contributor




                Lukas J. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.





                New contributor





                Lukas J. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.






                Lukas J. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.






























                    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%2f259880%2fcant-add-items-to-cart-in-magento-1-7%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

                    Polycentropodidae

                    Magento 2 Error message: Invalid state change requested

                    Paulmy