Error on old curl version
-
PHP Fatal error: Uncaught Error: Undefined constant “WebpConverter\Model\CURLINFO_SIZE_DOWNLOAD_T” in wp-content/plugins/webp-converter-for-media/src/Model/DebugCurl.php:28
cURL Information => 7.29.0
php8.3
possible to fix with:
$this->response_length = curl_getinfo( $curl_handle, defined( ‘CURLINFO_SIZE_DOWNLOAD_T’ ) ? CURLINFO_SIZE_DOWNLOAD_T : CURLINFO_SIZE_DOWNLOAD );
instaed of:
$this->response_length = curl_getinfo( $curl_handle, CURLINFO_SIZE_DOWNLOAD_T );
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
You must be logged in to reply to this topic.