We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in wp-config.php
define('DB_CHARSET', 'utf8mb4'); define('DB_COLLATE', '');
herberit will use 'utf8_general_ci collate, but it is not matched with utf8mb4 charset, Mysql error occurs
protected function registerEloquent() { global $wpdb; $capsule = new Capsule($this->app); $capsule->addConnection([ 'driver' => 'mysql', /* 'host' => DB_HOST, 'database' => DB_NAME, 'username' => DB_USER, 'password' => DB_PASSWORD, 'charset' => DB_CHARSET, 'collation' => DB_COLLATE ?: 'utf8_general_ci', */ 'host' => $wpdb->dbhost, 'database' => $wpdb->dbname, 'username' => $wpdb->dbuser, 'password' => $wpdb->dbpassword, 'charset' => $wpdb->charset, 'collation' => $wpdb->collate, 'prefix' => $wpdb->prefix ]); .... }
The text was updated successfully, but these errors were encountered:
@hbhe set DB_COLLATE 'utf8mb_unicode_ci'. Herbert will use it
Sorry, something went wrong.
No branches or pull requests
in wp-config.php
herberit will use 'utf8_general_ci collate, but it is not matched with utf8mb4 charset,
Mysql error occurs
The text was updated successfully, but these errors were encountered: