( ! ) Deprecated: preg_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /var/www/mybb-es.com/inc/plugins/google_seo/redirect.php on line 298
Call Stack
#TimeMemoryFunctionLocation
10.0002379680{main}( ).../showthread.php:0
20.0002404608require_once( '/var/www/mybb-es.com/global.php ).../showthread.php:28
30.00491731480pluginSystem->run_hooks( $hook = 'global_start', $arguments = ??? ).../global.php:100
40.00491731512google_seo_redirect_hook( '' ).../class_plugins.php:142
50.00511732264preg_replace( $pattern = '/\\?([^&?=]+)([=&])/u', $replacement = '&$1$2', $subject = NULL ).../redirect.php:298

( ! ) Deprecated: parse_str(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/mybb-es.com/inc/plugins/google_seo/redirect.php on line 315
Call Stack
#TimeMemoryFunctionLocation
10.0002379680{main}( ).../showthread.php:0
20.0002404608require_once( '/var/www/mybb-es.com/global.php ).../showthread.php:28
30.00491731480pluginSystem->run_hooks( $hook = 'global_start', $arguments = ??? ).../global.php:100
40.00491731512google_seo_redirect_hook( '' ).../class_plugins.php:142
50.00531733144parse_str( $string = NULL, $result = NULL ).../redirect.php:315
Como agregar bloques en el portal

Como agregar bloques en el portal
URL: http://animerlz.byethost16.com/ Versión: 1.4.9 Actualización: Ninguna Problema: Quisiera saber como agregar un bloque en el potal, vi varios ...

URL: http://animerlz.byethost16.com/
Versión: 1.4.9
Actualización: Ninguna
Problema: Quisiera saber como agregar un bloque en el potal, vi varios temas pero la informacion no era explicativa...
para agregar una nuevo bloque o caja solo tienes que agregar una nueva tabla,
Código:
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead"><strong>Aqui colocas el titulo de tu bloque</strong></td>
</tr>
<tr>
<td class="trow1">
<span class="smalltext">Aqui colocas el cuerpo de tu bloque en html</span>
</td>
</tr>
</table>
<br />
el codigo lo colocas en la plantilla portal, donde quieras

Código:
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
</head>
<body>
{$header}
<table width="100%" cellspacing="0" cellpadding="{$theme['tablespace']}" border="0" align="center">
<tr><td valign="top" width="200">
{$welcome}
{$pms}
{$search}
{$stats}
{$whosonline}
{$latestthreads}
</td>
<td>&nbsp;</td>
<td valign="top">
{$announcements}
</td>
</tr>
</table>
{$footer}
</body>
</html>
depende de donde te paresca mejor si quieres ponerlo sobre el bloque de bienvenida tienes que pegar el codigo sobre la linea {$welcome}
quedando asi

Código:
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
</head>
<body>
{$header}
<table width="100%" cellspacing="0" cellpadding="{$theme['tablespace']}" border="0" align="center">
<tr><td valign="top" width="200">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead"><strong>Aqui colocas el titulo de tu bloque</strong></td>
</tr>
<tr>
<td class="trow1">
<span class="smalltext">Aqui colocas el cuerpo de tu bloque en html</span>
</td>
</tr>
</table>
<br />
{$welcome}
{$pms}
{$search}
{$stats}
{$whosonline}
{$latestthreads}
</td>
<td>&nbsp;</td>
<td valign="top">
{$announcements}
</td>
</tr>
</table>
{$footer}
</body>
</html>

Si lo quieres en otra parte solo pega el codigo donde coresponda
Saludos
Y no hay otra forma de agregarlos?
Pasa que si los agrego asi estara todo muy desacomodado xD y algo confuso...
Muchas gracias por esta info, me sirvio mucho jeje.
tema muy viejo... Lo cierro!