--- wordpress/wp-load.php~ 2009-03-20 10:38:16.000000000 +0200 +++ wordpress/wp-load.php 2009-03-20 10:40:16.081599269 +0200 @@ -21,7 +21,12 @@ error_reporting(E_ALL ^ E_NOTICE ^ E_USER_NOTICE); -if ( file_exists( ABSPATH . 'wp-config.php') ) { +if ( file_exists( '/etc/webapps/wordpress/wp-config.php') ) { + + /** The config file resides in WEBAPPS */ + require_once( '/etc/webapps/wordpress/wp-config.php' ); + +} elseif ( file_exists( ABSPATH . 'wp-config.php') ) { /** The config file resides in ABSPATH */ require_once( ABSPATH . 'wp-config.php' ); --- wordpress-3.5.1/wp-admin/setup-config.php~ 2013-02-06 16:21:34.000000000 +0200 +++ wordpress-3.5.1/wp-admin/setup-config.php 2013-02-06 16:22:14.098004158 +0200 @@ -275,7 +275,7 @@