Hi.
I've been trying to turn some PHP options OFF through .htaccess, but when I place them I get 500 error (Internal Server Error).
Code:
php_flag register_globals off
php_flag session.use_trans_sid off
Since my website is encoded in UTF-8, I also use these settings for correct encoding. With these ones I get the same error as when I place the ones above.
Code:
php_value default_charset UTF-8
php_flag register_globals OFF
php_flag session.use_trans_sid OFF
php_value session.use_only_cookies 1
php_value mbstring.language uni
php_value mbstring.internal_encoding UTF-8
php_value mbstring.http_input auto
php_value mbstring.http_output pass
php_flag mbstring.encoding_translation ON
php_value mbstring.detect_order ASCII,JIS,UTF-8,EUC-JP,SJIS,EUC-CN,BIG-5,EUC-KR
php_value mbstring.substitute_character none
php_value output_handler none
php_flag output_buffering OFF
Any clues?
It used to work in another server...
Thanks in advance,
-Yuji