Page Index Toggle Pages: 1 [2] 3 4 ... 14 Send TopicPrint
Very Hot Topic (More than 25 Replies) RSS Feed for YaBB2 1.0 Beta 7 (Read 64024 times)
hydepark2
Junior Member
**
Offline


I love YaBB 1G - SP1.2!

Posts: 80
Joined: Jun 28th, 2005
Re: RSS Feed for YaBB2 1.0 beta1
Reply #15 - Aug 17th, 2005 at 7:52pm
Print Post  
Anyone have a fix for this for the latest build of YaBB. The last step gives an error.

<edit file>
Admin/advSettings.pl
</edit file>


<search for>
     $yySetLocation = qq~$adminurl?action=admin~;
</search for>

<add before>
require "$sourcedir/RSS_Feed.pl";
&RSS_Manage2;
</add before>
  
Back to top
 
IP Logged
 
zero
Ex Member


Re: RSS Feed for YaBB2 1.0 beta1
Reply #16 - Aug 17th, 2005 at 11:54pm
Print Post  
i had the same error so i just added it all in manualy and it worked fine
  
Back to top
 
IP Logged
 
hydepark2
Junior Member
**
Offline


I love YaBB 1G - SP1.2!

Posts: 80
Joined: Jun 28th, 2005
Re: RSS Feed for YaBB2 1.0 beta1
Reply #17 - Aug 18th, 2005 at 12:14am
Print Post  
fopen(FILE, ">$vardir/advsettings.txt");
     print FILE $setfile;
     fclose(FILE);
INSERT HERE
     $yySetLocation = qq~$adminurl~;
     &redirectexit;
}

1;

Did you put it in the line of code above that says insert here?
  
Back to top
 
IP Logged
 
zero
Ex Member


Re: RSS Feed for YaBB2 1.0 beta1
Reply #18 - Aug 18th, 2005 at 12:48am
Print Post  
yes ii put it in where they said to ... like you listed..
  
Back to top
 
IP Logged
 
oldgoat
Full Member
***
Offline


!

Posts: 102
Location: York
Joined: Aug 3rd, 2004
Gender: Male
Re: RSS Feed for YaBB2 1.0 beta1
Reply #19 - Aug 19th, 2005 at 9:53am
Print Post  
RSSFeedHelp.html missing from ...b3.zip?
  

formerly known as s_m_b
Back to top
 
IP Logged
 
hydepark2
Junior Member
**
Offline


I love YaBB 1G - SP1.2!

Posts: 80
Joined: Jun 28th, 2005
Re: RSS Feed for YaBB2 1.0 beta1
Reply #20 - Aug 23rd, 2005 at 3:17am
Print Post  
Is there anyway to tag the actual post number with the post passed to the RSS feed?

For example, the mod passes the 15th post to the aggregator but the link that is attached to this post is just the original number of the post so when you click on the link the aggregator takes you to the first post instead of the 15th post. I think it's doable, I just don't know how. The line of code in bold is where the link is passed in the RSSfeed.pl.

<item>
<title>$msub</title>
<link>$scripturl\?num=$tnum</link>
<dc:date>$rsstimestring</dc:date>
<dc:creator>$mname</dc:creator>

Does anyone know what variable needs to be added to the link?
  
Back to top
 
IP Logged
 
oldgoat
Full Member
***
Offline


!

Posts: 102
Location: York
Joined: Aug 3rd, 2004
Gender: Male
Re: RSS Feed for YaBB2 1.0 beta1
Reply #21 - Aug 23rd, 2005 at 2:42pm
Print Post  
great mod, but the date is still in 0.92 /atom format, rather than per rfc822 as it should be.
I did do a code correction on my 1.4 board to get this sorted, but it requires a couple of modules adding.
  

formerly known as s_m_b
Back to top
 
IP Logged
 
Lee
Guest


Re: RSS Feed for YaBB2 1.0 beta1
Reply #22 - Aug 24th, 2005 at 10:32pm
Print Post  
I am wrong or does this mod suppose to work on Yabb 2 RC 3?  I havent been able to get it to work yet.  maybe i am doing something wrong.
  
Back to top
 
IP Logged
 
oldgoat
Full Member
***
Offline


!

Posts: 102
Location: York
Joined: Aug 3rd, 2004
Gender: Male
Re: RSS Feed for YaBB2 1.0 beta1
Reply #23 - Aug 25th, 2005 at 6:45am
Print Post  
I thought this too, but, assuming you've got it installed (slight correction needed to the mod), make sure you've got the category ticked as well as the board, and you'll get some output.
  

formerly known as s_m_b
Back to top
 
IP Logged
 
Liwei Xu
Guest


Re: RSS Feed for YaBB2 1.0 beta1
Reply #24 - Sep 11th, 2005 at 3:14pm
Print Post  
What do i need to change on the mod to get it too work?  Thanks.
  
Back to top
 
IP Logged
 
oldgoat
Full Member
***
Offline


!

Posts: 102
Location: York
Joined: Aug 3rd, 2004
Gender: Male
Re: RSS Feed for YaBB2 1.0 beta1
Reply #25 - Sep 12th, 2005 at 9:53am
Print Post  
If you are using the current weekly build of rc3, this is what I had to change:

Code
Select All
<search for>
	$yySetLocation = qq~$adminurl?action=admin~;
</search for> 



alter to :
Code
Select All
<search for>
	$yySetLocation = qq~$adminurl~;
</search for> 

  

formerly known as s_m_b
Back to top
 
IP Logged
 
Kray
New Member
*
Offline


I love YaBB 1G - SP1.2!

Posts: 16
Joined: Oct 3rd, 2005
Re: RSS Feed for YaBB2 1.0 beta1
Reply #26 - Oct 3rd, 2005 at 8:28pm
Print Post  
Anybody working on a release for YaBB 2 Final Release? got an ETA?
Very anxious to get this back up and running on my board!
  
Back to top
 
IP Logged
 
oldgoat
Full Member
***
Offline


!

Posts: 102
Location: York
Joined: Aug 3rd, 2004
Gender: Male
Re: RSS Feed for YaBB2 1.0 beta1
Reply #27 - Oct 3rd, 2005 at 11:39pm
Print Post  
I've installed it on yabb2 using the code change I posted above, no problems. Not had a chance to check that it works yet, but  it runs happily on rc3!
  

formerly known as s_m_b
Back to top
 
IP Logged
 
hydepark2
Junior Member
**
Offline


I love YaBB 1G - SP1.2!

Posts: 80
Joined: Jun 28th, 2005
Re: RSS Feed for YaBB2 1.0 beta1
Reply #28 - Oct 4th, 2005 at 1:29am
Print Post  
This mod works on YaBB 2 Final. I can upload the file I changed but I don't want to upset anyone.
  
Back to top
 
IP Logged
 
Xavier
Senior Member
****
Offline



Posts: 442
Location: Ipswich
Joined: Apr 5th, 2005
Gender: Male
Re: RSS Feed for YaBB2 1.0 beta1
Reply #29 - Oct 4th, 2005 at 4:12am
Print Post  
can u upload it as there isn't one for YaBB2 Final Yet
  
Back to top
WWWYIM  
IP Logged
 
Page Index Toggle Pages: 1 [2] 3 4 ... 14
Send TopicPrint