Hello, I have the same issue as Gapper. I haven't yet uninstalled Fabrik. However, the Joomla update returns errors even though the plugins are disabled. I have only simple php code on calc plugins. Below is one example of the php code I'm talking about.
$rate1 = (float)'{pagamenti_2021_2022___rate1_raw}';
$rate2 = (float)'{pagamenti_2021_2022___rate2_raw}';
$rate3 = (float)'{pagamenti_2021_2022___rate3_raw}';
$rate4 = (float)'{pagamenti_2021_2022___rate4_raw}';
$rate5 = (float)'{pagamenti_2021_2022___rate5_raw}';
$rate6 = (float)'{pagamenti_2021_2022___rate6_raw}';
$rate7 = (float)'{pagamenti_2021_2022___rate7_raw}';
$rate8 = (float)'{pagamenti_2021_2022___rate8_raw}';
$rate9 = (float)'{pagamenti_2021_2022___rate9_raw}';
$quota_asso2 = (float)'{pagamenti_2021_2022___quota_asso2_raw}';
$extras = (float)'{pagamenti_2021_2022___extras_raw}';
$result1 = $rate1 + $rate2 + $rate3 + $rate4 + $rate5 + $rate6 + $rate7 + $rate8 + $rate9 + $quota_asso2 + $extras;
return $result1;
What are the adjustments I should make?
