Hi Michael,
Please upgrade your PHP version. Version 5.5 should fix your problems.
best regards, Hannes
Hi Hannes,
I got the exact same Problem. But I can’t upgrade my PHP Version because of other plugin compatibility. Is there any solution how I can fix this error?
best regards, daniela
Same problem here, but I fixed it:
In /includes/class-integrations.php on line 48 and 49 change
$form_id = explode('-', $list_form)[1];
$list_id = explode('-', $list_form)[0];
to
$form_id = explode('-', $list_form[1]);
$list_id = explode('-', $list_form[0]);
and in /includes/class-admin.php change line 333 from
$form_id = explode('-', $list_form)[1];
to
$form_id = explode('-', $list_form[1]);
and line 338 from
$list_id = explode('-', $list_form)[0];
to
$list_id = explode('-', $list_form[0]);
Hi BenRon,
I’d be very surprised if your solution works, because it’s technically wrong.
I’ll explain:
$form_id = explode('-', $list_form)[1];
$list_form is a variable containing the list_id and the form_id separated by a ‘-‘.
Explode splits this variable into an array and [1] takes the second part of this array.
Your solution takes the [1] of a string. This shouldn’t be possible and can’t give the correct result.
I’ll release a compatibility update in the next days.
best regards, Hannes
I’ve released the update. Please give it a try and don’t forget to give me a good review if it works.
It worked like a charm! Thanks for the update :)) I wrote you a review.
One more question: the field under “FormBuilder” is empty. That’s because there is no form in CleverReach?
I have no login date to check if there is a Form in CleverReach created.