RobinAndersson wrote:Lefty, It's URL Rewriting that is the problem. You should write something about that people should disable URL Rewriting in their SEO mods temporarily to install this mod, on the same page that they can download it or something, and You'll probably save Yourself lots of headaches!
Drakken wrote:After doing the edits and uploads, i go to install/index.php and get the option to uninstall or upgrade. As far as i know, this is the first time I've ever installed this. No matter which option i choose its tells me MODS_DATABASE_TABLE doesn't exists, which of course it shouldn't. Any ideas?
Code: Select all
if (!isset($config['mod_show']) && !isset($config['moddb_version']))
{
$msg .= '<span style="color:red;">' . $user->lang['MODDB_INSTALL_DESC'] . '</span><br /><br />';
$msg .= '<a href="' . append_sid("{$phpbb_root_path}install/index.$phpEx", "action=install") . '">' . $user->lang['MODDB_NEW_INSTALL'] . '</a><br />';
}
Ok I have just installed this mod, also I was able to get to the main install screen where it had a insall button i click on it and then got an error messege what do I doGoBieN wrote:Drakken wrote:After doing the edits and uploads, i go to install/index.php and get the option to uninstall or upgrade. As far as i know, this is the first time I've ever installed this. No matter which option i choose its tells me MODS_DATABASE_TABLE doesn't exists, which of course it shouldn't. Any ideas?This is the relevant part of the install/index.php that decides to show the install link.Code: Select all
if (!isset($config['mod_show']) && !isset($config['moddb_version'])) { $msg .= '<span style="color:red;">' . $user->lang['MODDB_INSTALL_DESC'] . '</span><br /><br />'; $msg .= '<a href="' . append_sid("{$phpbb_root_path}install/index.$phpEx", "action=install") . '">' . $user->lang['MODDB_NEW_INSTALL'] . '</a><br />'; }
So it would seem that you have the mod_show or the moddb_version config parameters already on your system.
Perhaps another mod is already using these config parameters ?
Anyway, if you would like to proceed with the install, go to install/index.php?action=install and installation will start (forced). But maybe this will break the other mod that is already using the same config parameters. Always make DB & Files backup before installing a mod. so you can roll back !