Thread: Fatal Error
View Single Post
03-15-2011, 01:59 PM   #4
Jeff
Administrator
 
Jeff's Avatar
 
Join Date: Jul 2010
Posts: 402
Rep Power: 10
Jeff is getting browny points
Hmm yes, I believe this is a bug. This should fix it for you, please confirm:

Find this line in vbbridge.php:

Code:
if ( (!preg_match('#wp-admin#', $_POST['redirect_to']) and !defined('WP_ADMIN') and !defined('XMLRPC_REQUEST') and !$_GET['preview']) or defined('USE_ADMINCP_BRIDGE')):
Change to:

Code:
if ( (!preg_match('#wp-admin#', $_POST['redirect_to']) and !defined('WP_ADMIN') and !defined('XMLRPC_REQUEST') and !$_GET['preview'] and !$install) or (defined('USE_ADMINCP_BRIDGE') and !$install)):
Jeff is offline   Reply With Quote