1

我正在尝试重命名 v Tiger crm 中的菜单项。我用谷歌搜索,但我无法获得正确的信息。我尝试更改菜单项并收到以下警告。

'contacts'=>'customers' in include/language/en_us.lang.php

Warning: Cannot modify header information - headers already sent by (output started at ``vtigercrm/include/language/en_us.lang.php:1) in vtigercrm/index.php on line 606

Warning: Cannot modify header information - headers already sent by (output started at ``/vtigercrm/include/language/en_us.lang.php:1) in vtigercrm/index.php on line 608

Warning: Cannot modify header information - headers already sent by (output started ``at/vtigercrm/include/language/en_us.lang.php:1) in vtigercrm/index.php on line 610

4

2 回答 2

2

利用

ob_start(); 和 ob_flush();

在您的 index.php 和 en_us.lang.php 页面中,问题将得到解决。

于 2013-04-20T10:31:28.300 回答
0

1-该错误表明在开始 php 语句之前有一个空行或 2-您可以将 en_us.lang.php 保存为 utf8 格式。
解决方案:

对于 1:在提到的文件的开头和结尾删除之前<?php和之后的任何额外行。对于2:使用notepad++将编码转换为 没有BOM的UTF8,然后保存。?>

于 2013-04-20T06:44:25.950 回答