• About
Triona Weblog

Software Development and much more

vTiger CRM 5.0.4 umlaut display issue

25.08.2009 by Holger Klatt

The freely available CRM software vTiger (version 5.0.4) still has issues with the display of UTF-8 and ISO-8859-1x characters (German umlauts like äöü and ß).

When you open an EMail in the Webmailer module, the text following such a character is completely gone – the rendering engine of vTiger simply stops the rendering of all characters starting from here.

After many reading in the internet and in the relevant forums and trying out several proposals for fixing this issue, one simple change did the trick:

Open ../modules/Webmails/Webmails.php and scroll down to the function declaration load_mail() – in our sources, this is located around line 712.

function load_mail($attach_tab)
{
    // parse the message
    $ref_contenu_message =  @imap_headerinfo($this->mbox, $this->mailid);

Right after the “parse…” comment add the following line

    global $default_charset;

Now the beginning of the function looks as follows:

function load_mail($attach_tab)
{
    // parse the message
    // HK 25.08.2009 fix for umlaut display problem - added the following line
    global $default_charset;
    $ref_contenu_message =  @imap_headerinfo($this->mbox, $this->mailid);

This solved the issue for us.

After upgrading to the new version 5.1.0, we will have to see whether the developers of this really outstanding piece of software have provided a common fix for all of those Hungarians, Germans and other poor special-character-users like us 🙂

Posted in: General Tagged: CRM, PHP, vTiger
September 2023
M T W T F S S
 123
45678910
11121314151617
18192021222324
252627282930  
« Nov    

Tags

API Architecture CDI Collections Comparable Comparator Database EA Eclipse EJB Enterprise Architect Excel Hessian HTML Iteration Java Java 8 JavaEE Java EE Java Enterprise Development javascript Javascript Canvas HTML5 JEE JEE 6 JPA jQuery JSF linux Makro Map MariaDB Maven Oracle Plugins Relation relationship Richfaces Service Service Facade Set SOA Subversion Tutorial VBA XML

Recent Posts

  • Domain Driven Design und Event Storming
  • NESTJS BEYOND „HELLO WORLD“
  • Jakarta EE 9 – An upheaval with difficulties
  • Jakarta EE 9 – Ein Umbruch mit Schwierigkeiten
  • Erste Schritte mit Hibernate Spatial

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org

Copyright © 2023 Triona Weblog.

Impressum | Datenschutzerklärung