Magento 1.9: Massive set customer confirmation attribute Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Customer Shipment Confirmation email not being sentHow to import not confirmed customers via CSV import?How to edit customer account confirmation link in emailMagento customer collection with confirmed usersCustomer login not working after exporting customer from one magento and importing to anothercustomer massive importMagento 2: Set Customer Account Confirmation StatusProblem with the customer groups after importing the magento csv customer dataSource Model not set when adding customer attribute - Magento 2.2.1Assign all the Order to related Customers on database

How to know if one is suitable for pursuing academia or Research work their entire life?

Like totally amazing interchangeable sister outfit accessory swapping or whatever

Using a map function on a 'Map' to change values

Has a Nobel Peace laureate ever been accused of war crimes?

PIC mathematical operations weird problem

Married in secret, can marital status in passport be changed at a later date?

How long can a nation maintain a technological edge over the rest of the world?

Book with legacy programming code on a space ship that the main character hacks to escape

What to do with someone that cheated their way though university and a PhD program?

What's parked in Mil Moscow helicopter plant?

Raising a bilingual kid. When should we introduce the majority language?

Why isn't everyone flabbergasted about Bran's "gift"?

Where to find documentation for `whois` command options?

"Whatever a Russian does, they end up making the Kalashnikov gun"? Are there any similar proverbs in English?

Help in K.331 Andante Grazioso

Philosophers who were composers?

Function on the set of limit countable ordinals

What's the difference between using dependency injection with a container and using a service locator?

What do you call an IPA symbol that lacks a name (e.g. ɲ)?

How can I wire a 9-position switch so that each position turns on one more LED than the one before?

What was Apollo 13's "Little Jolt" after MECO?

Will I lose my paid in full property

"Working on a knee"

Arriving in Atlanta after US Preclearance in Dublin. Will I go through TSA security in Atlanta to transfer to a connecting flight?



Magento 1.9: Massive set customer confirmation attribute



Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?Customer Shipment Confirmation email not being sentHow to import not confirmed customers via CSV import?How to edit customer account confirmation link in emailMagento customer collection with confirmed usersCustomer login not working after exporting customer from one magento and importing to anothercustomer massive importMagento 2: Set Customer Account Confirmation StatusProblem with the customer groups after importing the magento csv customer dataSource Model not set when adding customer attribute - Magento 2.2.1Assign all the Order to related Customers on database



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








1















I imported over 3000 customers in magento, I need to set them all as confirmed. How can I do?










share|improve this question




























    1















    I imported over 3000 customers in magento, I need to set them all as confirmed. How can I do?










    share|improve this question
























      1












      1








      1








      I imported over 3000 customers in magento, I need to set them all as confirmed. How can I do?










      share|improve this question














      I imported over 3000 customers in magento, I need to set them all as confirmed. How can I do?







      magento-1.9 database customer import confirmation






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 20 at 16:35









      AlessioAlessio

      376




      376




















          1 Answer
          1






          active

          oldest

          votes


















          1














          Basically you just have to remove the value of the attribute confirmation for each of this customer. If a customer has a confirmation attribute value set that means that confirmation is required. Without that value a customer is considered confirmed.



          You can do that either with the following code for a given $id (for example you can loop through all ids if you now them):



          $customer = Mage::getModel('customer/customer')->load($id);
          $customer->setConfirmation(null);
          $customer->save();


          or by running a SQL statement



          delete from customer_entity_varchar 
          where attribute_id = (
          select attribute_id from eav_attribute
          where entity_type_id = 1 and attribute_code = 'confirmation'
          )
          and entity_id = [YOUR CUSTOMER ID TO CONFIRM];


          If you now the ids of the customer you can specify the range in SQL and delete all (I assume all imported ids are coherently):



          delete from customer_entity_varchar 
          where attribute_id = (
          select attribute_id from eav_attribute
          where entity_type_id = 1 and attribute_code = 'confirmation'
          )
          and entity_id >= [YOUR SMALLEST CUSTOMER ID TO CONFIRM]
          and entity_id <= [YOUR LARGEST CUSTOMER ID TO CONFIRM];





          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%2f266738%2fmagento-1-9-massive-set-customer-confirmation-attribute%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









            1














            Basically you just have to remove the value of the attribute confirmation for each of this customer. If a customer has a confirmation attribute value set that means that confirmation is required. Without that value a customer is considered confirmed.



            You can do that either with the following code for a given $id (for example you can loop through all ids if you now them):



            $customer = Mage::getModel('customer/customer')->load($id);
            $customer->setConfirmation(null);
            $customer->save();


            or by running a SQL statement



            delete from customer_entity_varchar 
            where attribute_id = (
            select attribute_id from eav_attribute
            where entity_type_id = 1 and attribute_code = 'confirmation'
            )
            and entity_id = [YOUR CUSTOMER ID TO CONFIRM];


            If you now the ids of the customer you can specify the range in SQL and delete all (I assume all imported ids are coherently):



            delete from customer_entity_varchar 
            where attribute_id = (
            select attribute_id from eav_attribute
            where entity_type_id = 1 and attribute_code = 'confirmation'
            )
            and entity_id >= [YOUR SMALLEST CUSTOMER ID TO CONFIRM]
            and entity_id <= [YOUR LARGEST CUSTOMER ID TO CONFIRM];





            share|improve this answer





























              1














              Basically you just have to remove the value of the attribute confirmation for each of this customer. If a customer has a confirmation attribute value set that means that confirmation is required. Without that value a customer is considered confirmed.



              You can do that either with the following code for a given $id (for example you can loop through all ids if you now them):



              $customer = Mage::getModel('customer/customer')->load($id);
              $customer->setConfirmation(null);
              $customer->save();


              or by running a SQL statement



              delete from customer_entity_varchar 
              where attribute_id = (
              select attribute_id from eav_attribute
              where entity_type_id = 1 and attribute_code = 'confirmation'
              )
              and entity_id = [YOUR CUSTOMER ID TO CONFIRM];


              If you now the ids of the customer you can specify the range in SQL and delete all (I assume all imported ids are coherently):



              delete from customer_entity_varchar 
              where attribute_id = (
              select attribute_id from eav_attribute
              where entity_type_id = 1 and attribute_code = 'confirmation'
              )
              and entity_id >= [YOUR SMALLEST CUSTOMER ID TO CONFIRM]
              and entity_id <= [YOUR LARGEST CUSTOMER ID TO CONFIRM];





              share|improve this answer



























                1












                1








                1







                Basically you just have to remove the value of the attribute confirmation for each of this customer. If a customer has a confirmation attribute value set that means that confirmation is required. Without that value a customer is considered confirmed.



                You can do that either with the following code for a given $id (for example you can loop through all ids if you now them):



                $customer = Mage::getModel('customer/customer')->load($id);
                $customer->setConfirmation(null);
                $customer->save();


                or by running a SQL statement



                delete from customer_entity_varchar 
                where attribute_id = (
                select attribute_id from eav_attribute
                where entity_type_id = 1 and attribute_code = 'confirmation'
                )
                and entity_id = [YOUR CUSTOMER ID TO CONFIRM];


                If you now the ids of the customer you can specify the range in SQL and delete all (I assume all imported ids are coherently):



                delete from customer_entity_varchar 
                where attribute_id = (
                select attribute_id from eav_attribute
                where entity_type_id = 1 and attribute_code = 'confirmation'
                )
                and entity_id >= [YOUR SMALLEST CUSTOMER ID TO CONFIRM]
                and entity_id <= [YOUR LARGEST CUSTOMER ID TO CONFIRM];





                share|improve this answer















                Basically you just have to remove the value of the attribute confirmation for each of this customer. If a customer has a confirmation attribute value set that means that confirmation is required. Without that value a customer is considered confirmed.



                You can do that either with the following code for a given $id (for example you can loop through all ids if you now them):



                $customer = Mage::getModel('customer/customer')->load($id);
                $customer->setConfirmation(null);
                $customer->save();


                or by running a SQL statement



                delete from customer_entity_varchar 
                where attribute_id = (
                select attribute_id from eav_attribute
                where entity_type_id = 1 and attribute_code = 'confirmation'
                )
                and entity_id = [YOUR CUSTOMER ID TO CONFIRM];


                If you now the ids of the customer you can specify the range in SQL and delete all (I assume all imported ids are coherently):



                delete from customer_entity_varchar 
                where attribute_id = (
                select attribute_id from eav_attribute
                where entity_type_id = 1 and attribute_code = 'confirmation'
                )
                and entity_id >= [YOUR SMALLEST CUSTOMER ID TO CONFIRM]
                and entity_id <= [YOUR LARGEST CUSTOMER ID TO CONFIRM];






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Mar 20 at 18:07

























                answered Mar 20 at 17:09









                HelgeBHelgeB

                3,4481423




                3,4481423



























                    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%2f266738%2fmagento-1-9-massive-set-customer-confirmation-attribute%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

                    Identifying “long and narrow” polygons in with PostGISlength and width of polygonWhy postgis st_overlaps reports Qgis' “avoid intersections” generated polygon as overlapping with others?Adjusting polygons to boundary and filling holesDrawing polygons with fixed area?How to remove spikes in Polygons with PostGISDeleting sliver polygons after difference operation in QGIS?Snapping boundaries in PostGISSplit polygon into parts adding attributes based on underlying polygon in QGISSplitting overlap between polygons and assign to nearest polygon using PostGIS?Expanding polygons and clipping at midpoint?Removing Intersection of Buffers in Same Layers

                    Masuk log Menu navigasi

                    อาณาจักร (ชีววิทยา) ดูเพิ่ม อ้างอิง รายการเลือกการนำทาง10.1086/39456810.5962/bhl.title.447410.1126/science.163.3863.150576276010.1007/BF01796092408502"Phylogenetic structure of the prokaryotic domain: the primary kingdoms"10.1073/pnas.74.11.5088432104270744"Towards a natural system of organisms: proposal for the domains Archaea, Bacteria, and Eucarya"1990PNAS...87.4576W10.1073/pnas.87.12.4576541592112744PubMedJump the queueexpand by handPubMedJump the queueexpand by handPubMedJump the queueexpand by hand"A revised six-kingdom system of life"10.1111/j.1469-185X.1998.tb00030.x9809012"Only six kingdoms of life"10.1098/rspb.2004.2705169172415306349"Kingdoms Protozoa and Chromista and the eozoan root of the eukaryotic tree"10.1098/rsbl.2009.0948288006020031978เพิ่มข้อมูล