• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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