Last active
July 26, 2017 13:06
-
-
Save kelsS/1872a41227ac32a8cf1ebe0255cd8510 to your computer and use it in GitHub Desktop.
Example Drupal Settings.php with UTF8MB4 Database Enabled
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$databases['default']['default'] = array( | |
'driver' => 'mysql', | |
'database' => 'databasename', | |
'username' => 'username', | |
'password' => 'password', | |
'host' => 'localhost', | |
'charset' => 'utf8mb4', | |
'collation' => 'utf8mb4_general_ci', | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment