Hello,
first of all I want to say, that I really like jevents! It's a great extension for joomla!
I have a similar problem to chenz2. I get the error "DateTimeZone::__construct(): Unknown or bad timezone ((UTC+01:00) Amsterdam, Berlin, Bern, Rom, Stockholm, Wien)".
To solve the problem, I inserted the following Code into "iCallImport.php":
$wtzdata["(UTC+01:00) Amsterdam, Berlin, Bern, Rom, Stockholm, Wien"] = "Europe/Berlin";
And it worked.
Then I inserted it to "ical_custom_timezones.php":
<?php
$wtzdata["(UTC+01:00) Amsterdam, Berlin, Bern, Rom, Stockholm, Wien"] = "Europe/Berlin";
And it doesn't work.
The file "ical_custom_timezones.php" is found by the interpreter and - as I dumped "$wtzid"
and "$wtzdata" - everything seems ok but I always get the error.
The cause of that seems to be the "include", but I have no idea what's going wrong! Could you please help me?