phpBB 2.0.19

All updates to the site will be posted here.

Moderator: CricketMX Forum Moderators

Post Reply
User avatar
battye
Site Admin
Site Admin
Posts: 14391
Joined: Sun Jan 11, 2004 8:26 am
Location: Australia
Contact:

As usual CricketMX.com is up to date. If you run a phpBB forum, I strongly suggest updating to 2.0.19 as soon as possible. :)

phpBB 2.0.18 to phpBB 2.0.19 Code Changes



These are the Changes from phpBB 2.0.18 to phpBB 2.0.19 summed up into a little Mod. This might be very helpful if you want to update your Board and have installed a bunch of Mods. Then it's normally easier to apply the Code Changes than to install all Mods again.

When you find a 'AFTER, ADD'-Statement, the Code have to be added after the last line quoted in the 'FIND'-Statement.
When you find a 'BEFORE, ADD'-Statement, the Code have to be added before the first line quoted in the 'FIND'-Statement.
When you find a 'REPLACE WITH'-Statement, the Code quoted in the 'FIND'-Statement have to be replaced completely with the quoted Code in the 'REPLACE WITH'-Statement.

After you have finished this tutorial, you have to upload the install/update_to_latest.php file, execute it and then delete it from your webspace.

  • admin/admin_board.php
  1. FIND - Line 19

    Code: Select all

    
    	$module['General']['Configuration'] = "$file";
    
    REPLACE WITH

    Code: Select all

    
    	$module['General']['Configuration'] = $file;
    
  2. FIND - Line 194

    Code: Select all

    
    	"L_MAX_POLL_OPTIONS" => $lang['Max_poll_options'],
    	"L_FLOOD_INTERVAL" => $lang['Flood_Interval'],
    	"L_FLOOD_INTERVAL_EXPLAIN" => $lang['Flood_Interval_explain'], 
    
    AFTER, ADD

    Code: Select all

    
    
    	'L_MAX_LOGIN_ATTEMPTS'			=> $lang['Max_login_attempts'],
    	'L_MAX_LOGIN_ATTEMPTS_EXPLAIN'	=> $lang['Max_login_attempts_explain'],
    	'L_LOGIN_RESET_TIME'			=> $lang['Login_reset_time'],
    	'L_LOGIN_RESET_TIME_EXPLAIN'	=> $lang['Login_reset_time_explain'],
    	'MAX_LOGIN_ATTEMPTS'			=> $new['max_login_attempts'],
    	'LOGIN_RESET_TIME'				=> $new['login_reset_time'],
    
    
  • admin/admin_db_utilities.php
  1. FIND - Line 696

    Code: Select all

    
    			$tables = array('auth_access', 'banlist', 'categories', 'config', 'disallow', 'forums', 'forum_prune', 'groups', 'posts', 'posts_text', 'privmsgs', 'privmsgs_text', 'ranks', 'search_results', 'search_wordlist', 'search_wordmatch', 'sessions', 'smilies', 'themes', 'themes_name', 'topics', 'topics_watch', 'user_group', 'users', 'vote_desc', 'vote_results', 'vote_voters', 'words', 'confirm');
    
    REPLACE WITH

    Code: Select all

    
    			$tables = array('auth_access', 'banlist', 'categories', 'config', 'disallow', 'forums', 'forum_prune', 'groups', 'posts', 'posts_text', 'privmsgs', 'privmsgs_text', 'ranks', 'search_results', 'search_wordlist', 'search_wordmatch', 'sessions', 'smilies', 'themes', 'themes_name', 'topics', 'topics_watch', 'user_group', 'users', 'vote_desc', 'vote_results', 'vote_voters', 'words', 'confirm', 'sessions_keys');
    
  • admin/admin_disallow.php
  1. FIND - Line 28

    Code: Select all

    
    	$module['Users']['Disallow'] = append_sid($filename);
    
    REPLACE WITH

    Code: Select all

    
    	$module['Users']['Disallow'] = $filename;
    
  • admin/admin_ranks.php
  1. FIND - Line 27

    Code: Select all

    
    	$module['Users']['Ranks'] = "$file";
    
    REPLACE WITH

    Code: Select all

    
    	$module['Users']['Ranks'] = $file;
    
  • admin/admin_styles.php
  1. FIND - Line 30

    Code: Select all

    
    	$module['Styles']['Manage'] = "$file";
    
    REPLACE WITH

    Code: Select all

    
    	$module['Styles']['Manage'] = $file;
    
  • admin/admin_users.php
  1. FIND - Line 180

    Code: Select all

    
    				message_die(GENERAL_ERROR, 'Could not delete user from banlist table', '', __LINE__, __FILE__, $sql);
    			}
    
    
    AFTER, ADD

    Code: Select all

    
    			$sql = "DELETE FROM " . SESSIONS_TABLE . "
    				WHERE session_user_id = $user_id";
    			if ( !$db->sql_query($sql) )
    			{
    				message_die(GENERAL_ERROR, 'Could not delete sessions for this user', '', __LINE__, __FILE__, $sql);
    			}
    			
    			$sql = "DELETE FROM " . SESSIONS_KEYS_TABLE . "
    				WHERE user_id = $user_id";
    			if ( !$db->sql_query($sql) )
    			{
    				message_die(GENERAL_ERROR, 'Could not delete auto-login keys for this user', '', __LINE__, __FILE__, $sql);
    			}
    
    
  2. FIND - Line 234

    Code: Select all

    
    		$username = ( !empty($HTTP_POST_VARS['username']) ) ? trim(strip_tags(htmlspecialchars($HTTP_POST_VARS['username']))) : '';
    
    REPLACE WITH

    Code: Select all

    
    		$username = ( !empty($HTTP_POST_VARS['username']) ) ? phpbb_clean_username($HTTP_POST_VARS['username']) : '';
    
  3. FIND - Line 407

    Code: Select all

    
    				if( @file_exists(@phpbb_realpath("./" . $board_config['avatar_path'] . "/" . $this_userdata['user_avatar'])) )
    				{
    					@unlink("./" . $board_config['avatar_path'] . "/" . $this_userdata['user_avatar']);
    
    REPLACE WITH

    Code: Select all

    
    				if( @file_exists(@phpbb_realpath('./../' . $board_config['avatar_path'] . "/" . $this_userdata['user_avatar'])) )
    				{
    					@unlink('./../' . $board_config['avatar_path'] . "/" . $this_userdata['user_avatar']);
    
  • admin/admin_words.php
  1. FIND - Line 28

    Code: Select all

    
    	$module['General']['Word_Censor'] = "$file";
    
    REPLACE WITH

    Code: Select all

    
    	$module['General']['Word_Censor'] = $file;
    
  • admin/index.php
  1. FIND - Line 63

    Code: Select all

    
    			include($file);
    
    REPLACE WITH

    Code: Select all

    
    			include('./' . $file);
    
  2. FIND - Line 237

    Code: Select all

    
    			if( preg_match("/^(3\.23|4\.)/", $version) )
    			{
    				$db_name = ( preg_match("/^(3\.23\.[6-9])|(3\.23\.[1-9][1-9])|(4\.)/", $version) ) ? "`$dbname`" : $dbname;
    
    REPLACE WITH

    Code: Select all

    
    			if( preg_match("/^(3\.23|4\.|5\.)/", $version) )
    			{
    				$db_name = ( preg_match("/^(3\.23\.[6-9])|(3\.23\.[1-9][1-9])|(4\.)|(5\.)/", $version) ) ? "`$dbname`" : $dbname;
    
  • includes/bbcode.php
  1. FIND - Line 203

    Code: Select all

    
    	$patterns[] = "#\[url\]([\w]+?://[\w\#$%&~/.\-;:=,?@\[\]+]*?)\[/url\]#is";
    	$replacements[] = $bbcode_tpl['url1'];
    
    	// [url]www.phpbb.com[/url] code.. (no xxxx:// prefix).
    	$patterns[] = "#\[url\]((www|ftp)\.[\w\#$%&~/.\-;:=,?@\[\]+]*?)\[/url\]#is";
    
    REPLACE WITH

    Code: Select all

    
    	$patterns[] = "#\[url\]([\w]+?://([\w\#$%&~/.\-;:=,?@\]+]|\[(?!url=))*?)\[/url\]#is";
    	$replacements[] = $bbcode_tpl['url1'];
    
    	// [url]www.phpbb.com[/url] code.. (no xxxx:// prefix).
    	$patterns[] = "#\[url\]((www|ftp)\.([\w\#$%&~/.\-;:=,?@\]+]|\[(?!url=))*?)\[/url\]#is";
    
  2. FIND - Line 255

    Code: Select all

    
    	$text = bbencode_first_pass_pda($text, $uid, '/\[quote=(\\\".*?\\\")\]/is', '[/quote]', '', false, '', "[quote:$uid=\\1]");
    
    REPLACE WITH

    Code: Select all

    
    	$text = bbencode_first_pass_pda($text, $uid, '/\[quote=\\\\"(.*?)\\\\"\]/is', '[/quote]', '', false, '', "[quote:$uid=\\\"\\1\\\"]");
    
  3. FIND - Line 392

    Code: Select all

    
    				if( preg_match('#\[quote=\\\"#si', $possible_start, $match) && !preg_match('#\[quote=\\\"(.*?)\\\"\]#si', $possible_start) )
    				{
    					// OK we are in a quote tag that probably contains a ] bracket.
    					// Grab a bit more of the string to hopefully get all of it..
    					if ($close_pos = strpos($text, '"]', $curr_pos + 9))
    					{
    						if (strpos(substr($text, $curr_pos + 9, $close_pos - ($curr_pos + 9)), '[quote') === false)
    						{
    							$possible_start = substr($text, $curr_pos, $close_pos - $curr_pos + 2);
    
    REPLACE WITH

    Code: Select all

    
    				if( preg_match('#\[quote=\\\"#si', $possible_start, $match) && !preg_match('#\[quote=\\\"(.*?)\\\"\]#si', $possible_start) )
    				{
    					// OK we are in a quote tag that probably contains a ] bracket.
    					// Grab a bit more of the string to hopefully get all of it..
    					if ($close_pos = strpos($text, '"]', $curr_pos + 14))
    					{
    						if (strpos(substr($text, $curr_pos + 14, $close_pos - ($curr_pos + 14)), '[quote') === false)
    						{
    							$possible_start = substr($text, $curr_pos, $close_pos - $curr_pos + 7);
    
  • common.php
  1. FIND - Line 223

    Code: Select all

    
    	message_die(GENERAL_MESSAGE, 'Please ensure both the install/ and contrib/ directories are deleted');
    
    REPLACE WITH

    Code: Select all

    
    	message_die(GENERAL_MESSAGE, 'Please_remove_install_contrib');
    
  • includes/functions.php
  1. FIND - Line 161

    Code: Select all

    
    	$sql .= ( ( is_integer($user) ) ? "user_id = $user" : "username = '" .  $user . "'" ) . " AND user_id <> " . ANONYMOUS;
    
    REPLACE WITH

    Code: Select all

    
    	$sql .= ( ( is_integer($user) ) ? "user_id = $user" : "username = '" .  str_replace("\'", "''", $user) . "'" ) . " AND user_id <> " . ANONYMOUS;
    
  • includes/functions_post.php
  1. FIND - Line 28

    Code: Select all

    
    $html_entities_match = array('#&(?!(\#[0-9]+;))#', '#<#', '#>#');
    $html_entities_replace = array('&', '<', '>');
    
    REPLACE WITH

    Code: Select all

    
    $html_entities_match = array('#&(?!(\#[0-9]+;))#', '#<#', '#>#', '#"#');
    $html_entities_replace = array('&', '<', '>', '"');
    
  • includes/usercp_confirm.php
  1. FIND - Line 156

    Code: Select all

    
    	if (!empty($HTTP_GET_VARS['c']))
    	{
    		$_png = define_raw_pngs();
    
    		$char = substr($code, intval($HTTP_GET_VARS['c']) - 1, 1);
    		header('Content-Type: image/png');
    		header('Cache-control: no-cache, no-store');
    		echo base64_decode($_png[$char]);
    
    		unset($_png);
    		exit;
    	}
    
    REPLACE WITH

    Code: Select all

    
    	$_png = define_raw_pngs();
    
    	$char = substr($code, -1);
    	header('Content-Type: image/png');
    	header('Cache-control: no-cache, no-store');
    	echo base64_decode($_png[$char]);
    
    	unset($_png);
    	exit;
    
  • includes/usercp_register.php
  1. FIND - Line 110

    Code: Select all

    
    	$strip_var_list = array('username' => 'username', 'email' => 'email', 'icq' => 'icq', 'aim' => 'aim', 'msn' => 'msn', 'yim' => 'yim', 'website' => 'website', 'location' => 'location', 'occupation' => 'occupation', 'interests' => 'interests');
    	$strip_var_list['confirm_code'] = 'confirm_code';
    
    REPLACE WITH

    Code: Select all

    
    	$strip_var_list = array('email' => 'email', 'icq' => 'icq', 'aim' => 'aim', 'msn' => 'msn', 'yim' => 'yim', 'website' => 'website', 'location' => 'location', 'occupation' => 'occupation', 'interests' => 'interests', 'confirm_code' => 'confirm_code');
    
  2. FIND - Line 126

    Code: Select all

    
    	$trim_var_list = array('cur_password' => 'cur_password', 'new_password' => 'new_password', 'password_confirm' => 'password_confirm', 'signature' => 'signature');
    
    BEFORE, ADD

    Code: Select all

    
    	$username = ( !empty($HTTP_POST_VARS['username']) ) ? phpbb_clean_username($HTTP_POST_VARS['username']) : '';
    
    
  3. FIND - Line 301

    Code: Select all

    
    				if ($row['code'] != $confirm_code)
    
    BEFORE, ADD

    Code: Select all

    
    				// Only compare one char if the zlib-extension is not loaded
    				if (!@extension_loaded('zlib'))
    				{
    					$row['code'] = substr($row['code'], -1);
    				}
    
    
  • language/lang_english/lang_admin.php
  1. FIND - Line 749

    Code: Select all

    
    //
    // That's all Folks!
    
    BEFORE, ADD

    Code: Select all

    
    //
    // Login attempts configuration
    //
    $lang['Max_login_attempts'] = 'Allowed login attempts';
    $lang['Max_login_attempts_explain'] = 'The number of allowed board login attempts.';
    $lang['Login_reset_time'] = 'Login lock time';
    $lang['Login_reset_time_explain'] = 'Time in minutes the user have to wait until he is allowed to login again after exceeding the number of allowed login attempts.';
    
    
  • language/lang_english/lang_main.php
  1. FIND - Line 1021

    Code: Select all

    
    //
    // That's all, Folks!
    
    BEFORE, ADD

    Code: Select all

    
    $lang['Login_attempts_exceeded'] = 'The maximum number of %s login attempts has been exceeded. You are not allowed to login for the next %s minutes.';
    $lang['Please_remove_install_contrib'] = 'Please ensure both the install/ and contrib/ directories are deleted';
    
    
  • login.php
  1. FIND - Line 60

    Code: Select all

    
    		$sql = "SELECT user_id, username, user_password, user_active, user_level
    
    REPLACE WITH

    Code: Select all

    
    		$sql = "SELECT user_id, username, user_password, user_active, user_level, user_login_tries, user_last_login_try
    
  2. FIND - Line 79

    Code: Select all

    
    				if( md5($password) == $row['user_password'] && $row['user_active'] )
    
    BEFORE, ADD

    Code: Select all

    
    				// If the last login is more than x minutes ago, then reset the login tries/time
    				if ($row['user_last_login_try'] && $board_config['login_reset_time'] && $row['user_last_login_try'] < (time() - ($board_config['login_reset_time'] * 60)))
    				{
    					$db->sql_query('UPDATE ' . USERS_TABLE . ' SET user_login_tries = 0, user_last_login_try = 0 WHERE user_id = ' . $row['user_id']);
    					$row['user_last_login_try'] = $row['user_login_tries'] = 0;
    				}
    				
    				// Check to see if user is allowed to login again... if his tries are exceeded
    				if ($row['user_last_login_try'] && $board_config['login_reset_time'] && $board_config['max_login_attempts'] && 
    					$row['user_last_login_try'] >= (time() - ($board_config['login_reset_time'] * 60)) && $row['user_login_tries'] >= $board_config['max_login_attempts'])
    				{
    					message_die(GENERAL_MESSAGE, sprintf($lang['Login_attempts_exceeded'], $board_config['max_login_attempts'], $board_config['login_reset_time']));
    				}
    
    
  3. FIND - Line 97

    Code: Select all

    
    					$admin = (isset($HTTP_POST_VARS['admin'])) ? 1 : 0;
    					$session_id = session_begin($row['user_id'], $user_ip, PAGE_INDEX, FALSE, $autologin, $admin);
    
    
    AFTER, ADD

    Code: Select all

    
    					// Reset login tries
    					$db->sql_query('UPDATE ' . USERS_TABLE . ' SET user_login_tries = 0, user_last_login_try = 0 WHERE user_id = ' . $row['user_id']);
    
    
  4. FIND - Line 115

    Code: Select all

    
    					$redirect = ( !empty($HTTP_POST_VARS['redirect']) ) ? str_replace('&', '&', htmlspecialchars($HTTP_POST_VARS['redirect'])) : '';
    					$redirect = str_replace('?', '&', $redirect);
    
    BEFORE, ADD

    Code: Select all

    
    					// Save login tries and last login
    					if ($row['user_id'] != ANONYMOUS)
    					{
    						$sql = 'UPDATE ' . USERS_TABLE . '
    							SET user_login_tries = user_login_tries + 1, user_last_login_try = ' . time() . '
    							WHERE user_id = ' . $row['user_id'];
    						$db->sql_query($sql);
    					}
    					
    
  • privmsg.php
  1. FIND - Line 38

    Code: Select all

    
    $html_entities_match = array('#&(?!(\#[0-9]+;))#', '#<#', '#>#');
    $html_entities_replace = array('&', '<', '>');
    
    REPLACE WITH

    Code: Select all

    
    $html_entities_match = array('#&(?!(\#[0-9]+;))#', '#<#', '#>#', '#"#');
    $html_entities_replace = array('&', '<', '>', '"');
    
  • templates/subSilver/admin/board_config_body.tpl
  1. FIND - Line 59

    Code: Select all

    
    		<td class="row2"><input class="post" type="text" size="3" maxlength="4" name="flood_interval" value="{FLOOD_INTERVAL}" /></td>
    	</tr>
    
    AFTER, ADD

    Code: Select all

    
    	<tr>
    		<td class="row1">{L_MAX_LOGIN_ATTEMPTS}<br /><span class="gensmall">{L_MAX_LOGIN_ATTEMPTS_EXPLAIN}</span></td>
    		<td class="row2"><input class="post" type="text" size="3" maxlength="4" name="max_login_attempts" value="{MAX_LOGIN_ATTEMPTS}" /></td>
    	</tr>
    	<tr>
    		<td class="row1">{L_LOGIN_RESET_TIME}<br /><span class="gensmall">{L_LOGIN_RESET_TIME_EXPLAIN}</span></td>
    		<td class="row2"><input class="post" type="text" size="3" maxlength="4" name="login_reset_time" value="{LOGIN_RESET_TIME}" /></td>
    	</tr>
    
  • templates/subSilver/admin/index_body.tpl
  1. FIND - Line 46

    Code: Select all

    
    	<td class="row2"><b>{GZIP_COMPRESSION}</b></td>
      </tr>
    </table>
    
    AFTER, ADD

    Code: Select all

    
    
    <h1>{L_VERSION_INFORMATION}</h1>
    
    {VERSION_INFO}
    
    <br />
    
    
  2. FIND - Line 87

    Code: Select all

    
    
    <h1>{L_VERSION_INFORMATION}</h1>
    
    {VERSION_INFO}
    
    <br />
    
    REPLACE WITH (just remove the lines)

    Code: Select all

    
    
CricketMX.com in 2022: Still the home of bat's, rat's and other farmyard animals!

"OK, life [as you chose to define it] repeats until there are no more lessons to be learned." - nrnoble (June 12, 2005)
"the new forum looks awesome, it's getting bigger & better" - p2p-sharing-rules (11 Jan, 2008)
"Looks like CMX is not only getting bigger...but, also getting better!!" - moongirl (14 Dec, 2007)
User avatar
nesman
Miracle Worker
Miracle Worker
Posts: 1453
Joined: Thu Jan 15, 2004 8:17 am
Contact:

Is that all it takes? I thought it was going to be an involved process. :D
User avatar
battye
Site Admin
Site Admin
Posts: 14391
Joined: Sun Jan 11, 2004 8:26 am
Location: Australia
Contact:

That's it. Don't forget to run install/update_to_latest.php afterwards though to update the database. This is the easiest step of all :D
CricketMX.com in 2022: Still the home of bat's, rat's and other farmyard animals!

"OK, life [as you chose to define it] repeats until there are no more lessons to be learned." - nrnoble (June 12, 2005)
"the new forum looks awesome, it's getting bigger & better" - p2p-sharing-rules (11 Jan, 2008)
"Looks like CMX is not only getting bigger...but, also getting better!!" - moongirl (14 Dec, 2007)
Post Reply