This is from PunBB 1.1.5 install.php
case 'mysql':
$sql = 'CREATE TABLE '.$db_prefix."search_results (
id INT(10) UNSIGNED NOT NULL DEFAULT '0',
ident VARCHAR(200) NOT NULL DEFAULT '',
search_data TEXT NOT NULL,
PRIMARY KEY (id)
) TYPE=MyISAM;";
break;
I cannot figure out where the
$db->query('ALTER TABLE '.$db->prefix.'search_cache DROP INDEX '.$db_prefix.'search_results_ident_idx') or error('Unable to alter DB structure.', __FILE__, __LINE__, $db->error());
is coming from in the upgrade php file, and is stopping the upgrade in its tracks.
PLEASE, somebody help me to resolve these issues. Thank you.