Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

urgent! cannot login to admin after upgrade to php5.3.2


Guest

Recommended Posts

Posted

When trying to login to the admin after a server upgrade to php5.3.2 I get this error:

 

Error: The maximum number of login attempts has been reached. Please try again in 5 minutes.

 

Brute force is turned off on the server so this shouldn't be the problem. I have emptied the sessions table also plus created a new administrator and still get the error.

 

I am using the version from github for ms2 fixes for ereg value.

 

Need help ... client and myself are locked out of the admin.

Posted

I am using the version from github for ms2 fixes for ereg value.

Yes, but that also added a new feature: action recorder with a new table:

 

CREATE TABLE action_recorder (
 id int NOT NULL auto_increment,
 module varchar(255) NOT NULL,
 user_id int,
 user_name varchar(255),
 identifier varchar(255) NOT NULL,
 success char(1),
 date_added datetime NOT NULL,
 PRIMARY KEY (id),
 KEY idx_action_recorder_module (module),
 KEY idx_action_recorder_user_id (user_id),
 KEY idx_action_recorder_identifier (identifier),
 KEY idx_action_recorder_date_added (date_added)
);

Likely you would need to add more code for the new feature.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...