wpconfig…
<?php
/** WordPress's config file **/
/** https://www.ads-software.com/ **/
// ** MySQL settings ** //
define('WP_CACHE', true); //Added by WP-Cache Manager
define('DB_NAME', '*******'); // The name of the database
define('DB_USER', '******'); // Your MySQL username
define('DB_PASSWORD', '*******'); // ...and password
define('DB_HOST', '*******'); // ...and the server MySQL is running on
// Change the prefix if you want to have multiple blogs in a single database.
$table_prefix = 'wp_'; // example: 'wp_' or 'b2' or 'mylogin_'
// Turning off Post Revisions. Comment this line out if you would like them to be on.
define('WP_POST_REVISIONS', false );
// Change this to localize WordPress. A corresponding MO file for the
// chosen language must be installed to wp-includes/languages.
// For example, install de.mo to wp-includes/languages and set WPLANG to 'de'
// to enable German language support.
define ('WPLANG', '');
define('WP_ALLOW_MULTISITE', true);
define( 'MULTISITE', true );
define( 'SUBDOMAIN_INSTALL', false );
$base = '/';
define( 'DOMAIN_CURRENT_SITE', 'www.mymythos.org' );
define( 'PATH_CURRENT_SITE', '/' );
define( 'SITE_ID_CURRENT_SITE', 1 );
define( 'BLOG_ID_CURRENT_SITE', 1 );
define( 'AUTH_KEY', 'i@(&gk9||49 TC!!7 ko=_Tr3u,EK@lvHekPW,,DN^R5)hmr;eM3R|ZwqX+;n)u6' );
define( 'SECURE_AUTH_KEY', '~|saaYHr~{!z>}dTRjI9QUo=oH=D1Xnj|SdL8&O9BkT|*=WX@X?^Rd)).&s>p}=[' );
define( 'LOGGED_IN_KEY', 's4gA{]=_PGMdm8~EyW7HeH7DUh7VXOWD1h9_|Ts}=~u$F6n&XVHhPq$<2bbF@7uQ' );
define( 'NONCE_KEY', '=3;SH^9n~Jb2}xt=X.SotJ#-!j* KGfLI.-0W|oJKS,jgngT,[TsC.1CqF*X494s' );
define( 'AUTH_SALT', '6(N@U@ao+eYz[!|Qg(t;Xj$?xv4|TJ&#
an!yqN0I_%zrF w.t/hqcfP<+s[rh!-‘ );
define( ‘SECURE_AUTH_SALT’, ‘<?bovaai(jx=Q<97=RPfpx>P2/[ZSW`u8-&iG;Jde]65tqe@RA2Z|^ =9.XIiU$s’ );
define( ‘LOGGED_IN_SALT’, ‘I6edq3EHS4GGja-zM*Hnb=YZ&Q{hVgpa4{Xh5A]qM]Q@{
fY|]e2=8L+mzxc_;u’ );
define( ‘NONCE_SALT’, ‘e+^l)Jc4}/&uGU~I;c.Dt&-S&A@UfNoy[50+k^#5m/X(JAO%xe<^lQu4TxWI2{]n’ );
/* Stop editing */
$server = DB_HOST;
$loginsql = DB_USER;
$passsql = DB_PASSWORD;
$base = DB_NAME;
define(‘ABSPATH’, dirname(__FILE__).’/’);
// Get everything else
require_once(ABSPATH.’wp-settings.php’);
?>
`
* mod edit: obfuscated db username & password *