Plugin

Archived
Forum
(read-only)

CE Image

ExpressionEngine 1.x, ExpressionEngine 2, ExpressionEngine 3

Back to this add-on's main page
View Other Add-ons From Causing Effect

     

CE Image can’t handle files anymore

Support Request

Est Digital
Est Digital

Since EE4.3.4 you have to use {VARIABLE:url_decode} instead of {VARIABLE} to make CE Image work.

That’s rather inconvenient because we have like 20 websites that are going to be updated, with each of them having over a 100 CE Image tags where the “:url_decode” needs to be added.

Do you have a fix for this? Or am I going to have to replace all of the tags?

Est Digital
# 1
Est Digital

This problem can be solved by replacing:

$src = ee()->TMPL->fetch_param(‘src’);

With:

$origin_src = ee()->TMPL->fetch_param(‘src’);
$src = urldecode($origin_src);

In: /user/addons/ce_img/pi.ce_img.php
On: line 461