• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

Login Problem...

S

Silence

Guest
Hi There,


Yesterday i create a new account client for one of our costumers, when he try to login, it gets this error:

ERROR: PleskMainDBException
DB query failed: Duplicate entry '4-190-custom' for key 2

Additionally, an exception has occurred while trying to report this error: PleskMainDBException
DB query failed: Duplicate entry '4-190-custom' for key 2

0: C:\Program Files\SWsoft\Plesk\admin\plib\common_func.php3:213
db_query(string 'insert into `DashboardPreset` ( `name`, `type`, `uri`) values( '4-190', 'custom', '/plesk/client@/dashboard/')')
1: C:\Program Files\SWsoft\Plesk\admin\plib\class.Table.php:336
Table->update(array)
2: C:\Program Files\SWsoft\Plesk\admin\plib\class.cObject.php:333
cObject->update()
3: C:\Program Files\SWsoft\Plesk\admin\plib\dashboard\DashboardPreset.php:183
DashboardPreset->update()
4: C:\Program Files\SWsoft\Plesk\admin\plib\user\User.php:401
User->addDashboardRecent(object of type plesk__client__properties)
5: C:\Program Files\SWsoft\Plesk\admin\plib\class.Form.php:502
Form->FastPrint()
6: C:\Program Files\SWsoft\Plesk\admin\htdocs\clients\cl_ed.php3:336


Solutions?

I try to check instalation Plesk, but nothing.

Thanks in Advance!
 
Silence1

This error actually means that there is alreadt record exists in your plesk database for that client entry. You can check it with the following query:

mysql> SELECT * FROM DashboardPreset WHERE name = '4-190';

and if returns some entries - just remove them manually:

mysql> DELETE FROM DashboardPreset WHERE name = '4-190';

P.S. Please do not forget to backup original database before doing any changes - just in case.
 
Back
Top