If no events are found, it can be a sign that:
* the ICS feed is not a correct URL
* the feed has no events in the future
* the feed is private (when exporting from google calendar for example, be careful of privacy settings)
* There is a PHP related error: Timeout, Disabled Functions, etc.
For the feed-related issues, please paste the URL to the feed you are testing, and we can see if there is an obvious reason no events are found, but please do try and check for the items above.
If the feed is fine, it can be a sign of a PHP related error.
If your feed has many entries, this could cause a timeout. Please try testing an import of a feed with only 1 or a few events.
If it isn’t a timeout, please follow some of the tips which doodlewhale linked to in this thread:
https://www.ads-software.com/support/topic/plugin-all-in-one-event-calendar-import-and-ics-feed-dont-work?replies=32
Namely checking a basic PHP import with a test.php file from the suggestion:
Can you upload a test.php file with the following content and paste the output:
<?php
error_reporting(E_ALL); ini_set('display_errors','On');
echo file_get_contents( 'https://www.google.com/calendar/ical/161hkrdo0qrhfc6sj4s613gib4%40group.calendar.google.com/public/basic.ics' );
If you see the following output:
Warning: file_get_contents() [function.file-get-contents]: URL file-access is disabled in the server configuration in /homepages/2/d175715330/htdocs/ECBC/test.php on line 3
Then you should try contacting again your hosting provider and ask them to enable this ability.
We are working to add some more debug output for ICS imports to catch the different ways it can fail.
@jwhitesides – the feed URL you posted works for me with 1.5. This means the feed is fine, and 1.5 can import from icloud. Please check for PHP issues as per above.
Thanks!