You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since April 2015, WordPress uses utf8mb4 by default. It would be nice if you do so as well in config/application.php.
When I got this error using wp import export.sql:
ERROR 1366 (HY000) at line 215: Incorrect string value: '\xF0\x9F\x8C\xAE" ...' for column 'option_value' at row 1
It cost me some time to realize, that my wp-config was wrong.
Changing define('DB_CHARSET', 'utf8');
to define('DB_CHARSET', 'utf8mb4');
resolved it.
The text was updated successfully, but these errors were encountered:
* 'master' of github.com:roots/bedrock:
Add wp-password-bcrypt plugin for secure passwords
1.5.4 CHANGELOG
Fixroots#241 - Use https for wpackagist.org
Bump WordPress to 4.4.2
Bump composer/installers
1.5.1 CHANGELOG
Use oscarotero/env instead of `getenv`
Update CHANGELOG.md
In Bash, environment variable is always a string. Because of the way this constant is checked in WP ( defined('DISABLE_WP_CRON') && DISABLE_WP_CRON ), DISABLE_WP_CRON=false would resolve to true.
Fixroots#230 - Set default `DB_CHARSET` to `utf8mb4`
Bump WordPress to 4.4.1
Bump WordPress to 4.4
Update README.md
used nested WP_HOME in WP_SITEURL
# Conflicts:
# composer.json
# composer.lock
Since April 2015, WordPress uses utf8mb4 by default. It would be nice if you do so as well in config/application.php.
When I got this error using
wp import export.sql
:ERROR 1366 (HY000) at line 215: Incorrect string value: '\xF0\x9F\x8C\xAE" ...' for column 'option_value' at row 1
It cost me some time to realize, that my wp-config was wrong.
Changing
define('DB_CHARSET', 'utf8');
to
define('DB_CHARSET', 'utf8mb4');
resolved it.
The text was updated successfully, but these errors were encountered: