Change default Charset

2019-01-27 07:38发布

How do I change the default charset from UTF-8 to ISO-8859-1 in phpMyAdmin?

标签: phpmyadmin
3条回答
狗以群分
2楼-- · 2019-01-27 08:03

You need to go to phpmyadmin > information_schema > schemata > change your DEFAULT_CHARACTER_SET_NAME with query

查看更多
Explosion°爆炸
3楼-- · 2019-01-27 08:06

Find your config.inc.php and add or edit the line

$cfg['DefaultCharset'] = 'iso-8859-1';
查看更多
神经病院院长
4楼-- · 2019-01-27 08:12

You can change the default charset in your config.php $cfg['DefaultLang'] = 'ISO-8859-1';

查看更多
登录 后发表回答