changed git call from https to git readonly
[atutor.git] / mods / wordpress / wp_config.php
1 <?php
2 // WordPress database access information.
3 // Set the values below to those needed to access your Wordpress database
4 // Wordpress needs to be installed in the same server as ATutor
5
6 define('WP_DB_USER',    '');           # enter your mysql database user name
7 define('WP_DB_PWD',     '');           # enter your mysql database password
8 define('WP_DB_NAME',    'wordpress');         #default "wordpress"
9 define('WP_DB_PREFIX',  'wp_');            #default "wp_"
10 define('WP_DB_HOST',    'localhost');      #default "localhost"
11 define('WP_DB_PORT',    '3600');           #default "3600"
12
13 ?>