Quote Originally Posted by Bruce1952 View Post
Hi All,

Running version 1.58a on a linux server running PHP Version: 8.1.31

Template Bootstrap Version 3.7.6

CKEditor version 5

Image Handler version 5

I am getting this error in Printable Pricelist:

memory_get_usage:17110824, memory_get_peak_usage: 17135464, queries: 1090 Fatal error: Uncaught Error: Cannot access private property queryFactory::$total_query_time in /home/xxxx/public_html/dev.outdoorking.com/zc_plugins/PrintablePriceList/v4.0.1/catalog/includes/templates/default/templates/tpl_pricelist_default.php:453 Stack trace: #0 /home/xxxx/public_html/dev.outdoorking.com/includes/templates/bootstrap/common/tpl_main_page.php(233): require() #1 /home/xxxx/public_html/dev.outdoorking.com/index.php(94): require('/home/a1ntacdk3...') #2 {main} thrown in /home/xxxx/public_html/dev.outdoorking.com/zc_plugins/PrintablePriceList/v4.0.1/catalog/includes/templates/default/templates/tpl_pricelist_default.php on line 453

Any help to fix this error message would be greatly appreciated.
Change line 453 of the file highlighted above from
PHP Code:
    echo ', query time: ' $db->total_query_time
to
PHP Code:
    echo ', query time: ' $db->queryTime();