Question

I am trying to rename the menu items in v tiger crm. I googled but I could not get the right information. I try to change the menu items and getting the following warnings.

'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

Was it helpful?

Solution

use

ob_start (); and ob_flush();

in your index.php and en_us.lang.php pages the problem will solve.

OTHER TIPS

1- that error states there is a blank line before the opening php statement or 2- you may save en_us.lang.php in utf8 format.
solution:

for 1: remove any extra line(s) before <?php and Also after ?> at the beginning and the end of mentioned file.
for 2: use notepad++ to convert encoding to UTF8 without BOM and then save it.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top