File size: 1,576 Bytes
d5e631d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f71b768
d5e631d
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
// Enable debugging
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', true);

// SQLite Database configuration
define('DB_DIR', '/var/www/html/wp-content/database/');
define('DB_FILE', 'wordpress.db');

// Set database details
define('DB_NAME', DB_DIR . DB_FILE);
define('DB_USER', 'sqlite');
define('DB_PASSWORD', 'sqlite');
define('DB_HOST', 'localhost');
define('DB_CHARSET', 'utf8');
define('DB_COLLATE', '');

// Authentication Unique Keys and Salts
// Generate yours at: https://api.wordpress.org/secret-key/1.1/salt/
define('AUTH_KEY',         'b!9pw![oL:F:t=qLU%g!@|Fpjr!I-YKW$2|Yj|ZO3l*%k=b+Nnl:/x?+{RK%)C]G');
define('SECURE_AUTH_KEY',  '`h0A@e{d[bYNx.q8H|G}L@!6v7p55}CTSA 7W-L~)wqp1|>pcr.Hgp|mm:UA!_O!);
define('LOGGED_IN_KEY',    '#sgM/AoqDgi.=USSW+HpdG-qW-s@.-,*e-+--Za-.3qS,USE1-)d1AVrkn@) -oy');
define('NONCE_KEY',        'f_D:9hOd#}+~|vxzG%r<lHtgTR$NU$n-Uu`EiSI|.Hwx-a,|_Oxl.yd!XpL)G=');
define('AUTH_SALT',        '3-=3JuIpg&I+ij+:QD9lWxIAOH+*a@DW:eV|+8GvQ5Qo5a~,h]c!p7>`wGGKI3AT');
define('SECURE_AUTH_SALT', ';ddGYFK6[>CT^L7YJpE$g{=Uayqj 3ru;`xM.e8waEA-3U6Z|</^^<,H-[[s+N6f');
define('LOGGED_IN_SALT',   'XVWDk<~g_&TmzT_*yu%dzUP# rNMl(K%A*+-*%RW$ha uY][uPiGXjb4-q`lNW5l');
define('NONCE_SALT',       'ZP~EUL?!jXYYMYW?8OSV3m@=Ux}vgo4o2^Qt29C]vZ;(f+jukfJqK{{mg=7T)](0');

// Table prefix
$table_prefix = 'wp_';

// Absolute path to the WordPress directory
if ( !defined('ABSPATH') )
    define('ABSPATH', dirname(__FILE__) . '/');

// Sets up WordPress vars and included files
require_once(ABSPATH . 'wp-settings.php');