Fix for UCenter Login Flash and Unable to Access Admin Panel After Fresh X3.2 Installation:
The issue is caused by cookies:Open uc_server/model/admin.php

Find this on line 22
$this->cookie_status = 0;
Change it to
$this->cookie_status = isset($_COOKIE['sid']) ? 1 : 0;