Try the Demo

Magento Forum

   
User can’t login / can’t reach the login index page? 
 
Meez
Member
 
Total Posts:  48
Joined:  2010-05-31
 

When you try to login as a user you get an error page (error log see attachment). What do i have to do?

http://whatsupbaby.com.testbyte.nl/customer/account/

Thanks a lot.

File Attachments
184768339.txt  (File Size: 7KB - Downloads: 50)
 
Magento Community Magento Community
Magento Community
Magento Community
 
tzyganu
Mentor
 
Avatar
Total Posts:  2168
Joined:  2009-11-18
Bucharest, Romania
 

You are missing a table: ‘sales_order_status_label.
I don’t know what can be the reason.
Here is the sql to create it:

CREATE TABLE `sales_order_status_label` (                                                                                                                                           
                            `
statusvarchar(32NOT NULL COMMENT 'Status',                                                                                                                                   
                            `
store_idsmallint(5unsigned NOT NULL COMMENT 'Store Id',                                                                                                                      
                            `
labelvarchar(128NOT NULL COMMENT 'Label',                                                                                                                                    
                            
PRIMARY KEY  (`status`,`store_id`),                                                                                                                                               
                            
KEY `IDX_SALES_ORDER_STATUS_LABEL_STORE_ID` (`store_id`),                                                                                                                         
                            
CONSTRAINT `FK_SALES_ORDER_STATUS_LABEL_STATUS_SALES_ORDER_STATUS_STATUSFOREIGN KEY (`status`) REFERENCES `sales_order_status` (`status`) ON DELETE CASCADE ON UPDATE CASCADE,  
                            
CONSTRAINT `FK_SALES_ORDER_STATUS_LABEL_STORE_ID_CORE_STORE_STORE_IDFOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE           
                          
ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Status Label Table'
Run this and try again.
If you are missing this there is a change you are missing others.

Marius.

 Signature 

http://marius-strajeru.blogspot.com/
Check out the Ultimate Module Creator:
on magento connect
on github

 
Magento Community Magento Community
Magento Community
Magento Community
 
Meez
Member
 
Total Posts:  48
Joined:  2010-05-31
 

That was it thanks a lot!

 
Magento Community Magento Community
Magento Community
Magento Community
Magento Community
Magento Community
    Back to top