The error:
Fatal error: Only variables can be passed by reference in .../modules/acquia/admin_menu/admin_menu.inc on line 536
The fix:
default:
// Flush all caches; no need to re-implement this.
module_load_include('inc', 'system', 'system.admin');
$form_state = array();
$null = NULL;
system_clear_cache_submit($form_state, $null);
break;
Alternatively get admin_menu-6.x-3.0-alpha1 or apply this patch.