Reputation: 51
How do I change the default charset from UTF-8 to ISO-8859-1 in phpMyAdmin?
Upvotes: 1
Views: 25928
Reputation: 644
You need to go to phpmyadmin > information_schema > schemata >
change your DEFAULT_CHARACTER_SET_NAME
with query
Upvotes: 4
Reputation: 5504
You can change the default charset in your config.php
$cfg['DefaultLang'] = 'ISO-8859-1';
Upvotes: 0
Reputation: 85476
Find your config.inc.php and add or edit the line
$cfg['DefaultCharset'] = 'iso-8859-1';
Upvotes: 1