Events Made Easy › Forums › Bug fixed or feature request implemented › RSS feed shows no events?
- This topic has 11 replies, 4 voices, and was last updated 13 years, 5 months ago by Anonymous.
-
AuthorPosts
-
Wed 4 May 2011 at 13:57 #42767AnonymousInactive
Hi! And first of all; thanks for a great plugin!
I’ve got a site running with EME on http://www.florø.no
It’s got pretty permalinks on and everything works great except for two small things.
The RSS feed at: http://www.florø.no/?eme_rss=main&scope=future&order=ASC&category=&author=&contact_person=&limit=100 does not show any events, even though there are many future events.
Do you have any idea why this may be?
Also, we have had reports that the calendar month navigation doesn’t work in certian browsers(IE, Opera). I’m running jQuery and a slideshow plugin. Any ideas?
Thank you very much for any input.
All the best,
Hallvard
Wed 4 May 2011 at 17:39 #47643FrankyKeymasterSorry, no idea as of now for the rss feed. This might be a bug, needs to be checked.
For the jquery: problably the slideshow plugin loads a jquery different from the one used by wordpress, preventing certain functionality.
Wed 18 May 2011 at 19:41 #47644AnonymousInactiveHi! I have the same problem here: The rss feed at: http://localhost/wordpress/?eme_rss=main does not show any events. As you can see I wordpress installed only locally yet(xampp). Could that be part of the problem here?
I agree with gunray: EME is a great plugin. Using it I could easily make my event page look the way I had planned it. Hence, I would really love to be able to offer the rss feed to my readers.
Thank you very much for your work and for any input.
Best wishes
Horst
Wed 18 May 2011 at 20:11 #47645FrankyKeymaster“localhost” as hostname will always fail … everybody’s pc is “localhost”, so I can’t check this.
Thu 19 May 2011 at 12:04 #47646AnonymousInactiveThanks for the replies, for some reason I didn’t get notices to my inbox.
The calendar month navigation works in firefox, safari and chrome, just not opera and IE. Also, the slideshow is a jquery plugin that I enqueue in the functions file, so shouldn’t interfere with anything.
Thanks.
Fri 20 May 2011 at 13:44 #47647AnonymousInactiveHey, I’ve found the solution to this issue now.
Basically, IE was interpreting the $.get() call as a cross-domain request, possibly because of URL-rewrite or something similar. I fixed it by adding:
jQuery.support.cors = true; // force cross-site scripting (as of jQuery 1.5)
This could be a security weakness if not handled carefully though.
I also changed the $.get() request to the $.ajax() request to enable error messages(in “eme_calendar.php” on line 404):
$j_eme_calendar.ajax({
type: 'GET',
url: "<?php echo site_url(); ?>",
data: {
eme_ajaxCalendar: 'true',
calmonth: parseInt(month,10),
calyear: parseInt(year,10),
full : fullcalendar,
long_events: showlong_events,
category: cat_chosen,
author: author_chosen,
contact_person: contact_person_chosen,
location_id: location_chosen <?php echo $jquery_override_lang; ?>
},
success: function(data){
tableDiv.replaceWith(data);
jQuery('#calendar_header .eventful a').tooltip();
jQuery('#calendar_header .eventful-pre a').tooltip();
},
error: function(xhr, type, exception) { alert("Error: " + type + " Exception: "+exception); }
});In case anyone encounters the same problem…
Mon 23 May 2011 at 01:36 #47648AnonymousInactiveSimilar issue here – no events shown, although there are 5 on the events page.
http://fproject.org.au/?eme_rss=main
I have tried variations on the rss feed address, but none come up with events.
Thanks.
Sat 28 May 2011 at 12:07 #47649FrankyKeymaster@paintstripper: you don’t have titles for your events. No titles, no valid RSS. You can check the validation of your RSS feed here: http://validator.w3.org/feed/
The issue with
<item>
not starting on a newline is resolved (but not the caue of your problem here)Sat 28 May 2011 at 12:11 #47650FrankyKeymaster@gunray: I see RSS events in your feed, so it seems to be ok. Concerning the browser: I advise you to use a debugger there and see what’s the problem, since it works in firefox/chrome I can’t help you further here, but I’m pretty sure it’s a js thing in your theme somewhere.
Tue 31 May 2011 at 16:49 #47651AnonymousInactiveHi! My rss feed at http://www.horstbergmeyerduo.de/?eme_rss=main does not show any of the events from the events page. I do have titles for my events.
Thanks
Horst
Wed 1 Jun 2011 at 18:04 #47652FrankyKeymasterCan you try the latest trunk version to see if this solves it for you?
Wed 8 Jun 2011 at 12:18 #47653AnonymousInactiveHi Franky,
I installed Version 3.3.5: now the rss feed at http://www.horstbergmeyerduo.de/?eme_rss=main does show the events.
Thank you very much!
Best wishes
Horst
-
AuthorPosts
- The forum ‘Bug fixed or feature request implemented’ is closed to new topics and replies.