Fix UCenter Login Flash After X3.2 Fresh Install and Cannot Access

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;

Leave a Comment

Your email address will not be published.