SMFHacks.com
** Home Forum Index Hacks Products Login Register Search
Welcome, Guest. Please login or register.
February 10, 2012, 06:51:03 pm

Login with username, password and session length
Members
Total Members: 9904
Latest: toytoy5555
Stats
Total Posts: 27798
Total Topics: 4859
Online Today: 79
Online Ever: 2482
(April 09, 2011, 07:02:45 pm)
Users Online
Users: 3
Guests: 57
Total: 60
+ 
|-+ 
| |-+ 
| | |-+ 
| | | |-+ 
| | | | |-+ 
0 Members and 1 Guest are viewing this topic. « previous next »
Pages: 1 ... 7 8 [9] 10 11 ... 13 Go Down Print
Author Topic: [Mod] RSS Feed Poster  (Read 99723 times)
EdwinK
Newbie
*
Offline Offline

Posts: 4


View Profile
« Reply #120 on: June 03, 2008, 05:09:49 am »

Will there be a 2.0 version of this mod?
Logged
SMFHacks
Administrator
Hero Member
*****
Offline Offline

Posts: 9399


View Profile
« Reply #121 on: June 03, 2008, 07:44:08 am »

When 2.0 final is released.
Logged
EdwinK
Newbie
*
Offline Offline

Posts: 4


View Profile
« Reply #122 on: June 03, 2008, 08:58:35 am »

I'll wait then (hoping that will be very soon)
Logged
johno69
Newbie
*
Offline Offline

Posts: 22


View Profile
« Reply #123 on: June 22, 2008, 08:30:56 pm »

I'm sorry for posting so many times in this thread but I've found a solution that is working well for me. I have all my feeds going into one particular board and I've designated that board as the recycle board for deleted topics (you do this in admin>forum>boards>settings)
This keeps the feed posts from showing in 'show unread' post list and in the 'recent posts' list

This is no good if you use your recycled topic board for junk.

I use that as evidence of deleted posts.

If it can be done for the recycled board then surely it can be done for a selected board too. This is really annoying my members.. they want to see real posts only in the Unread Posts page.

I dont want any bot posts showing there.

Cheers.
Logged
johno69
Newbie
*
Offline Offline

Posts: 22


View Profile
« Reply #124 on: June 24, 2008, 04:22:08 am »

I worked it out... much trial and error though.

Code:
// Don't bother to show deleted posts!
$request = db_query("
SELECT b.ID_BOARD
FROM {$db_prefix}boards AS b
WHERE $user_info[query_see_board]" . (!empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] > 0 ? "
AND b.ID_BOARD != " . (int) $modSettings['recycle_board'] : ''), __FILE__, __LINE__);
$boards = array();

changed it to:

Code:
// Don't bother to show deleted posts!
$request = db_query("
SELECT b.ID_BOARD
FROM {$db_prefix}boards AS b
WHERE $user_info[query_see_board]" . (!empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] > 0 ? " AND b.ID_BOARD != 120
AND b.ID_BOARD != " . (int) $modSettings['recycle_board'] : ''), __FILE__, __LINE__);
$boards = array();

 Cheesy

120 is my board to be ignored. i'd much prefer this to be done as a usergroup though.. so the replies are flagged as unread.
Logged
johno69
Newbie
*
Offline Offline

Posts: 22


View Profile
« Reply #125 on: June 24, 2008, 09:58:26 am »

has the issue been sorted yet?

It makes it difficult to read posts.

Logged
atomickarma
Newbie
*
Offline Offline

Posts: 1


View Profile
« Reply #126 on: July 27, 2008, 06:59:27 am »

Hi

Ever since installing SMF 1.1.5, I've been unable to get the mod to work.  Has anyone else had this problem?

I've attempted to resolve it by selecting "all" for download method (dont remember this being an option previously) and chmod'ing the cronrss.php and subs-rss.php to 777 to see if this helps

have also uninstalled and reinstalled mod, with no luck

any help greatly appreciated
Logged
Freejack
Newbie
*
Offline Offline

Posts: 6


Weirdo Freak


View Profile WWW
« Reply #127 on: September 13, 2008, 10:58:08 am »

I'm running SMF 1.1.6 and RSS 1.1. I posted this in the General area but in looking around, I found this thread so I thought I'd post the problem here too.

I added a new feed to my site:

Mosaic Beach
http://feeds.feedburner.com/MosaicBeachBlog

When I go to retrieve a feed, none of the articles are posted. I did some debugging and found that the generated feedhash matched one from back when I first installed it.

Code:
mysql> select * from mos_feedbot_log where feedhash = "d41d8cd98f00b204e9800998ecf8427e";
+-------------+---------+----------------------------------+------------+
| ID_FEEDITEM | ID_FEED | feedhash                         | feedtime   |
+-------------+---------+----------------------------------+------------+
|          14 |       1 | d41d8cd98f00b204e9800998ecf8427e | 1203297377 |
+-------------+---------+----------------------------------+------------+
1 row in set (0.00 sec)

The last one in the list:

Code:
|         481 |       2 | 0f7e26257ce51a6b1d39ce98f073659a | 1221247803 |
+-------------+---------+----------------------------------+------------+

I put a couple of print statements in the php script to try and puzzle out the problem and found that the current feed for Mosaic Beach returns the same code as the one in 14.

Code:
http://feeds.feedburner.com/MosaicBeachBlog
d41d8cd98f00b204e9800998ecf8427e
d41d8cd98f00b204e9800998ecf8427e

So I removed number 14

Code:
mysql> delete from mos_feedbot_log where id_feeditem = 14;
Query OK, 1 row affected (0.00 sec)

And ran the feed again and found that the feed is blank (which explains why it's a duplicate).

I went to the feed site and am certainly seeing new entries over the past couple of days. I printed the results of the retrieval, I can see the XML output with the articles.

Something broken in RSS Feed or on their side? I don't know how the xml is created, whether it's automatic or if the site owner has to run something.

Thanks.

Carl
Logged

I administer the Mosaic And Stained Glass forums.
Angelotus
Newbie
*
Offline Offline

Posts: 1


View Profile
« Reply #128 on: September 15, 2008, 07:59:34 am »

Hello, I use your feedbotmod on my website http://www.nessekrekers.nl
I have added some feed to the list for testing your mod on my site. Have waited a few days and posts from the feed, but no results. The feedbot doesn't work. If I manually use the cronrss.php I get an internal 500 error.

Any clues?
Logged
johno69
Newbie
*
Offline Offline

Posts: 22


View Profile
« Reply #129 on: September 23, 2008, 05:58:40 pm »

If I manually use the cronrss.php I get an internal 500 error.

Any clues?

Permissions ? There's a clue.
Logged
skidpics
Newbie
*
Offline Offline

Posts: 1


View Profile
« Reply #130 on: October 06, 2008, 06:11:50 am »

Well, new to SMF  - Used photopost with Vbulletin integration for a while and setting up a demo site to get it set up with SMF - By the looks of it, I like it much better!

I installed the Feed Poster, but for some reason, it seems to quit working.  I grabbed a feed once, now nothing.

I am faking Cron jobs during refresh, but I am getting nothing.  With new feeds I add, nothing happens anymore.

I tried the cronrss, but I get an email stating permission denied, so that isn't working either.

Any suggestions would be helpful..

I did uninstall it, but the Feed Poster Configuration link never disappeared from the sidebar after a refresh, so is there a possible install problem?

I am running SMF 1.1.6

-- Skidpics

http://piqueshare.com/Beta/forum/index.php
« Last Edit: October 06, 2008, 06:20:47 am by skidpics » Logged
DirtRider
Newbie
*
Offline Offline

Posts: 44


View Profile
« Reply #131 on: October 11, 2008, 05:19:14 am »

SMF 1.1.6 Oh well not to worry looks like if you don't have cron installed on your forum it is impossible to get this mod working even using the Use fake Cron jobs. Checks if feeds need to be updated on each page load.

So I have now killed it on my forum  Embarrassed

« Last Edit: October 11, 2008, 09:12:54 am by DirtRider » Logged
Smoky
Newbie
*
Offline Offline

Posts: 5



View Profile WWW
« Reply #132 on: October 31, 2008, 10:08:02 pm »

I have you going now DirtRider lol..   Smiley

vbGamer, did you receive my pm's from smf yet? please respond. I am under the impression that you are no longer supporting this mod. would love to take it over. if you do agree. I have started already on updating it to the beta.

Also i will be needing the store, will be paying for it tomorrow.  Cheesy

Thanks!!

by the way, the rss feed poster is installed on my site, error free, stop by and check it out.  Wink

http://www.pixelbypaint.com

Logged

DirtRider
Newbie
*
Offline Offline

Posts: 44


View Profile
« Reply #133 on: November 28, 2008, 08:50:06 am »

Yip also now working on my site as well, waiting for SMF2 version though  Grin
Logged
bernholdt
Newbie
*
Offline Offline

Posts: 1


View Profile
« Reply #134 on: January 05, 2009, 05:49:12 pm »

hi
Did it ever get solved to load the feed images in this mod ?

Logged
Pages: 1 ... 7 8 [9] 10 11 ... 13 Go Up Print 
« previous next »
Jump to:  

Recent
[Today at 03:36:31 pm]

[Today at 02:42:09 pm]

[Today at 02:23:51 pm]

[Today at 10:26:45 am]

[February 09, 2012, 05:30:55 pm]

by exit
[February 09, 2012, 04:47:13 pm]

[February 08, 2012, 09:09:16 pm]

[February 08, 2012, 09:11:02 am]

[February 08, 2012, 09:07:32 am]

[February 08, 2012, 03:46:49 am]
Random Picture
Donate to SMFHacks.com
Help Support the SMFHacks.com mod making.
Powered by SMF 1.1.16 | SMF © 2006-2011, Simple Machines LLC
TinyPortal v0.9.7 © Bloc
SMF and SimpleMachines are registered trademarks of Simple Machines. SMFHacks.com is not affiliated with nor endorsed by Simple Machines.
Page created in 4.953 seconds with 20 queries.