Vv. wrote: Had several problems and I want to uninstall this update now, because I cannot have these problems while rebuilding my site.
Is uninstall-SQL needed?
Code: Select all
OPEN
login.php
FIND
// Only store a failed login attempt for an active user - inactive users can't login even with a correct password
elseif( $row['user_active'] )
{
// Save login tries and last login
if ($row['user_id'] != ANONYMOUS)
REPLACE WITH
else
{
// Save login tries and last login, but only store a failed login attempt for an
// active user - inactive users can't login even with a correct password
if ( $row['user_id'] != ANONYMOUS && $row['user_active'] )
Sl@va wrote: Hi.
It's me again.
after i done to update,in panel admin when i enter to "ranks"
i see this messege :::
where is the problem?Code: Select all
Template->loadfile(): No file specified for handle body
tnx.
Sl@va wrote:Sl@va wrote:Hi.
It's me again.
after i done to update,in panel admin when i enter to "ranks"
i see this messege :::
where is the problem?Code: Select all
Template->loadfile(): No file specified for handle body
tnx.
somebody?!
shadav wrote: ok i'm running into a problem...i think it's because of the Multi Quick BBCode ModI'm not able to find anything like that within profile.php i looked into bbcode.php thinking that it had been moved there but couldn't find anything like it there either (may have just over looked) please helpCode: Select all
#-----[ OPEN ]--------------------------------------------- # profile.php # #-----[ FIND ]--------------------------------------------- # Line 58 $chars = array( 'a', 'A', 'b', 'B', 'c', 'C', 'd', 'D', 'e', 'E', 'f', 'F', 'g', 'G', 'h', 'H', 'i', 'I', 'j', 'J', 'k', 'K', 'l', 'L', 'm', 'M', 'n', 'N', 'o', 'O', 'p', 'P', 'q', 'Q', 'r', 'R', 's', 'S', 't', 'T', 'u', 'U', 'v', 'V', 'w', 'W', 'x', 'X', 'y', 'Y', 'z', 'Z', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0'); $max_chars = count($chars) - 1; srand( (double) microtime()*1000000); $rand_str = ''; for($i = 0; $i < 8; $i++) { $rand_str = ( $i == 0 ) ? $chars[rand(0, $max_chars)] : $rand_str . $chars[rand(0, $max_chars)]; } return ( $hash ) ? md5($rand_str) : $rand_str; # #-----[ REPLACE WITH ]--------------------------------------------- # $rand_str = dss_rand(); return ( $hash ) ? md5($rand_str) : substr($rand_str, 8);
thanks
shadav wrote: ok i'm running into a problem...i think it's because of the Multi Quick BBCode ModI'm not able to find anything like that within profile.php i looked into bbcode.php thinking that it had been moved there but couldn't find anything like it there either (may have just over looked) please helpCode: Select all
#-----[ OPEN ]--------------------------------------------- # profile.php # #-----[ FIND ]--------------------------------------------- # Line 58 $chars = array( 'a', 'A', 'b', 'B', 'c', 'C', 'd', 'D', 'e', 'E', 'f', 'F', 'g', 'G', 'h', 'H', 'i', 'I', 'j', 'J', 'k', 'K', 'l', 'L', 'm', 'M', 'n', 'N', 'o', 'O', 'p', 'P', 'q', 'Q', 'r', 'R', 's', 'S', 't', 'T', 'u', 'U', 'v', 'V', 'w', 'W', 'x', 'X', 'y', 'Y', 'z', 'Z', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0'); $max_chars = count($chars) - 1; srand( (double) microtime()*1000000); $rand_str = ''; for($i = 0; $i < 8; $i++) { $rand_str = ( $i == 0 ) ? $chars[rand(0, $max_chars)] : $rand_str . $chars[rand(0, $max_chars)]; } return ( $hash ) ? md5($rand_str) : $rand_str; # #-----[ REPLACE WITH ]--------------------------------------------- # $rand_str = dss_rand(); return ( $hash ) ? md5($rand_str) : substr($rand_str, 8);
thanks
asinshesq wrote:Sl@va wrote:Sl@va wrote:Hi.
It's me again.
after i done to update,in panel admin when i enter to "ranks"
i see this messege :::
where is the problem?Code: Select all
Template->loadfile(): No file specified for handle body
tnx.
somebody?!
Are you sure you uploaded to your server the file confirm_body.tpl to the right folder (the template admin folder) in each of your templates? That means uploading it to the templates/subSilver/admin folder and to the folder called templates/[any other template you are running]/admin folder for each other template.
Code: Select all
//
// Show 'Board is disabled' message if needed.
//
if( $board_config['board_disable'] && !defined("IN_ADMIN") && !defined("IN_LOGIN") )
{
message_die(GENERAL_MESSAGE, 'Board_disable', 'Information');
}
Code: Select all
//
// Show 'Board is disabled' message if needed.
//
/*
if( $board_config['board_disable'] && !defined("IN_ADMIN") && !defined("IN_LOGIN") )
{
// message_die(GENERAL_MESSAGE, 'Board_disable', 'Information');
$message = $board_config['board_disable_text'] ? $board_config['board_disable_text'] : 'Board_disable';
message_die(GENERAL_MESSAGE, $message, $board_config['board_disable_caption']);
}
*/
asinshesq wrote:Sl@va wrote:Yes.
i upload this file to: templates/subSilver/admin/
and i still see this error.
And are you sure that you granted the right permissions to that file (using CHMOD...) so that your forum is allowed to use it?
Sl@va wrote: ...which permissions this file needed?
(i mean what number i need to write in CHMOD)
TNX.