PROBLEM: THE ADMINISTRATOR LOGIN SCREEN IS BLOCKED

All works fine in localhost but when I transfer the files to my server by FTP, the Administrator Login Screen is blocked.

FIX:

In the files:

/catalog/admin/includes/database_tables.php
/catalog/includes/database_tables.php

Insert a space before 'products_attributes_sets_elements'.

BEFORE:

define('TABLE_PRODUCTS_ATTRIBUTES_SETS_ELEMENTS',' products_attributes_sets_elements');

AFTER:

define('TABLE_PRODUCTS_ATTRIBUTES_SETS_ELEMENTS', 'products_attributes_sets_elements');

------------------------------------------------------------------------------------

SunDust




More...