Steps to recreate:
1 Open any ticket
2 Select print > ticket thread
3 Result "HTTP ERROR 500" page in new tab

I reviewed other threads and online searches and it appears to be related to the mpdf include. I noticed in the installed version the file /var/www/osticket/include/mpdf/mpdf.php notes it is version 5.7.3.

But if I look in the 1.12.1 upgrade package under /upload/include/mpdf/composer.lock it appears to suggest it would install v7.1.4.

Did somehow mpdf not update properly and this is causing our issue? If so, what is the best way for us to update that individually? Any other ideas on what might be causing the problem?

We just recently updated the server to ubuntu 18.04.3 LTS and we upgraded osticket from 1.10.x to osTicket Core, v1.10.7 (Maintenance Release) then to osTicket Core, v1.12.2 (Latest Release)

Details of our current osticket install:
About this osTicket Installation
Server Information
osTicket Version v1.12.2 (a5d898b) — Up to date
Web Server Software Apache/2.4.29 (Ubuntu)
MySQL Version 5.7.27
PHP Version 7.2.19-0ubuntu0.18.04.2
PHP Extensions
gdlib Used for image manipulation and PDF printing
imap Used for email fetching
xml XML API
xml-dom Used for HTML email processing
json Improves performance creating and processing JSON
mbstring Highly recommended for non western european language content
phar Highly recommended for plugins and language packs
intl Highly recommended for non western european language content
fileinfo Used to detect file types for uploads
APCu Improves overall performance
Zend Opcache Improves overall performance
PHP Settings
cgi.fix_pathinfo "1" is recommended if AJAX is not working
date.timezone Setting default timezone is highly recommended
Database Information and Usage
Schema osTicket (192.168.0.166)
Schema Signature 00c949a623b82848baaf3480b51307e3
Space Used 2469.27 MiB
Space for Attachments 73.52 MiB
Timezone EDT (Interpreted as America/New_York)

Installed Language Packs
English - US (English)
en_US — include/i18n/en_US

Thanks in advance!

Please consult your Apache Error logs and PHP error logs to see if any errors are being logged.

Apologies. I meant to include those in my original post. There are no related entries that I can find in the apache logs. However, in the php_errors.log I see this a handful of times:

[18-Sep-2019 18:55:20 UTC] PHP Fatal error: Maximum execution time of 30 seconds exceeded in /var/www/osticket/include/mpdf/mpdf.php on line31108`

If I view the mpdf.php file, this is the function in question, line 31108 is the first while:

function purify_utf8($html,$lo=true) {
// For HTML
// Checks string is valid UTF-8 encoded
// converts html_entities > ASCII 127 to UTF-8
// Only exception - leaves low ASCII entities e.g. < & etc.
// Leaves in particular < to distinguish from tag marker
if (!$this->is_utf8($html)) {
echo "<p><b>HTML contains invalid UTF-8 character(s)</b></p>";
while (mb_convert_encoding(mb_convert_encoding($html, "UTF-32", "UTF-8"), "UTF-8", "UTF-32") != $html) {
$a = iconv('UTF-8', 'UTF-8', $html);
echo ($a);
$pos = $start = strlen($a);
$err = '';
while ( ord(substr($html,$pos,1)) > 128 ) {
$err .= '[[#'.ord(substr($html,$pos,1)).']]';
$pos++;
}
echo '<span style="color:red; font-weight:bold">'.$err.'</span>';
$html = substr($html, $pos);
}
echo $html;
$this->Error("");
}
$html = preg_replace("/\r/", "", $html );

    hmiles PHP Fatal error: Maximum execution time of 30 seconds exceeded

    Try setting the max_execution_time in your php.ini to 60, and restarting the Webserver service.

    Tried updating max_execution_time, no change to the behavior.

    Can you confirm what version of mpdf should be installed with 1.12.1?

    I now have it reporting a proper error that will be more helpful:

    [Tue Oct 01 14:17:08.149843 2019] [php7:error] [pid 16268] [client 192.168.0.221:53588] PHP Fatal error: Uncaught ArgumentCountError: Too few arguments to function mb_internal_encoding(), 0 passed in /var/www/osticket/include/mpdf/vendor/mpdf/mpdf/src/Mpdf.php on line 1096 and exactly 1 expected in /var/www/osticket/bootstrap.php:283\nStack trace:\n#0 /var/www/osticket/include/mpdf/vendor/mpdf/mpdf/src/Mpdf.php(1096): mb_internal_encoding()\n#1 /var/www/osticket/include/class.pdf.php(70): Mpdf\\Mpdf->__construct(Array)\n#2 /var/www/osticket/include/class.ticket.php(3119): Ticket2PDF->__construct(Object(Ticket), 'Letter', '0')\n#3 /var/www/osticket/scp/tickets.php(498): Ticket->pdfExport('Letter', '0')\n#4 {main}\n thrown in /var/www/osticket/bootstrap.php on line 283, referer: http://192.168.0.250/scp/tickets.php?id=129941

    The /include/mpdf/composer.lock file on my system reads
    "version": "v7.1.4",
    I would presume that is the version in 1.12.2

    I found the solution. Searching out similar problems I found that:

    /var/www/osticket/include/mpdf/vendor/mpdf/mpdf/src/Mpdf.php on line 1096

    was related to the php extension mbstring. Installing mbstring string fixed the problem. So it would seem that that is now a required extension going forward.

    KevinTheJedi changed the title to [resolved] v1.12.2 printing ticket error.
    Write a Reply...