Unless Ron1n has updated the install file, find in downinstall.php, look for all instances (about 18) of -
" . TABLE_PREFIX . "" . TABLE_PREFIX . "
and delete one " . TABLE_PREFIX . " for each instance.
Be careful not to delete the quotes (") at the beginning and end.
A typical new line should look like this when done:
PHP Code:
$DB_site->query("CREATE TABLE `" . TABLE_PREFIX . "file_cats` etc-----
Instead of this:
PHP Code:
$DB_site->query("CREATE TABLE `" . TABLE_PREFIX . "" . TABLE_PREFIX . "file_cats` etc-----
They're doubled up.
John