I found a solution to my particular problem, hope this helps out other people with the same problem:
Quote
Almost in all of the cases the problem may be caused by the apache (or other server) default encoding, that is preset. On some servers, this encoding is sent as a header in the cookie and causes issues. In such case, there is easy and fast solution:
- Open the file globals.php and at the end of it, right after the last
Code:
}
and right before
Code:
?>
put the following code:
Code:
header("Content-Type: text/html; charset=ENCODING"

;
where ENCODING should be replaced by the encoding you desire.