• 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!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

Problem when delete domain

T

ThanhBT

Guest
Code:
Unable to init SSLCertificate object: SSLCertificate: unable to select: no such row in the table

0: /usr/local/psa/admin/plib/class.PhDomain.php:401
    PhDomain->reset(integer '0', boolean true, boolean false)
1: /usr/local/psa/admin/plib/class.BsDomain.php:289
    BsDomain->reset(integer '0')
2: /usr/local/psa/admin/plib/class.BsDomain.php:283
    BsDomain->delete(integer '0')
3: /usr/local/psa/admin/plib/class.BsDomain.php:524
    mdeleteDomains(array)
4: /usr/local/psa/admin/plib/class.Manager.php:351
    Manager->removeDomains(array)
5: /usr/local/psa/admin/htdocs/domains/domains.php3:215
How to fix this problem? Thank in advance
 
Looks like the psa record for this domain has a wrong number set for the "cert_rep_id" in the domains table.

To fix do the following:

First figuire out if this domain is using the defualt ssl cert, if so great this fix will work!

login to mysql from console.

use psa;

select * from domains where name = 'domain.com';

you will now see the "cert_rep_id" number in the 9th column, it will most likely be some number other then 0, as it should be set to 0, do this by:

update domains set cert_rep_id = 0 where name = 'domain.com';

Make sure to change the domain.com to the actual domain.

If the domain is using an exclusive SSL cert then run an sql query like:

Select * from certificates;

Find the right cert and record the correct ID fom the query result, then update the certrep_id as described above with the proper ID number.

Hope this helps?
 
Back
Top