• support[@]kurinchilion.com
  • +1 (888) 666-4252

Blog

XAMPP MySQL Shutdown: Fatal error: Can’t open and lock privilege tables: Table ‘.\mysql\db’

Mar 13, 2024 - by kurinchilamp /MySql/ 217 Views
Step 1: Go to C:\xampp\mysql. Make sure you are in the correct file location. Step 2:  Backup the data folder by making a copy of the folder Step 3: Extract the "mysql" folder from C:\xampp\mysql\backup. Step 4: Replace the mysql folder inside C:\xampp\mysql\data\ Step 5: Restart MySQL service from XAMPP
Continue Reading

phpMyAdmin – The configuration file now needs a blowfish secret passphrase

Mar 18, 2022 - by kurinchilamp /MySql/ 284 Views
Configuration file in phpmyadmin will require a blowfish_secret to be set. Ensure to check if the below line is has the needed value. (more…)
Continue Reading

MySQL garbled data due to UTF-8 double encoding

Mar 18, 2019 - by kurinchilamp /MySql/ 290 Views
For example, you may have table with varchar, text or longtext fields and you may see garbled data in it. Though the text appears correctly on web pages, inside MySQL junk characters may appear. CREATE TABLE `my_news` ( `nid` bigint(10) NOT NULL DEFAULT '0', `title` text, `short_news` longtext) ENGINE=MyISAM DEFAULT CHARSET=utf8; In order to correct this error, try to alter the table in the following sequence. (more…)
Continue Reading

How to change WordPress admin password in MySQL?

Jan 05, 2019 - by kurinchilamp /MySql/ 293 Views
Step 1: Identify the user id for which you want to change the password Step 2: Issue the below MySQL command to update the password for the selected user update wpgi_users set user_pass=MD5('yourpasswordgoeshere') where wpgi_users.id=1
Continue Reading

MySQL Error: Got a packet bigger than ‘max_allowed_packet’ bytes

Aug 09, 2014 - by kurinchilamp /MySql/ 310 Views
When trying to import large SQL dump, you often get the above message. Remedy for this issue is to increase the packet size of MySQL's daemon by setting a packet size of max_allowed_packet. Sudo to your account and set the following root $ mysql -u admin -p mysql> set global net_buffer_length=1000000; mysql> set global max_allowed_packet=1000000000; In the command line, issue the command $ mysql --max_allowed_packet=128M -uUSER -pPASSWORD database < database.sql.dump
Continue Reading

Mysql: Another MySQL daemon already running with the same unix socket.

Apr 04, 2014 - by kurinchilamp /MySql/ 281 Views
After VPS reboot, you may encounter this issue and the fix is simple. Follow these stops to prevent this error. $ service mysqld stop $ mv /var/lib/mysql/mysql.sock /var/lib/mysql/mysql.sock.bak $ service mysqld start
Continue Reading

TECHNOLOGY DEV STACK

Following are some of the technologies that we use to build and maintain solutions for our clients.