j'utilise pragmaMx 1.1.2 en local avec wampserver PHP 5.2.6 SQL 5.0.51a.
je veux ajouter le module MxShoutbox 1.2 mais j'ai des erreurs quelque soit le langage sélectionné et je comprend pas trop
PHP Run-time notice:
Constant _EDIT already defined
in modules/mxShoutbox/language/lang-french.php on line 24 
define("_EDIT", "Modifier");
PHP Run-time notice:
Constant _PAGE already defined
in modules/mxShoutbox/language/lang-french.php on line 25
define("_DELETE", "Eliminer");
PHP Run-time notice:
Constant _PAGE already defined
in modules/mxShoutbox/language/lang-french.php on line 55
define("_PAGE", "Page");
PHP Run-time notice:
Undefined variable: shoutrows
in blocks/block-mxShoutbox.php on line 150
PHP Run-time warning:
Invalid argument supplied for foreach()
in blocks/block-mxShoutbox.php on line 150
foreach ($shoutrows as $i => $row) {
$ShoutComment = shout_prepare_post($row['comment']);
if ($showBackground == 'yes') {
$tempContent[$i] = "<tr><td>";
} else {
if ($flag == 1) {
$bgcolor = $rowColor['blockColor1'];
$flag = 2;
} else {
$bgcolor = $rowColor['blockColor2'];
$flag = 1;
}
$tempContent[$i] = "<tr><td style=\"background-color: $bgcolor;\">";
}
if (!MX_IS_USER || $row['name'] == $stickyadmin) {
$tempContent[$i] .= "<b>$row[name]:</b> $ShoutComment";
} else {
$tempContent[$i] .= "<a href=\"modules.php?name=Userinfo&uname=$row[name]\">$row[name]</a>: $ShoutComment";
}
if ($conf['date'] == "yes" && $row['timestamp']) {
$displayTime = shout_get_offsettime($row['timestamp']);
$displayTime = date($rowD['date'], $displayTime) . ' ' . date($rowD['time'], $displayTime);
$tempContent[$i] .= '<br/>' . $displayTime;
}
$tempContent[$i] .= "</td></tr>";
}
Merci d'avance pour votre aide