Page 8 of 17

Re: phpBB Smartfeed

Posted: Wed Sep 23, 2009 3:17 pm
by MarkDHamill
It looks like you are using Firefox. This sounds like an issue with Firefox and how it uses/polls for feeds, not with Smartfeed.

To determine if Smartfeed is working correctly create the URL and use the Test button. You might want to bookmark that URL directly if it works.

Re: phpBB Smartfeed

Posted: Fri Sep 25, 2009 4:58 pm
by valaraukar
Thanks, but I made a relly noob mistake...I didn't put the host name properly xD (that's why it couldn't connect with the feed channel).

Thak you anyway, I'll bring the Spanish translation on monday (because, I'm travelling this weekend...and i won't have internet connection). Also, I didn't translate the ACP descriptions, because as I know english, I didn't need to...so I'll translate it all before sending you the complete transaltion files...

One question, how do I have to send you the translation? between code bbcode? or in an attachment?

bye bye!

PD.- I have installed nearly 100 mods (of course, some are light...and some are so heavy xD), it took a long time to translate them to spanish (mos of them were in english), but I'll try to upload the translated lines...

Re: phpBB Smartfeed

Posted: Fri Sep 25, 2009 5:08 pm
by MarkDHamill
You can send me the translations in a private message.

2.2.14 archive updated

Posted: Tue Sep 29, 2009 7:27 pm
by MarkDHamill
I updated the 2.2.14 archive to include a Spanish translation provided by valaraukar. Thanks!

Re: phpBB Smartfeed

Posted: Tue Sep 29, 2009 7:50 pm
by valaraukar
You don't have to thank ^^)!...I love this mod and I had to translate it... ^^)!

oh! I remembered something...

When I subscribe to my feed using the public feed (I mean, click in the "subscribe feed" icon next to "add to marked pages" icon in firefox navigation bar), it works great...but the feed icon still apear, no matter if I subscribe to my feed by that way...or using the smartfeed way (choosing the forum from I want to recieve items).

I saw (and tested), that when I subscribe to a forum/site/page using the public feed service (click in the feed icon...), the feed icon disapear after that o.o)!.

I tested it in my forum as a adm, as a normal user...and also as a guest, but it doesn't change T.T

Re: phpBB Smartfeed

Posted: Tue Sep 29, 2009 8:12 pm
by MarkDHamill
I believe that Firefox detects if it is receiving an RSS or Atom feed and if so it automatically displays the icon. I don't think you can turn the icon off.

Re: phpBB Smartfeed

Posted: Tue Sep 29, 2009 8:55 pm
by valaraukar
o.o)!

Yeah?

I have saw it working like that in some places...wait, I'll remember pages I saw it and I'll edit this post to put examples...

Or maybe i'm just wrong...I'll look for those sites o.o)!

Re: phpBB Smartfeed

Posted: Sat Oct 03, 2009 9:16 am
by Lobster7999
Good mode - very fast!

But after installation it didnot work! I don know what i have done but now it workks - very strenge fing!
Hi every one, please help!

Problem 1: I have installed this mode but it does not works some XML eror

Code: Select all

Ошибка синтаксического анализа XML: неправильный
Адрес: http://www.name.ru/forum/smartfeed.php?u=3&e=SCXgM0hNfVaEs27E_3dr3eROFVdeRencvPuWnn4m8_ygLYSgwpz6uQ..&lastvisit=1&limit=LF&count_limit=100&sort_by=user&feed_type=&feed_style=HTML
Строка 7, символ 62:        <link>http://www.name.ru/forum/smartfeed.php?u=3&e=SCXgM0hNfVaEs27E_3dr3eROFVdeRencvPuWnn4m8_ygLYSgwpz6uQ..&lastvisit=1&limit=LF&count_limit=100&sort_by=user&feed_type=&feed_style=HTML</link>
-------------------------------------------------------------^
it piint on "=" after "&e" <link>http://www.name.ru/forum/smartfeed.php?u=3&e=SCXgM0"

Problem 2: In first forum page no word for feed button
Image

Re: phpBB Smartfeed

Posted: Sat Oct 03, 2009 2:19 pm
by MarkDHamill
The FEED text should show up by purging the cache. Sometimes you have to exit the browser and come back in, and sometimes you also have to purge your browser's cache so the page is refreshed.

The equal sign (=) is needed after the e parameter, provided the u parameter is present. This is the encrypted password that authenticates you.

It may be that the <link> tag wants & instead of & to validate. That should not be needed. I am guessing that the problem may have something to do with your language (Russian? Cyrillic?).

Re: phpBB Smartfeed

Posted: Tue Oct 13, 2009 9:39 pm
by silashand
Hi, Just a question about the SQL code. When I look at the schema for my phpBB database there is no phpbb_users table, nor is there a phpbb_config one. The tables are simply 'users' and 'config' respectively. I know this mod says it's been tested on 3.0.5 which is what I'm running (along with MySQL 5), but in this configuration it will obviously not work since the tables are different. I can easily change the table names in the SQL, but are there any other changes I might need to make as well? Please advise.

Cheers, Gary

Re: phpBB Smartfeed

Posted: Tue Oct 13, 2009 9:47 pm
by silashand
Never mind my previous post. I found the answer :)

Cheers, Gary

Re: phpBB Smartfeed

Posted: Sat Oct 17, 2009 8:12 pm
by westy96
I'm having logout issues. I am both a founder and admin so the kill session shouldn't log me out, but every time the feed updates I am logged out w/ in a minute. Even when I generate a feed without being logged in and then update that feed I am logged off. I have tried commenting out kill session, commenting out garbage collection, and removing kill session funtion all in smartfeed.php. I am at a loss as to what is causing this.

Re: phpBB Smartfeed

Posted: Sat Oct 17, 2009 10:49 pm
by MarkDHamill
Try moving the garbage_collection() function inside this if like this and comment out the old garbage_colletion() line and let me know if it solves the situation.

Code: Select all

if ($kill_session)
{
	kill_session();
	garbage collection();
}

Re: phpBB Smartfeed

Posted: Sat Oct 17, 2009 10:57 pm
by westy96
MarkDHamill wrote:Try moving the garbage_collection() function inside this if like this and comment out the old garbage_colletion() line and let me know if it solves the situation.

Code: Select all

if ($kill_session)
{
	kill_session();
	garbage collection();
}
Thanks Mark. I think I may have solved the issue partially. I was using mail.app and safari to check the feeds. Finally tried a reader in firefox and a standalone reader and no more logouts. Must be something about the way that Apple programs access the databases or something. I'll try the above though to see if that takes care of the issue w/ Apple programs and let you know if that takes care of the issue fully.

Re: phpBB Smartfeed

Posted: Sat Oct 17, 2009 11:07 pm
by westy96
Tried that and it doesn't help when using mail.app or safari as the feed reader. Not a big deal as there are plenty of other options out there. Hopefully though my troubles will keep somebody else from spending hours trying code changes like I did. :D

Thanks for a great mod.