Skip to content

Commit

Permalink
Change default MySQL database server to 'localhost' to prevent issues…
Browse files Browse the repository at this point in the history
… with Unix socket connections
  • Loading branch information
tomreyn authored and filux committed Mar 27, 2014
1 parent 1c9cd73 commit 12a8040
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
define( 'PRODUCT_NAME', 'MegaGlest' );
define( 'PRODUCT_URL', 'http://megaglest.org' );

define( 'MYSQL_HOST', '127.0.0.1' );
define( 'MYSQL_HOST', 'localhost' );
define( 'MYSQL_DATABASE', 'megaglest_master' );
define( 'MYSQL_USER', 'not_root' );
define( 'MYSQL_PASSWORD', 'your_pwd' );
Expand Down

0 comments on commit 12a8040

Please sign in to comment.