*This is an updated Readme File Only*

I was getting a Tep Database error because the Sql file when imported makes a table called - TABLE_CATEGORIES_MORE

The problem is the database_tables.php readme code in the Readme file, is shown as
define('TABLE_CATEGORIES_MORE', 'categories_more');

But it needs to be this code to fix the error

define('TABLE_CATEGORIES_MORE', 'TABLE_CATEGORIES_MORE');

This is for Both Database_tables.php files in the Admin/include and include/ directories.

More...