1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/wordpress_ynh.git synced 2024-09-03 20:36:10 +02:00
wordpress_ynh/conf/wp-config.php
2013-12-06 23:14:31 +01:00

28 lines
527 B
PHP

<?php
// Database
define('DB_NAME', 'yunobase');
define('DB_USER', 'yunouser');
define('DB_PASSWORD', 'yunopass');
define('DB_HOST', 'localhost');
define('DB_CHARSET', 'utf8');
define('DB_COLLATE', '');
// Keys
KEYSTOCHANGE
// Prefix
$table_prefix = 'wp_';
// i18n
define('WPLANG', 'I18NTOCHANGE');
// Debug mode
define('WP_DEBUG', false);
// Path
if ( !defined('ABSPATH') )
define('ABSPATH', dirname(__FILE__) . '/');
// WordPress settings path
require_once(ABSPATH . 'wp-settings.php');