iMayne
iMayne

Reputation: 51

Change default Charset

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

Upvotes: 1

Views: 25928

Answers (3)

Ismail
Ismail

Reputation: 644

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

Upvotes: 4

Stefan H Singer
Stefan H Singer

Reputation: 5504

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

Upvotes: 0

stivlo
stivlo

Reputation: 85476

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

$cfg['DefaultCharset'] = 'iso-8859-1';

Upvotes: 1

Related Questions