I have double-checked the process for moving wp-config.php
outside the site's root. WordPress does not actually allow you to do that by itself. It will only load a wp-config.php
file above the site's root if that folder does NOT contain the wp-settings.php
file, i.e. it's a nested installation of WordPress sites. If the wp-settings.php file exists, as it should on a functional installation, WordPress will always look for wp-config.php
in the site's root only.
This makes me wonder about your configuration.
Do you have two nested WordPress sites? If so, it would explain why you have a problem with Roles. You'd need to back them up separately.
If you do not have nested sites, you would have to use a trick to get wp-config.php
to load from the root's parent directory. Since wp-config.php
is not a configuration file per se –it just a regular .php file– you can exploit how PHP works. Changing it to something like this:
<?php include_once __DIR__ . '/../wp-config.php';
tells PHP to load a wp-config.php
above the site root whenever WordPress or any plugin try to load the wp-config.php
file in your site's root.
If you instead moved wp-settings.php
as well, you have something that looks like WordPress, functions a lot like WordPress, but is not WordPress. That, I cannot help you with.
If you have merely changed the wp-config.php
in your site's root to include the other file, yes, it is possible to restore the site. Replace the file in your site's root with a regular wp-config.php
after extracting the backup archive, but before visiting the/installation
URL. Here's a minimal file that will do the trick:
<?php
define('DB_NAME', 'irrelevant');
define('DB_USER', 'irrelevant');
define('DB_PASSWORD', 'irrelevant');
define('DB_HOST', 'localhost');
define('DB_CHARSET', 'utf8');
define('DB_COLLATE', '');
define('AUTH_KEY', 'Xk;!X9n.Q6??#>oD#DtK:7{17??D(28L7J4JF_R^|BDwe1c~@ImOK53v(V2a)||F');
define('SECURE_AUTH_KEY', 'ms|s._~)4 ZQr1a_L$BP6@+-m)2bYIraq-ih)D^E=mlG((+,-gUZ|4[@d +/{R*i');
define('LOGGED_IN_KEY', ' [b4!9+^uq:G/P4i;Rrdb-&:_xQ%k@=u^_$Rfh&#|!%2h~-X//6|ABTA:uQfK|ZS');
define('NONCE_KEY', '>H2&ASYj;;Zym4^O_OZ74.5~?zkIp,Ocfx{7lPmx|*sPyu#M%Y~)o4]a>{ |,Obq');
define('AUTH_SALT', 'wdK>MqqF(0|oo7+>;5m0BtCs@R&z|6.z{{/$~Tp?F1xk7-0)qu:c]pGf$sJ]6X(X');
define('SECURE_AUTH_SALT', 'e$SGwNh3k}z}9>[l<9+*@6|.O[jn+Y$lbyp{BD=3FL,J1H$T|wg,&DX&H^<,}t>n');
define('LOGGED_IN_SALT', '}$mAP%ZPjN*nf0O%u)*Xj7RbgR7151?+/&<I5e&c[C<DO1W9NkK6j:_6|n0Scs*g');
define('NONCE_SALT', '/l*se,x:>Yz`[f#CL7IoG?zAXIU|v<Hb>dG^#ie Mw*(=40x_U$z4b>{0^|(a]XQ');
$table_prefix = 'wp_';
define('WP_DEBUG', false);
/* That's all, stop editing! Happy blogging. */
if ( !defined('ABSPATH') )
define('ABSPATH', dirname(__FILE__) . '/');
require_once(ABSPATH . 'wp-settings.php');
Nicholas K. Dionysopoulos
Lead Developer and Director
🇬🇷Greek: native 🇬🇧English: excellent 🇫🇷French: basic • 🕐 My time zone is Europe / Athens
Please keep in mind my timezone and cultural differences when reading my replies. Thank you!