News:

SMF 2.1.4 has been released! Take it for a spin! Read more.

Main Menu

RSS Feed Poster

Started by SMFHacks.com Team, January 11, 2007, 07:46:04 PM

Previous topic - Next topic

Owdy

Quote from: snyperthugs on January 23, 2011, 12:55:42 PM
How do I do that? I had to manually install it because I'm not using the default theme
You dont have to install it manually.
Former Lead Support Specialist

Tarvitsetko apua SMF foorumisi kanssa? Otan työtehtäviä vastaan, lue:http://www.simplemachines.org/community/index.php?topic=375918.0

snyperthugs

OK I reinstalled it, then I setup a feed, and it came up saying "Hacking attempt... "   and wont go back
www.4mydjs.com - Get Your Music Heard!

snyperthugs

OK nevermind, I got it working now. Thanks for the fast response too
www.4mydjs.com - Get Your Music Heard!

Owdy

Quote from: Owdy ツ on January 23, 2011, 11:30:46 AM
When i edit feed, Message Icon dropdown is blank. How do i fix that? SMF 1.1.12



Related?

/index.php?action=feedsadmin;sa=editfeed2
8: Undefined index: msgicon
File: /var/www/vhosts/httpdocs/Sources/FeedPoster.php
Line: 275
Former Lead Support Specialist

Tarvitsetko apua SMF foorumisi kanssa? Otan työtehtäviä vastaan, lue:http://www.simplemachines.org/community/index.php?topic=375918.0

vbgamer45

Yes that is probably related haven't had time to look into yet.

EDIT: How did you install this version? Did you have an older version installed?
You might be missing the msgicon column in the feedbot table for the mod.
Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

Owdy

#1965
Quote from: vbgamer45 on January 25, 2011, 01:39:47 AM
EDIT: How did you install this version? Did you have an older version installed?

Via package manager. I might have had older version in past.

CREATE TABLE IF NOT EXISTS `smf_feedbot` (
  `ID_FEED` mediumint(8) NOT NULL auto_increment,
  `ID_BOARD` smallint(5) unsigned NOT NULL default '0',
  `feedurl` tinytext NOT NULL,
  `title` tinytext NOT NULL,
  `enabled` tinyint(4) NOT NULL default '1',
  `html` tinyint(4) NOT NULL default '1',
  `postername` tinytext,
  `ID_MEMBER` mediumint(8) unsigned default NULL,
  `locked` tinyint(4) NOT NULL default '0',
  `markasread` tinyint(4) NOT NULL default '0',
  `articlelink` tinyint(4) NOT NULL default '0',
  `topicprefix` tinytext,
  `numbertoimport` smallint(5) NOT NULL default '1',
  `importevery` smallint(5) NOT NULL default '180',
  `updatetime` int(10) unsigned NOT NULL default '0',
  `total_posts` int(10) unsigned NOT NULL default '0',
  `footer` text,
  `msgicon` varchar(50) default 'xx',
  PRIMARY KEY  (`ID_FEED`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;


edit:

i uninstalled, deleted those tables, reinstalled. Didnt help.

edit2: okay, this posts blank posts, source:
[b][/b]

[html][/html]

Source: [url=http://www.mediuutiset.fi/uutisarkisto/article566987.ece?s=r&wtm=mediuutiset/-25012011][/url]

Subject is blank.
Feed is this:    http://www.mediuutiset.fi/rss.xml
Former Lead Support Specialist

Tarvitsetko apua SMF foorumisi kanssa? Otan työtehtäviä vastaan, lue:http://www.simplemachines.org/community/index.php?topic=375918.0

vbgamer45

Hmm your feed table looks fine has msgicon column will need to look into the other parts
Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

Owdy

Former Lead Support Specialist

Tarvitsetko apua SMF foorumisi kanssa? Otan työtehtäviä vastaan, lue:http://www.simplemachines.org/community/index.php?topic=375918.0

vbgamer45

Check error log first to see if anything is getting logged
Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

Owdy

Only thing what it creates error lg is

8: Undefined index: msgicon
Tiedosto: /var/www/vhosts/httpdocs/alyvuoto/Sources/FeedPoster.php
Rivi: 124


Source code when i edit feed:

<tr><td width="30%">Message Icon</td><td>
<select name="msgicon" id="msgicon"  onchange="ChangeIconPic(this.value)">
  </select>
<img id="iconPick" src="" alter="" />

<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
// iconSelect
var selectIcons = new Array();



function ChangeIconPic(iconIndex)
{
document.frmfeed.iconPick.src = selectIcons[iconIndex];
}

ChangeIconPic("");

// ]]></script>


</td></tr>

Former Lead Support Specialist

Tarvitsetko apua SMF foorumisi kanssa? Otan työtehtäviä vastaan, lue:http://www.simplemachines.org/community/index.php?topic=375918.0

vbgamer45

For var selectIcons = new Array();
That is missing all the msgicons that are populated in that array in the code above.
Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

Owdy

Quote from: vbgamer45 on January 25, 2011, 12:56:06 PM
For var selectIcons = new Array();
That is missing all the msgicons that are populated in that array in the code above.
??
Former Lead Support Specialist

Tarvitsetko apua SMF foorumisi kanssa? Otan työtehtäviä vastaan, lue:http://www.simplemachines.org/community/index.php?topic=375918.0

vbgamer45

Have to look at it seems like it is not finding the message icons
Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

Robotpirate

Hi,

I'm running SMF 1.1.12 with RSS Feed Poster 3.0. It seems to work fine, but I do get some funny posts. They lack the title of the Feed. The topic just contains the Topic Prefix. The Rest looks like this
Quote(b)(/b)



Source: (url=hxxp:glgnfz.blogspot.com/2010/12/ll-adventskalender-fragen-das_16.html [nonactive])(/url)

I replaced the square brackets with round ones.

Am I doing anything wrong?

Owdy

Quote from: Robotpirate on January 27, 2011, 04:13:20 AM
Hi,

I'm running SMF 1.1.12 with RSS Feed Poster 3.0. It seems to work fine, but I do get some funny posts. They lack the title of the Feed. The topic just contains the Topic Prefix. The Rest looks like this
Quote(b)(/b)



Source: (url=http://glgnfz.blogspot.com/2010/12/ll-adventskalender-fragen-das_16.html)(/url)

I replaced the square brackets with round ones.

Am I doing anything wrong?
I got same problem. Blank title, body is most empty like that
Former Lead Support Specialist

Tarvitsetko apua SMF foorumisi kanssa? Otan työtehtäviä vastaan, lue:http://www.simplemachines.org/community/index.php?topic=375918.0

Robotpirate

Quote from: Owdy ツ on January 27, 2011, 04:19:38 AM
I got same problem. Blank title, body is most empty like that

Well, I turned off "HTML Enabled". So I didn't expect much more in the body. But some posts contain parts of the RSS Feed, but only a few.

Robin1989

ok so i tried to get it to bring in feeds from apples PR and it worked a treat but i then tried adding the gizmodo feed and i get this error


XML error: SYSTEM or PUBLIC, the URI is missing at line 1

feed://gizmodo.com/index.xml

and when i try to do it with engadgets feed i get this

XML error: Not well-formed (invalid token) at line 1

feed://www.engadget.com/rss.xml

any ideas how to fix this? i have my cron job set up and have it set to all in the settings.

vbgamer45

No way currently to fix I would need to write a custom xml parser to handle it.
Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

Robotpirate

Quote from: Owdy ツ on January 27, 2011, 04:19:38 AM
Quote from: Robotpirate on January 27, 2011, 04:13:20 AM
Hi,

I'm running SMF 1.1.12 with RSS Feed Poster 3.0. It seems to work fine, but I do get some funny posts. They lack the title of the Feed. The topic just contains the Topic Prefix. The Rest looks like this
Quote(b)(/b)



Source: (url=hxxp:glgnfz.blogspot.com/2010/12/ll-adventskalender-fragen-das_16.html [nonactive])(/url)

I replaced the square brackets with round ones.

Am I doing anything wrong?
I got same problem. Blank title, body is most empty like that
I tested some more. The problem appears if there is a "foreign" letter in the Title of the Blogpost, like äöüß and '

vbgamer45

Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

Advertisement: