Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

later days ago some clients of my online store complain me that theys can“t login in yours account section. Later many hour looking in Google I can find the generic problem.

In this link for example:

http://www.magentocommerce.com/answers/discussion/900/Customers-cant-login-some-hours-after-register/p1

In some pages say me solve the issue:

  1. Go to backend
  2. search the customer
  3. click in save customer since customer page witouth any change of customer dates.

nice, this solve my problem, however this is an solution per a particular customer.

The error in error.log is:

 [error] [client x.x.x.x] PHP Fatal error:  Allowed memory size of 201326592 bytes exhausted (tried to allocate 84 bytes) in /var/www/domain/lib/Zend/Db/Statement/Pdo.php on line 290, referer: http://www.domain.com/customer/account/login/

I think this is a problem of maintenance of Database, then when you click in save customer Magento run some SQL to restart autoincrements of tables, and work fine.

I my progress to gain the inception of the error, I try find diferences between sql before/aftre then.

  1. create copy of the database with mysqldump
  2. add to git
  3. solve the problem, with the above method
  4. create another copy of the database with mysqldump( I sure thata no new clients in this period between copies).
  5. view the diferences with git

I can see very diferences with the AUTOINCREMENTS:

   /*!40000 ALTER TABLE `core_session` ENABLE KEYS */;
@@ -5592,3 +5592,3 @@ CREATE TABLE `cron_schedule` (
   KEY `scheduled_at` (`scheduled_at`,`status`)
-) ENGINE=InnoDB AUTO_INCREMENT=192949 DEFAULT CHARSET=utf8;
+) ENGINE=InnoDB AUTO_INCREMENT=192955 DEFAULT CHARSET=utf8;<br /><br />   /*!40000 ALTER TABLE `customer_address_entity` ENABLE KEYS */;
@@ -5796,3 +5796,3 @@ CREATE TABLE `customer_address_entity_varchar` (
   CONSTRAINT `FK_CUSTOMER_ADDRESS_VARCHAR_ENTITY_TYPE` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE
-) ENGINE=InnoDB AUTO_INCREMENT=44118 DEFAULT CHARSET=utf8;
+) ENGINE=InnoDB AUTO_INCREMENT=44121 DEFAULT CHARSET=utf8;<br /><br /> /*!40000 ALTER TABLE `customer_entity` ENABLE KEYS */;
@@ -6001,3 +6001,3 @@ CREATE TABLE `customer_entity_int` (
   CONSTRAINT `FK_CUSTOMER_INT_ENTITY_TYPE` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE
-) ENGINE=InnoDB AUTO_INCREMENT=12841 DEFAULT CHARSET=utf8;
+) ENGINE=InnoDB AUTO_INCREMENT=12843 DEFAULT CHARSET=utf8;<br /><br />@@ -6069,3 +6069,3 @@ CREATE TABLE `customer_entity_varchar` (
   CONSTRAINT `FK_CUSTOMER_VARCHAR_ENTITY_TYPE` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE
-) ENGINE=InnoDB AUTO_INCREMENT=44866 DEFAULT CHARSET=utf8;
+) ENGINE=InnoDB AUTO_INCREMENT=44870 DEFAULT CHARSET=utf8;<br /><br /> 

how I can solve this general problem with Magento?, How I can Manitenance the DB to customer login succesful in my store?.

My Magento version 1.5.1.0

Many thanks, I think this is a important problem. Is very interesting the solution for the community

share|improve this question

1 Answer

up vote 1 down vote accepted

From http://www.magentocommerce.com/system-requirements

Memory_limit no less than 256Mb (preferably 512)

share|improve this answer
I´ll try this. Thanks – davidselo Jun 11 '12 at 10:32
but I don´t understand why the problem solve when save since backend or clean the cookies. – davidselo Jun 11 '12 at 10:41
2  
The problem is that customer data array when they log in is filling the memory limit of your server thus causing your issues, by increasing your memory limit to the Magento recommendations, you can avoid this issue. This was a server side issue and had nothing to do with Magento itself, just the data that is was attempting to load. – Vern Burton Jun 11 '12 at 15:54
I increment Memory_limit, this solve in part the problem,however this occurs less times, but this occurs. Like I to understand why this error occurs?? Is a huge quantity of memory :( – davidselo Jun 25 '12 at 10:10
you have to debug it with profiler to see where your site leaks memory on this. – Anton S Jun 25 '12 at 10:46
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.