1、图形报表显示不出或是出现乱码问题。
解决方式:
a.如果是1.0.0之前的版本,则需要修改代码,主要是修改一下几处地方:
config文件
$g_default_language = 'chinese_simplified'; #将程序界面语言设为简体中文,chinese_traditional则为繁体中文。
$g_use_jpgraph = ON; # 使用图形报表
$g_jpgraph_path = './JPGraph/src/'; # JPGraph路径
graph_api.php文件,在core目录里面。
由于前期版本对中文的支持很弱,需要自行加上代码,非常感谢前人的摸索。
在graph_api.php中每个“$graph->title->Set(…”后面根据当前的图表是柱图、线图还是饼图)
分别加上下面代码:
//Set the title and axis font if the default_language is set to chinese
if (config_get('default_language') == 'chinese_simplified')
{
$graph->title->SetFont(FF_SIMSUN,FS_NORMAL);
$graph->xaxis->title->SetFont(FF_SIMSUN,FS_NORMAL);
$graph->yaxis->title->SetFont(FF_SIMSUN,FS_NORMAL);
$graph->xaxis->SetFont(FF_SIMSUN,FS_NORMAL);
$graph->yaxis->SetFont(FF_SIMSUN,FS_NORMAL);
}
else if (config_get('default_language') == 'chinese_traditional')
{
$graph->title->SetFont(FF_CHINESE,FS_NORMAL);
$graph->yaxis->title->SetFont(FF_CHINESE,FS_NORMAL);
$graph->xaxis->title->SetFont(FF_CHINESE,FS_NORMAL);
$graph->xaxis->SetFont(FF_CHINESE,FS_NORMAL);
$graph->yaxis->SetFont(FF_CHINESE,FS_NORMAL);
};
对于饼图
//Set the title and legend font if the default_language is set to chinese if (config_get('default_language') == 'chinese_simplified')
{
$graph->title->SetFont(FF_SIMSUN,FS_NORMAL);
$graph->legend->SetFont(FF_SIMSUN,FS_NORMAL);
}
else if (config_get('default_language') == 'chinese_traditional')
{
$graph->title->SetFont(FF_CHINESE,FS_NORMAL);
$graph->legend->SetFont(FF_CHINESE,FS_NORMAL);
};
b.1.0.0之后的版本,已经支持中文,在安装的时候可以在界面中选择自己习惯的语言,则在图形界面也不会出现乱码。
2.系统界面乱码问题。
主要体现数据库编码字符集类型和程序中使用不一问题,如果在mysql数据库中采用的是GB字符集,则用英文语言显示原有数据库的中文记录时也会出现乱码的现象。这种问题主要体现在mantis升级的时候。作者: txy 时间: 2007-1-4 14:31
上面这个方法我试过了,我的Mantis是1.0.6的,按上面说的意思,我的版本已经支持中文了?界面可以正常显示中文,只有图表仍显示乱码!问题仍未解决作者: txy 时间: 2007-1-4 15:12
自己来顶作者: txy 时间: 2007-1-4 15:36
刚才试了一下,语句:
//Set the title and axis font if the default_language is set to chinese
if (config_get('default_language') == 'chinese_simplified')
{
$graph->title->SetFont(FF_SIMSUN,FS_NORMAL);
$graph->xaxis->title->SetFont(FF_SIMSUN,FS_NORMAL);
$graph->yaxis->title->SetFont(FF_SIMSUN,FS_NORMAL);
$graph->xaxis->SetFont(FF_SIMSUN,FS_NORMAL);
$graph->yaxis->SetFont(FF_SIMSUN,FS_NORMAL);
}
else if (config_get('default_language') == 'chinese_traditional')
{
$graph->title->SetFont(FF_CHINESE,FS_NORMAL);
$graph->yaxis->title->SetFont(FF_CHINESE,FS_NORMAL);
$graph->xaxis->title->SetFont(FF_CHINESE,FS_NORMAL);
$graph->xaxis->SetFont(FF_CHINESE,FS_NORMAL);
$graph->yaxis->SetFont(FF_CHINESE,FS_NORMAL);
};
肯本就没有被执行,不知为何?大虾们快帮俺看看作者: danelchen 时间: 2007-1-10 01:09
请参看:http://blog.miforum.org/287/viewspace_63.html作者: cerulean 时间: 2007-2-16 14:47
同样的问题,已经照网上说的方法修改过,但是仍然是乱码(只不过变成另外一种乱码了)