John,
I had v1.3 installed. I ran the uninstaller, and removed the file changes manually. When trying to run the installer for 3.0, I'm getting the following:
Parse error: parse error, unexpected T_STRING in /home/mydomain/public_html/forums/admincp/install_warn.php on line 285
edited to add:
I think I fixed it:
I found this in the install_warn.php file:
Quote:
$DB_site->query("
INSERT INTO `".TABLE_PREFIX."phrase` (languageid, varname, text, phrasetypeid) VALUES (0, 'warning_nremoved', 'The selected warning was not totally removed.', 9000)");
INSERT INTO `".TABLE_PREFIX."phrase` (languageid, varname, text, phrasetypeid) VALUES (0, 'warning_banliftcancelled', 'Unban User Cancelled.', 9000)");
|
and changed it to this:
Quote:
$DB_site->query("
INSERT INTO `".TABLE_PREFIX."phrase` (languageid, varname, text, phrasetypeid) VALUES (0, 'warning_nremoved', 'The selected warning was not totally removed.', 9000)");
$DB_site->query("
INSERT INTO `".TABLE_PREFIX."phrase` (languageid, varname, text, phrasetypeid) VALUES (0, 'warning_banliftcancelled', 'Unban User Cancelled.', 9000)");
|
It looks like the $DB_site->query(" was missing. After making that change, the install_warn.php completed successfully. Just have to do the file/template edits now.