TCPDF già installato

La libreria tcpdf_min/tcpdf.php esiste già.

In certificates.php usa questo blocco per caricarla:

/** TCPDF loader */
if (!class_exists('TCPDF')) {
    $tcpdfPath = __DIR__ . '/tcpdf_min/tcpdf.php';
    if (file_exists($tcpdfPath)) {
        require_once $tcpdfPath;
    }
}