Forum

[V7.0.5] Error on t...
 
Notifications
Retirer tout

[V7.0.5] Error on ticket report

2 Posts
2 Utilisateurs
0 Reactions
2,937 Vu
(@kugan49)
Posts: 4
Active Member
Début du sujet
 
[#5094]

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
(@babynus)
Posts: 14952
Membre Admin
 

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
Share:
Retour en haut