Página 1 de 1

WPM om first... Error [phpBB Debug]

Publicado: 17 May 2012, 13:52
por uruguayito
Haciendo pruebas, con un usuario que me creé, me di cuenta que al loguearme, el mod en cuestión: http://www.phpbb-es.com/foro/descarga-m ... tml#p93411, me tira estos errorores:

Código: Seleccionar todo

[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions_privmsgs.php on line 1619: Missing argument 6 for pm_notification(), called in [ROOT]/includes/functions_wpm.php on line 230 and defined
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 2620: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3908)
Pero no me doy cuenta a qué se debe....

Re: WPM om first... Error [phpBB Debug]

Publicado: 17 May 2012, 18:29
por Makoto
abrir

functions_wpm.php

Buscar alrededor de la linea 230

y reemplazar toda la linea por esto

pm_notification('post', $this->send_user_data['username'], $recipients, $subject, $pm_data['message']);

Re: WPM om first... Error [phpBB Debug]

Publicado: 17 May 2012, 19:40
por uruguayito
gracias Makoto por acudir en mi ayuda.
hice el cambio como sugeriste.
Pero siguen los mismos errores

Código: Seleccionar todo

[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions_privmsgs.php on line 1619: Missing argument 6 for pm_notification(), called in [ROOT]/includes/functions_wpm.php on line 230 and defined

[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 2620: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3908)

Re: WPM om first... Error [phpBB Debug]

Publicado: 17 May 2012, 19:56
por Megabyte
Y si pruebas con éste:

Código: Seleccionar todo

    pm_notification($mode, $data['from_username'], $recipients, $subject, $data['message'], $data['msg_id']);
o revisa este post: http://www.phpbb.com/customise/db/mod/w ... 10-t_96904

Re: WPM om first... Error [phpBB Debug]  Tema Solucionado

Publicado: 17 May 2012, 20:08
por uruguayito
Megabyte escribió:Y si pruebas con éste:

Código: Seleccionar todo

    pm_notification($mode, $data['from_username'], $recipients, $subject, $data['message'], $data['msg_id']);
perfecto Wilson :ok:

hice ese cambio y quedó bien.

MUCHAS gracias!

Solucionado!

Re: WPM om first... Error [phpBB Debug]

Publicado: 17 May 2012, 23:06
por Makoto
bueno amigo me habia confundido de linea o mas bien de root de mi foro use un archivo no modificado si lees bien en el tema que deo megabyte te daras cuenta que es mejor usar

Código: Seleccionar todo

pm_notification('post', $this->send_user_data['username'], $recipients, $subject, $pm_data['message'], $msg_id);
el primer codigo que te di era de mi foro online que tambien estaba mal u_u y gracias a ti lo eh corregido