Spaces:
Sleeping
Sleeping
| // 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', '5E486bKE1RcXE|NFaZ1678Tr%^/1pJ)3-8Eg^Q+]MZgY(Uk>p^$%6@rE>?)d?,N}'); | |
| define('SECURE_AUTH_KEY', 'i(rQ5G;Az5#X4} ov9mHe7Kjq30G690]-_y&as8T /w^L--(Z1{nLZB(N!8}+69_'); | |
| define('LOGGED_IN_KEY', 'x!bc&r<E|V^8x-sAZb|PSQe7;d[_ME=>KY{H}VlH/Cp0ZT.bP;9OyN!{sm9FYI=F'); | |
| define('NONCE_KEY', 'aU^B-[kYd2>d[smM[S#FB30,iI|i32LSLb]X[<]^X_H2=0>OeHV^:}g+r11e,@&6'); | |
| define('AUTH_SALT', 'xU;kYaS/e_ab40F8tpk~gbJ{l=:Wd+e2hFx >9a>{z6V|^LDlOGjRb&/%kC*P,;m'); | |
| define('SECURE_AUTH_SALT', 'vZaY75g/e`]jej$7a*A+>x4Mp+|G[D_s*.=YUgYe@-Za&+O;L~;Pu?VnBvX=X=|P'); | |
| define('LOGGED_IN_SALT', 'UG332T3}3]||>KK:PmmNIyO+zK1Fq;:r;Mf,hY|Rrb6o{!j ilJ+VhaVSy*0Z_N5'); | |
| define('NONCE_SALT', '-R1575V=JEIu0e_F$0-jcmLbt&rB6wS6mO#Q#NP#nF_3WB]{?>R>1a2a|=(nvxx|'); | |
| // 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'); |