Notifications
Retirer tout
Submit issues
2
Posts
2
Utilisateurs
0
Reactions
2,936
Vu
Début du sujet
When I try to open report ticket, "Courbe de progression des tickets" I have :
2018-04-24 08:44:24.894 ** ERROR ** [V7.0.5] on file '/var/www/projeqtor/report/headerFunctions.php' at line (89)
2018-04-24 08:44:24.894 ** ERROR ** [V7.0.5] cause = dirname() expects exactly 1 parameter, 2 given
Posté : 24 Avr AM 10:044
Issue occurs only on PHP 5.6 or lower
Fix is to replace last lines in /report/headerFunctions.php, from
function getFontLocation($font) {
$current=dirname(__FILE__,2);
return "$current/external/pChart2/fonts/$font.ttf";
}
?>
to
function getFontLocation($font) {
$current=dirname_recursive(__FILE__,2);
return "$current/external/pChart2/fonts/$font.ttf";
}
function dirname_recursive($path, $count=1){
if ($count > 1){
return dirname(dirname_recursive($path, --$count));
}else{
return dirname($path);
}
}
?>
Posté : 24 Avr PM 16:044