summaryrefslogtreecommitdiff
path: root/www/crm/wp-config.Reevo.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/crm/wp-config.Reevo.php')
-rw-r--r--www/crm/wp-config.Reevo.php35
1 files changed, 35 insertions, 0 deletions
diff --git a/www/crm/wp-config.Reevo.php b/www/crm/wp-config.Reevo.php
new file mode 100644
index 00000000..f86e69d0
--- /dev/null
+++ b/www/crm/wp-config.Reevo.php
@@ -0,0 +1,35 @@
+<?php
+# ----
+# Copyright (C) 2013-2020 - Reevo Project (http://reevo.org)
+# License: Affero GPL version 3 - http://www.gnu.org/licenses/agpl.html
+# ----
+
+include(__DIR__ . '/../../etc/global_config.php');
+
+
+define( 'DB_NAME', $REEVO_DB_WP );
+define( 'DB_USER', $REEVO_DB_USER );
+define( 'DB_PASSWORD', $REEVO_DB_PASS );
+define( 'DB_HOST', 'localhost' );
+
+define( 'DB_CHARSET', 'utf8mb4' );
+define( 'DB_COLLATE', '' );
+
+define( 'AUTH_KEY', $WP_REEVO_AUTH_KEY );
+define( 'SECURE_AUTH_KEY', $WP_REEVO_SECURE_AUTH_KEY );
+define( 'LOGGED_IN_KEY', $WP_REEVO_LOGGED_IN_KEY );
+define( 'NONCE_KEY', $WP_REEVO_NONCE_KEY );
+define( 'AUTH_SALT', $WP_REEVO_AUTH_SALT );
+define( 'SECURE_AUTH_SALT', $WP_REEVO_SECURE_AUTH_SALT );
+define( 'LOGGED_IN_SALT', $WP_REEVO_LOGGED_IN_SALT );
+define( 'NONCE_SALT', $WP_REEVO_NONCE_SALT );
+
+$table_prefix = 'wp_';
+
+define( 'WP_DEBUG', false );
+
+if ( ! defined( 'ABSPATH' ) ) {
+ define( 'ABSPATH', dirname( __FILE__ ) . '/' );
+}
+
+require_once( ABSPATH . 'wp-settings.php' );