|
几个问题:
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升级的时候。 |
|