Hi.
I get blank results as soon as I select items to be displayed on Global Planning view (Tickets for example).
So I've searched into log and found the entry in attachment. Is this a possible bug, or maybe I have to tune my MySQL installation on a different way?
MySQL version is 5.1.39
Many thanks in advance for your assistance
Issue is due to incorrect identification of charset collation in db.
Try a manually specific collation with $paramDbCollation :
$paramDbCollation='utf8';
in parameters.php should do the job in your case
Hi.
The following line did the magic!!!
$paramDbCollation='utf8_general_ci';
many thanks.