EzPortal - Portal Software for Forums

EzPortal - Made to Fit Your SMF Forum - Glad You Found Us!
+- +-

UserBox

Welcome, Guest.
Please login or register.
 
 
 
Forgot your password?

+- Recent Posts

New built in translations for six langauges! by EzPortal
March 26, 2024, 11:15:32 pm

Smiley missing in shoutbox 2.1.4 by hustreamload
July 26, 2023, 08:14:02 am

Re: Theme Select Box question? by Shades
March 15, 2023, 06:49:49 pm

Re: Theme Select Box question? by Shades
March 09, 2023, 02:09:24 pm

Re: Theme Select Box question? by Shades
March 09, 2023, 01:55:53 pm

Re: Theme Select Box question? by EzPortal
March 09, 2023, 01:47:42 pm

Re: Theme Select Box question? by Shades
March 09, 2023, 01:34:07 pm

Re: Theme Select Box question? by EzPortal
March 09, 2023, 12:20:17 pm

+- HTML Menu


Sample HTML Block Usage - You May Custom Code it, as needed!

Recent Topics ezBlock

New built in translations for six langauges! by EzPortal
March 26, 2024, 11:15:32 pm

Smiley missing in shoutbox 2.1.4 by hustreamload
July 26, 2023, 08:14:02 am

Theme Select Box question? by Shades
March 15, 2023, 06:49:49 pm

Where is the facebook button color? by EzPortal
February 28, 2023, 06:45:09 pm

Display on Mobile - SMF 2.1.3 and EZ 5.5.2 by BugginIn
December 29, 2022, 04:07:13 pm

Blocks Help by Riggs1973
November 20, 2022, 12:59:30 pm

Surface ol lite theme release Free! by Steffen K.
November 18, 2022, 03:57:24 am

Undefined index: href by EzPortal
October 04, 2022, 08:49:59 pm

SMF-ezportal_column_5.cache): failed to open stream: No such file or directory by EzPortal
June 04, 2022, 11:40:13 am

Arcade block error: failed to open stream: No such file or directory by Shades
May 20, 2022, 02:47:13 pm

Author Topic: RSS feeds not refreshing  (Read 11600 times)

0 Members and 1 Guest are viewing this topic.

Offline lazylivin

  • Newbie
  • *
  • Posts: 11
  • Karma: 0
RSS feeds not refreshing
« on: January 09, 2015, 08:40:12 pm »
The RSS feed is not honoring the minutes to reach check for update setting. Is there way to force a refresh? I am running version 3.01
Thanks

Offline Maxx

  • VN Vet E4
  • Hero Member
  • *****
  • Posts: 560
  • Karma: 8
  • Gender: Male
  • Web Designer
    • SurfaceThemes - Web Design Ideas Classic Rock
Re: RSS feeds not refreshing
« Reply #1 on: January 10, 2015, 05:59:52 am »
lazylivin,

Cool handle, thanks for reporting this! we will need to investigate, Have you tried change to time setting and saving?

or for now if you edit the RSS and save it should refresh, but takes a few to fetch the info again :)

regards,
Maxx
If you find this Portal System useful, please consider supporting us with a small Donation!
Check out the How to Section!!
Please remember to keep your back ups, up to date, before you try anything new!

Offline lazylivin

  • Newbie
  • *
  • Posts: 11
  • Karma: 0
Re: RSS feeds not refreshing
« Reply #2 on: January 10, 2015, 06:10:23 pm »
I have tried updating the feed and saving. Also tried deleting and recreating the feed entirely. It is storing it somewhere, perhaps the database. Although I checked and did not see it in `smf_ezp_rss_cache` table

Offline lazylivin

  • Newbie
  • *
  • Posts: 11
  • Karma: 0
Re: RSS feeds not refreshing
« Reply #3 on: January 11, 2015, 10:19:54 pm »
Just bumping in case you missed this. Wondering how to get my RSS feeds to refresh.

Offline EzPortal

  • Administrator
  • *****
  • Posts: 1299
  • Karma: 67
Re: RSS feeds not refreshing
« Reply #4 on: January 11, 2015, 10:43:45 pm »
The RSS feed data is stored in an ezportal parameter

Code: [Select]
select * from {db_prefix}ezp_block_parameters_values as v, {db_prefix}ezp_block_parameters AS p

WHERE v.id_parameter = p.id_parameter AND p.parameter_name  = 'rssdata'   

And is the time is based the next updatetime time which is stored in the lastupdate parameter

Code: [Select]
SELECT * FROM {db_prefix}ezp_block_parameters_values as v, {db_prefix}ezp_block_parameters AS p

WHERE v.id_parameter = p.id_parameter AND p.parameter_name = 'lastupdate'
Like ezPortal? Support me at https://www.patreon.com/vbgamer45/

Offline Jonas1975

  • Jr. Member
  • **
  • Posts: 55
  • Karma: 0
    • The Mobile Photography Blog
Re: RSS feeds not refreshing
« Reply #5 on: February 02, 2015, 05:40:57 am »
I was also trying to use the RSS block (again) to feature the "Photo of the Day" but I have the same update issue.

First of all, it doesn't bring me the latest feed but the oldest (I want only one feed and I'm not sure if it will fix with time). Then, all characters are messed up as it seems to no support simple symbols like "-" or letters like á or í or ã.

Edit: You can check it on my site http://themobilephotographyblog.com/, the RSS ezBlock is on the left side. So far, it wasn't updated and still shows the oldest item from feed (instead of the newest as pretended) and has the characters problem like described.

Offline Jonas1975

  • Jr. Member
  • **
  • Posts: 55
  • Karma: 0
    • The Mobile Photography Blog
Re: RSS feeds not refreshing
« Reply #6 on: February 02, 2015, 12:17:05 pm »
One additional information: I have made a new post so it updated showing a new item of what is now the oldest feed.  The feed is: http://blog.themobilephotographyblog.com/feed/

Edit: Trying something new. I set the RSS feed to 1 item so it updated to the correct one on the block. I set it again to 30 (my default) and will see if it starts to update correctly from now on.

I still have the issue with the characters and the problem with update is not properly solved. I think if I use some other RSS I will have the same problem (not having the newest one).

Offline EzPortal

  • Administrator
  • *****
  • Posts: 1299
  • Karma: 67
Re: RSS feeds not refreshing
« Reply #7 on: February 02, 2015, 12:33:22 pm »
Been working on the last hour. Trying to figure it out.
Like ezPortal? Support me at https://www.patreon.com/vbgamer45/

Offline EzPortal

  • Administrator
  • *****
  • Posts: 1299
  • Karma: 67
Re: RSS feeds not refreshing
« Reply #8 on: February 02, 2015, 12:41:57 pm »
Fixed the showing one item issue. But now the issue is....I have it showing the oldest item first.....which has always been the case so it wouldn't work for what you are trying to do.
Like ezPortal? Support me at https://www.patreon.com/vbgamer45/

Offline Jonas1975

  • Jr. Member
  • **
  • Posts: 55
  • Karma: 0
    • The Mobile Photography Blog
Re: RSS feeds not refreshing
« Reply #9 on: February 02, 2015, 12:51:56 pm »
Yes, I changed back to 30 items and I have it now showing the oldest again. I think that issue just implies to almost no one using the RSS feed. It doesn't serve my need and it doesn't serve most of other users. Imagine that I'm feeding news. It will never show the latest ones.

Have you managed to fix the characters problem? Not sure what you meant with "Fixed the showing one item issue.".

Edit: I changed my feed to 1 item again to "fix" this problem. My main concern is the characters...

Offline EzPortal

  • Administrator
  • *****
  • Posts: 1299
  • Karma: 67
Re: RSS feeds not refreshing
« Reply #10 on: February 02, 2015, 01:26:38 pm »
Posted an update that should help with all the issues.
3.0.3
+Two new settings for the RSS Feed block. Encoding type and the order in which feed items are displayed
!Fixed RSS feed block bug when only showing one feed item
Like ezPortal? Support me at https://www.patreon.com/vbgamer45/

Offline Jonas1975

  • Jr. Member
  • **
  • Posts: 55
  • Karma: 0
    • The Mobile Photography Blog
Re: RSS feeds not refreshing
« Reply #11 on: February 03, 2015, 03:14:07 am »
Great support!  Thanks!

Offline Jonas1975

  • Jr. Member
  • **
  • Posts: 55
  • Karma: 0
    • The Mobile Photography Blog
Re: RSS feeds not refreshing
« Reply #12 on: February 03, 2015, 04:18:53 pm »
I'm still trying to understand but I think the RSS Block is broken as it doesn't pushes feeds. Once 3.0.3 installed, I had no longer strange characters but instead of a "-" I had a "?" so I went to try changing to UTF-8. Any change on RSS Block makes it refresh so the feed first disappears until it refreshes. Point is, nothing appears now.

I tried going back to ISO-8859-1, changing time of refresh, number of items to load, changing reverse order but no luck.

Edit: Took a long time but finally appeared the characters are not the intended ones tho as they don't match the feed...  Good news is that Reverse is working.

Offline Jonas1975

  • Jr. Member
  • **
  • Posts: 55
  • Karma: 0
    • The Mobile Photography Blog
Re: RSS feeds not refreshing
« Reply #13 on: February 06, 2015, 05:35:02 am »
Any clues or news on the RSS coding as some characters are still not appearing as they should? I have a symbol "-" being feed as "?" which makes it look very awkward...  :)

Offline Maxx

  • VN Vet E4
  • Hero Member
  • *****
  • Posts: 560
  • Karma: 8
  • Gender: Male
  • Web Designer
    • SurfaceThemes - Web Design Ideas Classic Rock
Re: RSS feeds not refreshing
« Reply #14 on: February 08, 2015, 05:50:09 pm »
Jonas,

I know you talk With Ez at his other site, But I will check into this and just to be certain what version of SMF are you using?
If you find this Portal System useful, please consider supporting us with a small Donation!
Check out the How to Section!!
Please remember to keep your back ups, up to date, before you try anything new!

 

Related Topics

  Subject / Started by Replies Last post
0 Replies
14666 Views
Last post May 06, 2010, 10:50:05 am
by Maxx
5 Replies
5726 Views
Last post November 24, 2011, 07:16:57 pm
by EzPortal
3 Replies
8447 Views
Last post June 22, 2014, 04:27:25 am
by Maxx

+-SMF Gallery

Quick Menu


Powered by EzPortal