Error while accessing site with special characters. Update collation for database.

I was getting the error while acccessing the http://yourdomainname/collat.php as below -

Error while accessing site with special characters. Update collation for database.

Solution :-

1. Create one collation file in the user account with the ".php" extension. Eg. collat.php
Note : Create the file in public_html or any recommended script path.

2. Write following code in the file :

<?php
$db = mysql_connect('hostname','database_user','database_password');
if(!$db) echo "Cannot connect to the database - incorrect details";
mysql_select_db('database_name'); $result=mysql_query('show tables');
while($tables = mysql_fetch_array($result)) {
foreach ($tables as $key => $value) {
mysql_query("ALTER TABLE $value COLLATE database_collation");
}}
echo "The collation of your database has been successfully changed!";
?>
Note : Replace the database name, username and password in the above code with the collation you wish to set.

3. Change the permission and ownership of the file -

> chmod 644 collat.php
> chown user.user collat.php

4. Save the file and run the URL as: http://yourdomainname/collat.php.
Once the file get run it will set collation for the database present in the collat.php file.

Note : It is only for single database at a time. For another database just delete the previous code from the collate.php file and change it to another database details and run the http://yourdomainname/collat.php

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How to install PHP selector on cPanel with CloudLinux?

If your server installed cPanel with CloudLinux and you will see the below error message at...

Access to context [/] is denied!

While accessing the site, I was getting the error as -Access to context [/] is denied!Solution...

ERROR: Connection dropped by IMAP server. Query: SELECT "INBOX"

If you get the following error while trying to connect to your webmail client: ERROR: Connection...

How to setup the root login alert notification email?

Its very important to keep a check on your servers and who logs into the server, From security...

User is over quota - Webmail

While accessing email account from Webmail, I was getting the error as -...

Powered by WHMCompleteSolution