I have my php max mem set to 128M globally. However APIs like PDFCrowd are saying there's a 2MB limit. I have verified everything else is showing 128M and I have no idea why these APIs are limited to 2MB. I even put a php.ini in the api folder to assign a high memory limit and high timeout.
This started after a cpanel update to v86.0.18. No other changes have occurred. It just stopped working and our payroll dept cannot get invoice PDFS now.
The error is thrown in one of their CURL objects for PDFCrowd:
function setTimeout($timeout) {
if (is_int($timeout) && $timeout > 0) {
$this->curlopt_timeout = $timeout;
}
}

This started after a cpanel update to v86.0.18. No other changes have occurred. It just stopped working and our payroll dept cannot get invoice PDFS now.
The error is thrown in one of their CURL objects for PDFCrowd:
function setTimeout($timeout) {
if (is_int($timeout) && $timeout > 0) {
$this->curlopt_timeout = $timeout;
}
}

Last edited: