第 1 頁 (共 2 頁)
[問題] 有關譠主大人所提供的2.0.11封包安裝問題
發表於 : 2004-12-31 11:22
由 godfreychan
有關譠主大人所提供的2.0.11封包安裝問題
來源
http://phpbb-tw.net/phpbb/viewtopic.php?t=25503
請教一下
我的站有改過很多版面\r
假如把封包一次全放到server去\r
會否有問題
或
可選擇性放那些檔案而不影響現有的檔
發表於 : 2004-12-31 11:41
由 webspirit
改過很多版面是什麼意思?
是改版面配置?非 subSilver 風格?裝過很多 MOD?
你根本沒提供足夠的資訊,人家怎麼協助?
最起碼也該照發問格式來發問
發表於 : 2004-12-31 12:06
由 godfreychan
sorry 不好意思, 沒寫清楚
再補一些資料
網站:
http://www.aquafever.com/phpBB-HK
網站空間:租用\r
現時php版本:2.0.10
問題如下:
1. 小弟多次改動版面, 放了些banner等等
2. 加入不少mod
現想upgarde到2.0.11, 如把竹大的封包直接上存到現在的phpBB-HK裡去, 會否令版面改動?
如upgrade到2.0.11後能保持現在的版面及所有mod, 請問要怎樣進行upgrade呢?
發表於 : 2004-12-31 12:09
由 webspirit
發表於 : 2004-12-31 12:14
由 godfreychan
發表於 : 2004-12-31 12:21
由 godfreychan
我在別的post找到這些資料
先到官站下載phpBB-2.0.10_to_2.0.11.zip解壓後執行以下動作
1. 上傳 usercp_confirm.php
2. 照說明檔 phpbb_2.0.10_to_2.0.11.txt 的內文修改完所有應修改的檔案後
3. 執行 update_to_2011.php
4. 刪除 update_to_2011.php
就這樣便完成?對不對
發表於 : 2004-12-31 13:18
由 webspirit
那就是你所說的中文翻譯吧\r
不學點英文,未來的路很難走
發表於 : 2004-12-31 13:50
由 godfreychan
webspirit 寫:那就是你所說的中文翻譯吧\r
不學點英文,未來的路很難走
感謝大大
馬上去修改
發表於 : 2004-12-31 14:16
由 godfreychan
Help
我在修改common.php時, 找不到以下的code
代碼: 選擇全部
#
#-----[ OPEN ]---------------------------------------------
#
common.php
#
#-----[ FIND ]---------------------------------------------
# Line 28
function unset_vars(&$var)
{
\n while (list($var_name, $null) = @each($var))
{
unset($GLOBALS[$var_name]);
}
return;
}
//
error_reporting (E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables
set_magic_quotes_runtime(0); // Disable magic_quotes_runtime
$ini_val = (@phpversion() >= '4.0.0') ? 'ini_get' : 'get_cfg_var';
// Unset globally registered vars - PHP5 ... hhmmm
if (@$ini_val('register_globals') == '1' || strtolower(@$ini_val('register_globals')) == 'on')
{
$var_prefix = 'HTTP';
$var_suffix = '_VARS';
$test = array('_GET', '_POST', '_SERVER', '_COOKIE', '_ENV');
foreach ($test as $var)
{
if (is_array(${$var_prefix . $var . $var_suffix}))
{
unset_vars(${$var_prefix . $var . $var_suffix});
@reset(${$var_prefix . $var . $var_suffix});
}
if (is_array(${$var}))
{
unset_vars(${$var});
@reset(${$var});
}
}
if (is_array(${'_FILES'}))
{
unset_vars(${'_FILES'});
@reset(${'_FILES'});
}
if (is_array(${'HTTP_POST_FILES'}))
{
unset_vars(${'HTTP_POST_FILES'});
@reset(${'HTTP_POST_FILES'});
}
}
// PHP5 with register_long_arrays off?
if (!isset($HTTP_POST_VARS) && isset($_POST))
{
$HTTP_POST_VARS = $_POST;
$HTTP_GET_VARS = $_GET;
$HTTP_SERVER_VARS = $_SERVER;
$HTTP_COOKIE_VARS = $_COOKIE;
$HTTP_ENV_VARS = $_ENV;
$HTTP_POST_FILES = $_FILES;
怎麼辦
發表於 : 2004-12-31 14:19
由 godfreychan
我的common.php 是這樣的
代碼: 選擇全部
<?php
/***************************************************************************
* common.php
* -------------------
* begin : Saturday, Feb 23, 2001
* copyright : (C) 2001 The phpBB Group
* email : support@phpbb.com
*
* $Id: common.php,v 1.6 2003/08/30 15:05:44 acydburn Exp $
*
*
***************************************************************************/
/***************************************************************************
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
***************************************************************************/
if ( !defined('IN_PHPBB') )
{
die("Hacking attempt");
}
error_reporting (E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables
set_magic_quotes_runtime(0); // Disable magic_quotes_runtime
//
// addslashes to vars if magic_quotes_gpc is off
// this is a security precaution to prevent someone
// trying to break out of a SQL statement.
//
if( !get_magic_quotes_gpc() )
{
if( is_array($HTTP_GET_VARS) )
{
while( list($k, $v) = each($HTTP_GET_VARS) )
{
if( is_array($HTTP_GET_VARS[$k]) )
{
while( list($k2, $v2) = each($HTTP_GET_VARS[$k]) )
{
$HTTP_GET_VARS[$k][$k2] = addslashes($v2);
}
@reset($HTTP_GET_VARS[$k]);
}
else
{
$HTTP_GET_VARS[$k] = addslashes($v);
}
}
@reset($HTTP_GET_VARS);
}
if( is_array($HTTP_POST_VARS) )
{
while( list($k, $v) = each($HTTP_POST_VARS) )
{
if( is_array($HTTP_POST_VARS[$k]) )
{
while( list($k2, $v2) = each($HTTP_POST_VARS[$k]) )
{
$HTTP_POST_VARS[$k][$k2] = addslashes($v2);
}
@reset($HTTP_POST_VARS[$k]);
}
else
{
$HTTP_POST_VARS[$k] = addslashes($v);
}
}
@reset($HTTP_POST_VARS);
}
if( is_array($HTTP_COOKIE_VARS) )
{
while( list($k, $v) = each($HTTP_COOKIE_VARS) )
{
if( is_array($HTTP_COOKIE_VARS[$k]) )
{
while( list($k2, $v2) = each($HTTP_COOKIE_VARS[$k]) )
{
$HTTP_COOKIE_VARS[$k][$k2] = addslashes($v2);
}
@reset($HTTP_COOKIE_VARS[$k]);
}
else
{
$HTTP_COOKIE_VARS[$k] = addslashes($v);
}
}
@reset($HTTP_COOKIE_VARS);
}
}
//
// Define some basic configuration arrays this also prevents
// malicious rewriting of language and otherarray values via
// URI params
//
$board_config = array();
$userdata = array();
$theme = array();
$images = array();
$lang = array();
$gen_simple_header = FALSE;
include($phpbb_root_path . 'config.'.$phpEx);
if( !defined("PHPBB_INSTALLED") )
{
header("Location: install/install.$phpEx");
exit;
}
include($phpbb_root_path . 'includes/constants.'.$phpEx);
include($phpbb_root_path . 'includes/template.'.$phpEx);
include($phpbb_root_path . 'includes/sessions.'.$phpEx);
include($phpbb_root_path . 'includes/auth.'.$phpEx);
include($phpbb_root_path . 'includes/functions.'.$phpEx);
include($phpbb_root_path . 'includes/db.'.$phpEx);
//
// Obtain and encode users IP
//
if( getenv('HTTP_X_FORWARDED_FOR') != '' )
{
$client_ip = ( !empty($HTTP_SERVER_VARS['REMOTE_ADDR']) ) ? $HTTP_SERVER_VARS['REMOTE_ADDR'] : ( ( !empty($HTTP_ENV_VARS['REMOTE_ADDR']) ) ? $HTTP_ENV_VARS['REMOTE_ADDR'] : $REMOTE_ADDR );
$entries = explode(',', getenv('HTTP_X_FORWARDED_FOR'));
reset($entries);
while (list(, $entry) = each($entries))
{
$entry = trim($entry);
if ( preg_match("/^([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)/", $entry, $ip_list) )
{
$private_ip = array('/^0\./', '/^127\.0\.0\.1/', '/^192\.168\..*/', '/^172\.((1[6-9])|(2[0-9])|(3[0-1]))\..*/', '/^10\..*/', '/^224\..*/', '/^240\..*/');
$found_ip = preg_replace($private_ip, $client_ip, $ip_list[1]);
if ($client_ip != $found_ip)
{
$client_ip = $found_ip;
break;
}
}
}
}
else
{
$client_ip = ( !empty($HTTP_SERVER_VARS['REMOTE_ADDR']) ) ? $HTTP_SERVER_VARS['REMOTE_ADDR'] : ( ( !empty($HTTP_ENV_VARS['REMOTE_ADDR']) ) ? $HTTP_ENV_VARS['REMOTE_ADDR'] : $REMOTE_ADDR );
}
$user_ip = encode_ip($client_ip);
//
// Setup forum wide options, if this fails
// then we output a CRITICAL_ERROR since
// basic forum information is not available
//
$sql = "SELECT *
FROM " . CONFIG_TABLE;
if( !($result = $db->sql_query($sql)) )\r
{
message_die(CRITICAL_ERROR, "Could not query config information", "", __LINE__, __FILE__, $sql);
}
while ( $row = $db->sql_fetchrow($result) )
{
$board_config[$row['config_name']] = $row['config_value'];
}
include($phpbb_root_path . 'attach_mod/attachment_mod.'.$phpEx);
if (file_exists('install') || file_exists('contrib'))
{
message_die(GENERAL_MESSAGE, 'Please ensure both the install/ and contrib/ directories are deleted');
}
//
// 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');
}
?>
發表於 : 2004-12-31 14:32
由 webspirit
大哥\r
已經被你 replace 掉了,當然找不到 = =
發表於 : 2004-12-31 14:53
由 godfreychan
webspirit 寫:大哥\r
已經被你 replace 掉了,當然找不到 = =
那個common.php的code, 可能是add mod時修改過
請問現在我要怎樣攪, 還需要拿原來的common.php蓋過現在的再修改成2.0.11嗎?
大概升級動作都完成, 只差一步
發表於 : 2004-12-31 15:29
由 webspirit
不是蓋過,而是要仔細比對修改的程式碼\r
已改過的就跳過,沒改的就照著改\r
千萬記得要先備份
發表於 : 2004-12-31 15:57
由 godfreychan
哇...我不會php coding...不懂修改
發表於 : 2004-12-31 16:02
由 webspirit
狂暈!
我也不會啊
只是比對、複製、貼上,又不是要你撰寫
大哥你幫幫忙行不行?