my pretty basic ical feed, tested with this validator http://icalvalid.cloudapp.net/Default.aspx gives the result: Empty lines are not compatible with all applications.

Can´t import the feed to either google calendar or osx calendar.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

elgrincho’s picture

coredumperror’s picture

This is an error that's caused by another module on your site. PHP is stupid, and it includes in its output any whitepsace that's been accidentally left outside of <?php ?> tags in your Drupal module code. What you need to do is look through the code files in your site to find any instances of ?> at the end of .module, .inc, and .install files, and remove them. It's safe to leave off the ?> tag, and this practice is encouraged because of PHP's stupidity.

Once you find the offending ?> tag, you might want to post on issue on that module's queue about getting rid of it.

coredumperror’s picture

Status: Active » Closed (works as designed)