• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

MIgration Manager BUG

D

datahaus

Guest
Found a BUG in migration manager plesk module PleskX.pl (Version 7.5.2) execution on Redhat Linux 9.0 fail with this error:

SELECT c.id FROM certificates c, Repo
sitory r WHERE c.id=r.component_id AND r.rep_id= ORDER BY c.id
You have an error in your SQL syntax near 'ORDER BY c.id' at line 1


line 3161:
PHP:
    $sql = "SELECT c.id FROM certificates c, Repository r ".                                                                  
      "WHERE c.id=r.component_id AND r.rep_id=".$domain{'cert_rep_id'}.                                                      
      " ORDER BY c.id";

changed to:

PHP:
    $sql = "SELECT c.id FROM certificates c, Repository r ".                                                                  
      "WHERE c.id=r.component_id AND r.rep_id='".$domain{'cert_rep_id'}.                                                      
      "' ORDER BY c.id";

Hope this will help
 
Back
Top