An update: in the meantime I downloaded that php file and corrected the error via another means (ChatGPT!)
Line 115 originally had this:
$output = ”;
ChatGPT said:
“The error seems to be related to the $output variable, which is initially declared as an empty string ('') and later assigned as an array. This can cause a “TypeError” when trying to access an offset of a string, as the error message indicates.
To fix the issue, you should initialize $output as an empty array ($output = array();) instead of an empty string.”
So I made that small edit to the faulty line, and everything now works!
Fabulous! thanks for the great support Jarno 🙂
Hi there,
Thanks for the answer – I went ahead and did this, all sorted now.
Many thanks!
Andy