1
0
Fork 0

Fixed settings for test mysql database and updated documentation

This commit is contained in:
Silke Meyer 2017-10-04 20:25:15 +02:00
commit eadeb3ed21
3 changed files with 27 additions and 19 deletions

View file

@ -4,8 +4,8 @@
// Copy or rename this file to .htconfig.php
$db_host = 'localhost';
$db_user = 'root';
$db_pass = 'root';
$db_user = 'friendica';
$db_pass = 'friendica';
$db_data = 'friendica';
// If you are using a subdirectory of your domain you will need to put the
@ -73,3 +73,5 @@ $a->config['system']['debugging'] = true;
$a->config['system']['logfile'] = 'logfile.out';
$a->config['system']['loglevel'] = LOGGER_DEBUG;
// display php errors
ini_set('display_errors', '1');