How do I set up my site to use Turkish charset?

How to set up a site to use Turkish text:


Versions 3.0+
These instructions are included in the following support wiki article:

http://geodesicsolutions.com/support/wiki/tutorials/using_different_character_sets/start


Versions Before 3.0:

1. Edit the file xss_filter_inputs.php (or clean_inputs.php if that file exists instead). Find the line:

$input_vars=htmlentities($input_vars);
Replace with:
$input_vars=htmlspecialchars( $input_vars, ENT_COMPAT, 'UTF-8');


2. In the same file, find the line:
$_REQUEST['b']['username'] = htmlentities($_REQUEST['b']['username']);
Replace with:
$_REQUEST['b']['username'] = htmlspecialchars($_REQUEST['b']['username'],ENT_COMPAT,'UTF-8');


3. Follow the instructions 2-4 of the Versions 3.0+ section at the top.

 


Properties ID: 000136   Views: 9011   Updated: 2 years ago