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.
problemas con el foro
problemas con el foro
General Error
SQL ERROR [ mysqli ]
mysqli_connect function does not exist, is mysqli extension installed? []
An sql error occurred while fetching this page. Please contact an administrator if this problem persists.
cual puede ser el problema
muchas gracias.
URL:http://listassorys.com
Estilo dragonia
Extensiones instaladas: antispam
Versión de phpBB: 3.0.12
Servidor: De pago, OVH
Actualización:
Conversión desde otro tipo de Foro: No
Enlace: | |
BBCode: | |
HTML: | |
Ocultar enlaces al mensaje |
- AbaddonOrmuz
- Mensajes: 696
- Registrado: 14 Ene 2017, 22:18
- Nombre real: Alfredo
- Ubicación: /dev/null
- Género:
- Contactar:
problemas con el foro
mysqli
este activada.Si no has hecho cambios entonces probablemente tu proveedor de hosting los haya hecho (recientemente hubo una migración?), en ese caso contacta a soporte.
Checa todas mi extensiones
Usuario de Arch Linux
Enlace: | |
BBCode: | |
HTML: | |
Ocultar enlaces al mensaje |
problemas con el foro
info.php
Código: Seleccionar todo
<?php
phpinfo();
?>
- Datos de Soporte | Mostrar
Enlace: | |
BBCode: | |
HTML: | |
Ocultar enlaces al mensaje |
- AbaddonOrmuz
- Mensajes: 696
- Registrado: 14 Ene 2017, 22:18
- Nombre real: Alfredo
- Ubicación: /dev/null
- Género:
- Contactar:
problemas con el foro
Como comenté en mi anterior mensaje, si tu proveedor te ofrece en su panel de control (sea cPanel, Plesk u otro) la opción de cambiar de versión de PHP y configurar sus extensiones, te recomendaría actualizar a PHP 7.1 que es la versión máxima que soporta tu versión actual de phpBB (3.2.1), o almenos a PHP 7.0 como mínimo.
En ese mismo apartado de selección de versión de PHP, tienes la posibilidad de cambiar las extensiones activas, la de
mysqli
debería estar activada para que tu foro funcione.Checa todas mi extensiones
Usuario de Arch Linux
Enlace: | |
BBCode: | |
HTML: | |
Ocultar enlaces al mensaje |
problemas con el foro
Gracias AbaddonOrmuz
Enlace: | |
BBCode: | |
HTML: | |
Ocultar enlaces al mensaje |
problemas con el foro
Al seleccionar en mi hosting mysqli me pone Skipped as conflicting
Enlace: | |
BBCode: | |
HTML: | |
Ocultar enlaces al mensaje |
problemas con el foro
Enlace: | |
BBCode: | |
HTML: | |
Ocultar enlaces al mensaje |
problemas con el foro
Fíjate que tu archivo de configuración de phpBB este definido tal como el siguiente:
config.php
Código: Seleccionar todo
<?php
// phpBB 3.2.x auto-generated configuration file
// Do not change anything in this file!
$dbms = 'phpbb\\db\\driver\\mysqli';
$dbhost = 'localhost';
$dbport = '';
$dbname = 'xxxxxxxxxx';
$dbuser = 'xxxxxxxxxx';
$dbpasswd = 'xxxxxxxxxx';
$table_prefix = 'phpbb_';
$phpbb_adm_relative_path = 'adm/';
$acm_type = 'phpbb\\cache\\driver\\file';
@define('PHPBB_INSTALLED', true);
@define('PHPBB_DISPLAY_LOAD_TIME', true);
@define('PHPBB_ENVIRONMENT', 'production');
@define('DEBUG_CONTAINER', true);
@define('DEBUG', true);
@define('DEBUG_EXTRA', true);
?>
(Nótese la falta de la i final)
- Datos de Soporte | Mostrar
Enlace: | |
BBCode: | |
HTML: | |
Ocultar enlaces al mensaje |
problemas con el foro
Código: Seleccionar todo
--with-pdo-pgsql
--with-zlib-dir
--with-freetype-dir
--enable-mbstring
--with-libxml-dir=/usr
--enable-soap
--enable-calendar
--with-curl
--with-mcrypt
--with-zlib
--with-gd
--with-pgsql
--disable-rpath
--enable-inline-optimization
--with-bz2
--with-zlib
--enable-sockets
--enable-sysvsem
--enable-sysvshm
--enable-pcntl
--enable-mbregex
--enable-exif
--enable-bcmath
--with-mhash
--enable-zip
--with-pcre-regex
--with-pdo-mysql
--with-mysqli
--with-mysql-sock=/var/run/mysqld/mysqld.sock
--with-jpeg-dir=/usr
--with-png-dir=/usr
--enable-gd-native-ttf
--with-openssl
--with-fpm-user=www-data
--with-fpm-group=www-data
--with-libdir=/lib/x86_64-linux-gnu
--enable-ftp
--with-imap
--with-imap-ssl
--with-kerberos
--with-gettext
--with-xmlrpc
--with-xsl
--enable-opcache
--enable-fpm

Edito: El tuyo queda algo... ¿"sobrecargado"?...

- Datos de Soporte | Mostrar
Enlace: | |
BBCode: | |
HTML: | |
Ocultar enlaces al mensaje |
problemas con el foro
Código: Seleccionar todo
<?php
// phpBB 3.0.x auto-generated configuration file
// Do not change anything in this file!
$dbms = 'phpbb\\db\\driver\\mysqli';
$dbhost = 'localhost';
$dbport = '';
$dbname = 'xx';
$dbuser = xx';
$dbpasswd = 'xx';
$table_prefix = 'phpbb_';
$acm_type = 'file';
$load_extensions = '';
@define('PHPBB_INSTALLED', true);
// @define('DEBUG', true);
// @define('DEBUG_EXTRA', true);
?>
SQL ERROR [ mssqlnative ]
Native MS SQL Server driver for PHP is missing or needs to be updated. Version 1.1 or later is required to install phpBB3. You can download the driver from: http://www.microsoft.com/sqlserver/2005 ... river.aspx []
An sql error occurred while fetching this page. Please contact an administrator if this problem persists.
Enlace: | |
BBCode: | |
HTML: | |
Ocultar enlaces al mensaje |
- AbaddonOrmuz
- Mensajes: 696
- Registrado: 14 Ene 2017, 22:18
- Nombre real: Alfredo
- Ubicación: /dev/null
- Género:
- Contactar:
problemas con el foro
Eso es porque necesitas desactivar
mysqlnd
antes de poder activar mysqli
, y como mysqlnd
fue eliminado en PHP 7.0, es por eso que puedes activarla en versiones posteriores.Checa esta guía para reconstruír el archivo
config.php
o usa como plantilla el que te ofrece mi compañro picaronDespués de realizar cambios en
config.php
es necesario limpiar la caché, si no puedes hacerlo desde el PCA de phpBB, puedes hacerlo de forma manual con tu cliente FTP, para ello es necesario que elimines el contenido del directorio /cache/
excepto index.htm
y .htaccess
Después de limpiar la caché no puede darte el mismo mensaje de error.
Checa todas mi extensiones
Usuario de Arch Linux
Enlace: | |
BBCode: | |
HTML: | |
Ocultar enlaces al mensaje |
problemas con el foro
Esta página no funciona La página listassorys.com no puede procesar esta solicitud ahora.
HTTP ERROR 500
Supongo que al actualizar me habrá dejado mal algun archivo mas
Enlace: | |
BBCode: | |
HTML: | |
Ocultar enlaces al mensaje |
problemas con el foro
Código: Seleccionar todo
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/template/twig/twig.php on line 142: Undefined index: style_path
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/template/twig/twig.php on line 145: Undefined index: style_parent_id
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_posts_approved
[phpBB Debug] PHP Notice: in file [ROOT]/phpbb/content_visibility.php on line 128: Undefined index: forum_topics_approved
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 543: Undefined index: ELLIPSIS
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 543: Undefined index: ELLIPSIS
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 543: Undefined index: ELLIPSIS
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 543: Undefined index: ELLIPSIS
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 543: Undefined index: ELLIPSIS
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 543: Undefined index: ELLIPSIS
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 543: Undefined index: ELLIPSIS
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 543: Undefined index: ELLIPSIS
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 543: Undefined index: ELLIPSIS
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 543: Undefined index: ELLIPSIS
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 543: Undefined index: ELLIPSIS
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 543: Undefined index: ELLIPSIS
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 543: Undefined index: ELLIPSIS
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 543: Undefined index: ELLIPSIS
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 543: Undefined index: ELLIPSIS
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 543: Undefined index: ELLIPSIS
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 543: Undefined index: ELLIPSIS
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 543: Undefined index: ELLIPSIS
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 543: Undefined index: ELLIPSIS
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 543: Undefined index: ELLIPSIS
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions.php on line 4495: Undefined index: style_path
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions.php on line 4496: Undefined index: style_path
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions.php on line 4497: Undefined index: style_path
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions.php on line 4505: Undefined index: style_path
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions.php on line 4506: Undefined index: style_path
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions.php on line 4512: Undefined index: style_path
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions.php on line 4514: Undefined index: style_path
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions.php on line 4515: Undefined index: style_path
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4564: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3314)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4564: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3314)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4564: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3314)
Volver a la página principal
Error General
SQL ERROR [ mysqli ]
Table 'authent1_phpb758.phpbb_config_text' doesn't exist [1146]
SQL
SELECT * FROM phpbb_config_text WHERE config_name = 'reparser_resume'
BACKTRACE
FILE: (not given by php)
LINE: (not given by php)
CALL: msg_handler()
FILE: [ROOT]/phpbb/db/driver/driver.php
LINE: 997
CALL: trigger_error()
FILE: [ROOT]/phpbb/db/driver/mysqli.php
LINE: 193
CALL: phpbb\db\driver\driver->sql_error()
FILE: [ROOT]/phpbb/db/driver/factory.php
LINE: 329
CALL: phpbb\db\driver\mysqli->sql_query()
FILE: [ROOT]/phpbb/config/db_text.php
LINE: 133
CALL: phpbb\db\driver\factory->sql_query()
FILE: [ROOT]/phpbb/config/db_text.php
LINE: 68
CALL: phpbb\config\db_text->get_array()
FILE: [ROOT]/phpbb/textreparser/manager.php
LINE: 63
CALL: phpbb\config\db_text->get()
FILE: [ROOT]/phpbb/cron/task/text_reparser/reparser.php
LINE: 88
CALL: phpbb\textreparser\manager->get_resume_data()
FILE: [ROOT]/vendor/symfony/dependency-injection/ContainerBuilder.php
LINE: 1144
CALL: phpbb\cron\task\text_reparser\reparser->set_reparser()
FILE: [ROOT]/vendor/symfony/dependency-injection/ContainerBuilder.php
LINE: 943
CALL: Symfony\Component\DependencyInjection\ContainerBuilder->callMethod()
FILE: [ROOT]/vendor/symfony/dependency-injection/ContainerBuilder.php
LINE: 467
CALL: Symfony\Component\DependencyInjection\ContainerBuilder->createService()
FILE: [ROOT]/phpbb/di/service_collection.php
LINE: 72
CALL: Symfony\Component\DependencyInjection\ContainerBuilder->get()
FILE: [ROOT]/phpbb/di/service_collection_iterator.php
LINE: 44
CALL: phpbb\di\service_collection->offsetGet()
FILE: [ROOT]/phpbb/cron/manager.php
LINE: 59
CALL: phpbb\di\service_collection_iterator->current()
FILE: [ROOT]/phpbb/cron/manager.php
LINE: 46
CALL: phpbb\cron\manager->load_tasks()
FILE: (not given by php)
LINE: (not given by php)
CALL: phpbb\cron\manager->__construct()
FILE: [ROOT]/vendor/symfony/dependency-injection/ContainerBuilder.php
LINE: 925
CALL: ReflectionClass->newInstanceArgs()
FILE: [ROOT]/vendor/symfony/dependency-injection/ContainerBuilder.php
LINE: 467
CALL: Symfony\Component\DependencyInjection\ContainerBuilder->createService()
FILE: [ROOT]/includes/functions.php
LINE: 4716
CALL: Symfony\Component\DependencyInjection\ContainerBuilder->get()
FILE: [ROOT]/index.php
LINE: 246
CALL: page_footer()
Enlace: | |
BBCode: | |
HTML: | |
Ocultar enlaces al mensaje |
-
- Temas similares
- Respuestas
- Vistas
- Último mensaje
-
- 31 Respuestas
- 284743 Vistas
-
Último mensaje por wonder
16 Oct 2019, 00:56
-
-
Header Banner con problemas en mi foro
por Tio Javi » 09 Ago 2019, 16:23 » en Soporte de Extensiones 3.2 - 1 Respuestas
- 197578 Vistas
-
Último mensaje por Tio Javi
09 Ago 2019, 22:07
-
-
-
Problemas con imágenes en Foro Local 3.2.8
por J_Sparrow » 01 Oct 2019, 21:43 » en Foros de Soporte 3.2 - 7 Respuestas
- 25459 Vistas
-
Último mensaje por J_Sparrow
02 Oct 2019, 01:17
-
-
-
Problemas al aplicar los estilos en mi foro PHPBB
por josssoriano » 18 Nov 2019, 11:05 » en Foros de Soporte 3.2 - 10 Respuestas
- 271 Vistas
-
Último mensaje por josssoriano
19 Nov 2019, 10:21
-
-
- 3 Respuestas
- 29546 Vistas
-
Último mensaje por andares
16 Dic 2018, 16:46