• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

New Install Plesk 8.2 On Windows2003 ENT Can't Login Control Panel Please Help

H

hack3rb43

Guest
New Install Plesk 8.2 On Windows2003 ENT Can't Login Control Panel

I use Windows Server 2003 ENT SP2 New Install

And Install Plesk 8.2 On Windows

Just to work any service

but i try to login on control panel

have a error

Unable initialize admin session:
---------------------- Debug Info -------------------------------
0: D:\SWsoft\Plesk\admin\plib\cmd_loginup.php:237
createSessionCommon(integer '1', string 'admin', boolean true, boolean false, string '', NULL null, boolean false)
1: D:\SWsoft\Plesk\admin\plib\cmd_loginup.php:357
createSessionAdmin(string 'admin', string '********', boolean false, string '', boolean false, boolean true)
2: D:\SWsoft\Plesk\admin\plib\cmd_loginup.php:125
createSession(string 'admin', string '********')
3: D:\SWsoft\Plesk\admin\htdocs\login_up.php3:23

http://img519.imageshack.us/img519/5033/47553382rq5.jpg

Please Help Me

I very stupid to use windows + plesk

I can use Linux + Plesk

Thank for any ideal
 
Hello hack3rb43,

Thank you for the report. This is known issue. It is fixed in Plesk 8.3 for Windows.

Now you should done the followings:

1. sc stop PleskControlPanel
2. cd %plesk_bin%
3. remove all records from table psa.sessions:

dbclient.exe --direct-sql --sql="delete from sessions"

4. change type of the fields sessions.login_time and sessions.click_time to text(255):

dbclient.exe --direct-sql --sql="alter table sessions drop column login_time"
dbclient.exe --direct-sql --sql="alter table sessions add column login_time text(255)"

dbclient.exe --direct-sql --sql="alter table sessions drop column click_time"
dbclient.exe --direct-sql --sql="alter table sessions add column click_time text(255)"

5. sc start PleskControlPanel
 
Back
Top