Username or Email
Password:
Forgot Password
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.
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` ( `status` varchar(32) NOT NULL COMMENT 'Status', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store Id', `label` varchar(128) NOT 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_STATUS` FOREIGN KEY (`status`) REFERENCES `sales_order_status` (`status`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_SALES_ORDER_STATUS_LABEL_STORE_ID_CORE_STORE_STORE_ID` FOREIGN 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'
Marius.
http://marius-strajeru.blogspot.com/ Check out the Ultimate Module Creator: on magento connect on github
That was it thanks a lot!