first checkin of wp_config.php
authorgreg gay <ggay@ocad.ca>
Wed, 22 Jun 2011 20:36:53 +0000 (20:36 -0000)
committergreg gay <ggay@ocad.ca>
Wed, 22 Jun 2011 20:36:53 +0000 (20:36 -0000)
mods/wordpress/wp_config.php [new file with mode: 0644]

diff --git a/mods/wordpress/wp_config.php b/mods/wordpress/wp_config.php
new file mode 100644 (file)
index 0000000..5313d77
--- /dev/null
@@ -0,0 +1,13 @@
+<?php
+// WordPress database access information.
+// Set the values below to those needed to access your Wordpress database
+// Wordpress needs to be installed in the same server as ATutor
+
+define('WP_DB_USER',   '');           # enter your mysql database user name
+define('WP_DB_PWD',    '');           # enter your mysql database password
+define('WP_DB_NAME',   'wordpress');         #default "wordpress"
+define('WP_DB_PREFIX', 'wp_');            #default "wp_"
+define('WP_DB_HOST',   'localhost');      #default "localhost"
+define('WP_DB_PORT',   '3600');           #default "3600"
+
+?>
\ No newline at end of file