
Code: Select all
Warning: main(././includes/functions_mods_settings.php): failed to open stream: No such file or directory in /var/www/virtual/tiptip.co.il/crazy-board/crb/includes/mods_settings/mod_profile_control_panel.php on line 28
Warning: main(): Failed opening '././includes/functions_mods_settings.php' for inclusion (include_path='.:') in /var/www/virtual/tiptip.co.il/crazy-board/crb/includes/mods_settings/mod_profile_control_panel.php on line 28
Fatal error: Call to undefined function: init_board_config() in /var/www/virtual/tiptip.co.il/crazy-board/crb/includes/mods_settings/mod_profile_control_panel.php on line 105
Code: Select all
$sql = "UPDATE " . RANKS_TABLE . "
SET rank_max = " . $ranks[$i]['rank_max'] . "
WHERE rank_id = " . $ranks[$i]['rank_id'];
if ( !$db->sql_query($sql) )
{
message_die(GENERAL_ERROR, 'Could not update ranks informations', '', __LINE__, __FILE__, $sql);
}
}
The_Butler_1999 wrote: ok after installing this user CP Mod I must say its awesome! .. however I am running into one main issue .. here is the error that I am getting when I click on the buddy list link in the CP ...
I am running PHPBB 2.0.6 ..
Code: Select all
ALTER TABLE phpbb_ranks CHANGE rank_title rank_title VARCHAR(255) NOT NULL;
ALTER TABLE phpbb_ranks ADD rank_max MEDIUMINT(8) NOT NULL AFTER rank_min;
zenpig wrote: hey Butler,
did you run the .sql for the install? To me, it looks like the error is due to not updating your database to include the added tables/fields.
beardeddone wrote: Did you run Code:
ALTER TABLE phpbb_ranks CHANGE rank_title rank_title VARCHAR(255) NOT NULL;
ALTER TABLE phpbb_ranks ADD rank_max MEDIUMINT(8) NOT NULL AFTER rank_min;
By chance