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.

FAQ de AutoMODTema Solucionado

Dudas sobre AutoMOD e instalaciones usando AutoMOD.
Como Instalar AutoMOD, como Instalar MODs usando AutoMOD
Cerrado

0
No hay votos
 
Votos totales: 0

Avatar de Usuario
ThE KuKa
Administrador
Mensajes: 10374
Registrado: 04 Ene 2004, 19:27
Género:
Edad: 49

FAQ de AutoMOD  Tema Solucionado

#1

Mensaje por ThE KuKa »

AutoMOD no se instala al tener DEBUG_EXTRA desactivado

La solución es activar DEBUG_EXTRA durante la instalación de AutoMOD, y tras finalizar esta, volver a desactivarlo.

Para activar DEBUG_EXTRA abre el archivo config.php

BUSCAR:

Código: Seleccionar todo

@define('PHPBB_INSTALLED', true);
// @define('DEBUG', true);
// @define('DEBUG_EXTRA', true);
REEMPLAZAR POR:

Código: Seleccionar todo

@define('PHPBB_INSTALLED', true);
// @define('DEBUG', true);
@define('DEBUG_EXTRA', true);
Para desactivarlo, simplemente, vuelve a dejar el archivo como estaba antes.

Cuando uso FTP como método de escritura, al desinstalar un MOD falla

Si es posible, utiliza método de escritura "directo". Si esto no es posible, tendrás que esperar a la próxima versión de AutoMOD.

📌 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 Imagen
:flag_es: phpBB España - En línea desde 2003 :heart:



Avatar de Usuario
ThE KuKa
Administrador
Mensajes: 10374
Registrado: 04 Ene 2004, 19:27
Género:
Edad: 49

Re: FAQ de AutoMOD

#2

Mensaje por ThE KuKa »

¿Como actualizo AutoMOD Beta 1 a Beta 2?
Descarga la Beta 2 y sube el contenido de la carpeta /uploads/ a la raíz de tu foro (exactamente igual que la Beta 1)

Después ejecuta el script de instalación desde tu navegador:
http://www.ejemplo.com/phpBB3/install/" onclick="window.open(this.href);return false;

AutoMOD detectara cualquier otra versión existente y actualizara la DB el solo.

📌 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 Imagen
:flag_es: phpBB España - En línea desde 2003 :heart:



Avatar de Usuario
ThE KuKa
Administrador
Mensajes: 10374
Registrado: 04 Ene 2004, 19:27
Género:
Edad: 49

Re: FAQ de AutoMOD

#3

Mensaje por ThE KuKa »

Salen algunos mensajes de error tipo PHP al navegar por la pestaña de AutoMOD en el ACP
Tipo de error escribió:[phpBB Debug] PHP Notice: in file /includes/mod_parser.php on line 368: Undefined index: children
[phpBB Debug] PHP Notice: in file /adm/index.php on line 150: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3184)
[phpBB Debug] PHP Notice: in file /adm/index.php on line 152: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3184)
[phpBB Debug] PHP Notice: in file /adm/index.php on line 153: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3184)
[phpBB Debug] PHP Notice: in file /adm/index.php on line 154: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3184)
Solución:

Abrir el archivo includes/mod_parser.php

BUSCAR:

Código: Seleccionar todo

             for ($j = 0; $j < $changelog_size; $j++)
             {
                // Ignore changelogs in foreign languages except in the case that there is no
                // match for the current user's language
                // TODO: Look at modifying localise_tags() for use here.
                if (match_language($user->data['user_lang'], $changelog[$j]['attrs']['LANG']))
                {
                   $changelog_id = $j;
                }
             }

             $change_count = sizeof($changelog[$changelog_id]['children']['CHANGE']); 
REEMPLAZAR POR:

Código: Seleccionar todo

             $changelog_id = 0;

             for ($j = 0; $j < $changelog_size; $j++)
             {
                // Ignore changelogs in foreign languages except in the case that there is no
                // match for the current user's language
                // TODO: Look at modifying localise_tags() for use here.
                if (match_language($user->data['user_lang'], $changelog[$j]['attrs']['LANG']))
                {
                   $changelog_id = $j;
                }
             }

             $change_count = isset($changelog[$changelog_id]['children']['CHANGE']) ? sizeof($changelog[$changelog_id]['children']['CHANGE']) : 0; 
Esto sera "fijado" en la próxima versión.

📌 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 Imagen
:flag_es: phpBB España - En línea desde 2003 :heart:



Cerrado

Volver a “AutoMOD en Español”