aboutsummaryrefslogtreecommitdiff
path: root/locopy/wp-settings.php
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2025-11-14 20:30:32 +0100
committerEugen Wissner <belka@caraus.de>2025-11-14 20:30:32 +0100
commit964d815a90a78c0ebbfc2fa57f8b847c1fab298d (patch)
treedf45816448f805414208f2e8bf4f4e160e104681 /locopy/wp-settings.php
parentcfa3d93290afa369d80f7a8921c32ad9570396b0 (diff)
downloadkazbek-964d815a90a78c0ebbfc2fa57f8b847c1fab298d.tar.gz
Add locopy
Diffstat (limited to 'locopy/wp-settings.php')
-rw-r--r--locopy/wp-settings.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/locopy/wp-settings.php b/locopy/wp-settings.php
new file mode 100644
index 0000000..42aec0e
--- /dev/null
+++ b/locopy/wp-settings.php
@@ -0,0 +1,12 @@
+<?php
+define('ABSPATH', __DIR__ . '/');
+
+require_once 'wp-config.php';
+
+echo json_encode([
+ 'DB_NAME' => DB_NAME,
+ 'DB_USER' => DB_USER,
+ 'DB_PASSWORD' => DB_PASSWORD,
+ 'DB_HOST' => DB_HOST,
+ 'table_prefix' => $table_prefix
+]);