Recordad que para pedir soporte alguno, debéis facilitar los datos de soporte oportunos por favor, mirad aquí y leer las Normas generales del foro, esto nos servirá de ayuda para dar el mejor soporte..
Gracias.
La Administración de phpBB España.
phpBB 2.0.14 released
phpBB 2.0.14 released
Toca actualizar de nuevo, esta vez la 2.0.14 asi pues, n0o dejeis esto para otro momento, que luego llegan las lamentaciones.
Tema original por Acyd Burn
Raul [ThE KuKa] en phpBB
Jr. Extension Validator - Jr. Styles Validator - Style Customisations - Translator - International Support Team
Si te gustan mis estilos, traducciones, etc. y quieres mostrar algo de aprecio, no dudes en hacer una donación
phpBB España - En línea desde 2003
Re: phpBB 2.0.14 released
Estos son los cambios de codigo de phpBB 2.0.13 a 2.0.14 estos cambios deberan ser instalados como si de un MOD se tratara, de este modo los foros con muchos MODs, seran actualizados sin correr el riesgo de perder dichos MODs.
Despues de realizar los cambios aqui explicados, debes subir el archivo /install/update_to_latest.php y ejecutarlo desde tu navegador, despues de esto, esa carpeta y archivo, deben ser borrados de tu servidor.
Por favor, borrar el archivo db/oracle.php de vuestro servidor.
- admin/admin_styles.php
-
BUSCAR - Linea 78
REEMPLAZAR POR
Código: Seleccionar todo
include($phpbb_root_path. "templates/" . $install_to . "/theme_info.cfg");
Código: Seleccionar todo
include($phpbb_root_path. "templates/" . basename($install_to) . "/theme_info.cfg");
-
BUSCAR - Linea 742
REEMPLAZAR POR
Código: Seleccionar todo
$fp = @fopen($phpbb_root_path . 'templates/' . $template_name . '/theme_info.cfg', 'w');
Código: Seleccionar todo
$fp = @fopen($phpbb_root_path . 'templates/' . basename($template_name) . '/theme_info.cfg', 'w');
- admin/page_header_admin.php
-
BUSCAR - Linea 38
REEMPLAZAR POR
Código: Seleccionar todo
$useragent = (isset($_SERVER["HTTP_USER_AGENT"]) ) ? $_SERVER["HTTP_USER_AGENT"] : $HTTP_USER_AGENT;
Código: Seleccionar todo
$useragent = (isset($HTTP_SERVER_VARS['HTTP_USER_AGENT'])) ? $HTTP_SERVER_VARS['HTTP_USER_AGENT'] : getenv('HTTP_USER_AGENT');
- admin/page_footer_admin.php
-
BUSCAR - Linea 36
REEMPLAZAR POR
Código: Seleccionar todo
'PHPBB_VERSION' => '2' . $board_config['version'],
Código: Seleccionar todo
'PHPBB_VERSION' => ($userdata['user_level'] == ADMIN && $userdata['user_id'] != ANONYMOUS) ? '2' . $board_config['version'] : '',
- db/postgres7.php
-
BUSCAR - Linea 125
Aí?Â?í?Â?í?Â?í?Â?í?Â?í?Â?í?Â?í?Â?ADIR DESPUES
Código: Seleccionar todo
$query = preg_replace("/LIMIT ([0-9]+),([ 0-9]+)/", "LIMIT \\2 OFFSET \\1", $query);
Código: Seleccionar todo
$query = preg_replace('#(.*WHERE.*)(username|user_email|ban_email) = \'(.*)\'#ise', "\"\\1LOWER(\\2) = '\" . strtolower('\\3') . \"'\"", $query);
- includes/page_header.php
-
BUSCAR - Linea 38
REEMPLAZAR POR
Código: Seleccionar todo
$useragent = (isset($_SERVER["HTTP_USER_AGENT"]) ) ? $_SERVER["HTTP_USER_AGENT"] : $HTTP_USER_AGENT;
Código: Seleccionar todo
$useragent = (isset($HTTP_SERVER_VARS['HTTP_USER_AGENT'])) ? $HTTP_SERVER_VARS['HTTP_USER_AGENT'] : getenv('HTTP_USER_AGENT');
-
BUSCAR - Linea 469
REEMPLAZAR POR
Código: Seleccionar todo
if (!empty($_SERVER['SERVER_SOFTWARE']) && strstr($_SERVER['SERVER_SOFTWARE'], 'Apache/2'))
Código: Seleccionar todo
if (!empty($HTTP_SERVER_VARS['SERVER_SOFTWARE']) && strstr($HTTP_SERVER_VARS['SERVER_SOFTWARE'], 'Apache/2'))
- includes/sessions.php
-
BUSCAR - Linea 53
Aí?Â?í?Â?í?Â?í?Â?í?Â?í?Â?í?Â?í?Â?ADIR DESPUES
Código: Seleccionar todo
$session_id = ''; }
Código: Seleccionar todo
$page_id = (int) $page_id;
-
BUSCAR - Linea 92
Aí?Â?í?Â?í?Â?í?Â?í?Â?í?Â?í?Â?í?Â?ADIR DESPUES
Código: Seleccionar todo
// No match; don't login, set as anonymous user $login = 0; $enable_autologin = 0; $user_id = $userdata['user_id'] = ANONYMOUS;
Código: Seleccionar todo
$sql = 'SELECT * FROM ' . USERS_TABLE . ' WHERE user_id = ' . ANONYMOUS; $result = $db->sql_query($sql); $userdata = $db->sql_fetchrow($result); $db->sql_freeresult($result);
-
BUSCAR - Linea 105
Aí?Â?í?Â?í?Â?í?Â?í?Â?í?Â?í?Â?í?Â?ADIR DESPUES
Código: Seleccionar todo
// Autologin is not set. Don't login, set as anonymous user $login = 0; $enable_autologin = 0; $user_id = $userdata['user_id'] = ANONYMOUS;
Código: Seleccionar todo
$sql = 'SELECT * FROM ' . USERS_TABLE . ' WHERE user_id = ' . ANONYMOUS; $result = $db->sql_query($sql); $userdata = $db->sql_fetchrow($result); $db->sql_freeresult($result);
-
BUSCAR - Linea 244
ANTES Aí?Â?í?Â?í?Â?í?Â?í?Â?í?Â?í?Â?í?Â?ADIR
Código: Seleccionar todo
// // Does a session exist? //
Código: Seleccionar todo
$thispage_id = (int) $thispage_id;
- modcp.php
-
BUSCAR - Linea 130
Aí?Â?í?Â?í?Â?í?Â?í?Â?í?Â?í?Â?í?Â?ADIR DESPUES
Código: Seleccionar todo
message_die(GENERAL_MESSAGE, 'Topic_post_not_exist'); } $topic_row = $db->sql_fetchrow($result);
Código: Seleccionar todo
if (!$topic_row) { message_die(GENERAL_MESSAGE, 'Topic_post_not_exist'); }
-
BUSCAR - Linea 150
Aí?Â?í?Â?í?Â?í?Â?í?Â?í?Â?í?Â?í?Â?ADIR DESPUES
Código: Seleccionar todo
message_die(GENERAL_MESSAGE, 'Forum_not_exist'); } $topic_row = $db->sql_fetchrow($result);
Código: Seleccionar todo
if (!$topic_row) { message_die(GENERAL_MESSAGE, 'Forum_not_exist'); }
- privmsg.php
-
BUSCAR - Linea 566
REEMPLAR POR
Código: Seleccionar todo
if ( !$board_config['allow_html'] ) { if ( $user_sig != '' && $privmsg['privmsgs_enable_sig'] && $userdata['user_allowhtml'] )
Código: Seleccionar todo
if ( !$board_config['allow_html'] || !$userdata['user_allowhtml']) { if ( $user_sig != '')
-
BUSCAR - Linea 1531
REEMPLAZAR POR
Código: Seleccionar todo
if ( !$html_on ) { if ( $user_sig != '' || !$userdata['user_allowhtml'] )
Código: Seleccionar todo
if ( !$html_on || !$board_config['allow_html'] || !$userdata['user_allowhtml'] ) { if ( $user_sig != '' )
- search.php
-
BUSCAR - Linea 200
ANTES Aí?Â?í?Â?í?Â?í?Â?í?Â?í?Â?í?Â?í?Â?ADIR
Código: Seleccionar todo
$search_author = str_replace('*', '%', trim($search_author));
Código: Seleccionar todo
if (preg_match('#^[\*%]+$#', trim($search_author)) || preg_match('#^[^\*]{1,2}$#', str_replace(array('*', '%'), '', trim($search_author)))) { $search_author = ''; }
-
BUSCAR - Linea 269
Código: Seleccionar todo
for($i = 0; $i (((?>([^>' . $user_sig . '(((?>([^>' . $message . '(((?>([^>' . $user_sig . '(((?>([^>' . $message . '<'), 1, -1));
Raul [ThE KuKa] en phpBB
Jr. Extension Validator - Jr. Styles Validator - Style Customisations - Translator - International Support Team
Si te gustan mis estilos, traducciones, etc. y quieres mostrar algo de aprecio, no dudes en hacer una donación
phpBB España - En línea desde 2003