Do you mind pointing out where the cut and paste text has a space? I have the same problem you had.Vampire1812 wrote:I got it working. The problem was the cut and paste space that I missed. Sorry.
Do you mind pointing out where the cut and paste text has a space? I have the same problem you had.Vampire1812 wrote:I got it working. The problem was the cut and paste space that I missed. Sorry.
Well, there is an explanation; you just need to know where to find itFlash_oS wrote:How to install this mod? There is no explanation.
Is anyone else getting this? Please help.[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3763: Undefined index: rss_enable
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3764: Undefined index: rss_overall_forums
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3765: Undefined index: rss_overall_threads
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3766: Undefined index: rss_overall_posts
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3767: Undefined index: rss_egosearch
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3768: Undefined index: rss_forum
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3769: Undefined index: rss_thread
Minor update here, I purged the cache and the above PHP Notices disappeared but I am still having trouble with this part:soulpatch wrote:I installed this mod with 3.0.4 and when I get to the last part where you add it in the ACP, i don't see it in the drop down menu. When I go to the home page of my forums, I get this:
Is anyone else getting this? Please help.[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3763: Undefined index: rss_enable
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3764: Undefined index: rss_overall_forums
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3765: Undefined index: rss_overall_threads
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3766: Undefined index: rss_overall_posts
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3767: Undefined index: rss_egosearch
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3768: Undefined index: rss_forum
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3769: Undefined index: rss_thread
Once I get to Step A.4, I don't see RSS under "Add Module". Please help.A.1) Navigate to "System" tab.
A.2) Under "Module management" click on "Administration Control Panel".
A.3) Click on "System".
A.4) Clik on "General tasks".
A.5) in "add module" select "RSS" and click on "add module", them click on "yes".
A.6) Afert refresh screen click RSS "enable".
A.7) Afert refresh screen click again in "System" tab.
A.8) Now you will able to see "RSS" down the "General tasks" in left menu.
A.9) Click on "RSS" and set to your liking.
Hey irdem! I actually read through all posts to see if my problem wasn't already posted there. I guess I really need to consider getting me some glassesirdem wrote:Hi Jolrael,
did you see this? : http://www.phpbb.com/community/viewtopi ... 0#p7411695
Don't think the forum and topic ID's are needed, I replaced it withirdem wrote:hello,
for the link of last post, i made a small change in line:Code: Select all
$post_link = $board_url."/viewtopic.".$phpEx."?f=".$forumid."&t=".$topicid."#p".$row['topic_last_post_id'];
replaced with:Code: Select all
$post_link = $board_url."/viewtopic.".$phpEx."?f=".$forumid."&t=".$topicid."&p=".$row['topic_last_post_id']."#p".$row['topic_last_post_id'];
Code: Select all
$post_link = $board_url."/viewtopic.".$phpEx."?p=".$row['topic_last_post_id']."#p".$row['topic_last_post_id'];
Would like this feature too, but for the time being I did it likemicrofud wrote:To follow up on a previous request, is there no way to limit the description field to say the first paragraph?
Code: Select all
$description = $user->lang['POST_BY_AUTHOR']." ".$row['topic_last_poster_name']." (".$user->lang['POSTED']." ".$user->format_date($row['post_time']).")<br/>".$row['post_text']."<br /><br /><a href=\"".$topic_link."\">".$user->lang['RSS_READ_TOPIC']."</a><hr />";
Code: Select all
$description = $user->lang['POST_BY_AUTHOR']." ".$row['topic_last_poster_name']." (".$user->lang['POSTED']." ".$user->format_date($row['post_time']).")<br/>".substr($row['post_text'],0,200)."<br /><br /><a href=\"".$topic_link."\">".$user->lang['RSS_READ_TOPIC']."</a><hr />";