Bug tracker
Update from 3.0.B4-dev to 3.0.B4 not working (fix completed in vcs)
Comments / History
Could you change your install/install_update.php file in the following way and test again?
Search line 99:
- Code: Select all
/**
* Check for user session
* - commented out for beta3 with "broken" install check routine
if (!$user->data['is_registered'])
{
login_box('', $user->lang['LOGIN_UPDATE_EXPLAIN']);
}
if (!$auth->acl_get('a_'))
{
trigger_error($user->lang['NO_AUTH_UPDATE']);
}
*/
Replace with:
- Code: Select all
// Check for user session
if (!$user->data['is_registered'])
{
login_box('', $user->lang['LOGIN_UPDATE_EXPLAIN']);
}
if (!$auth->acl_get('a_'))
{
trigger_error($user->lang['NO_AUTH_UPDATE']);
}
Should I define DEBUG_EXTRA and try to upgrade or do you want me to investigate why it's not working now? (I am using this snapshot: phpBB3-CVS_2006-11-26).
1. DEBUG_EXTRA is commented out. Nothing else is changed yet.
2. DEBUG_EXTRA is commented out. I applied your patch.
Your patch is not executed anyway as the redirect happens earlier on line 95: $user->setup('install');