@ Ian Emu-UK
Which PHP Version do you have ? < 3.23 ?
The Show Table syntax is working from V 3.23 and higher:
SHOW TABLE STATUS [FROM db_name] [LIKE 'pattern']
You can also have a look at
http://dev.mysql.com/doc/mysql/en/SH...LE_STATUS.html to read the documentation of MySQL
@ iceman-x
You are right ! There was again a table prefix missing in the install script "install_statistik_english.php"
Search for:
Code:
INSERT INTO statistik_einstellungen VALUES (0, 900, '', 10, 10, 10, 5, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10)
and replace it with:
Code:
INSERT INTO " . TABLE_PREFIX . "statistik_einstellungen VALUES (0, 900, '', 10, 10, 10, 5, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10)
or just download the updated zip file 3 posts before