Page 1 of 2 12 LastLast
Results 1 to 10 of 15

Thread: Display latest topic or post on homepage

  1. #1
    phobia
    Guest

    Default Display latest topic or post on homepage

    What do I need to do to enable the homepage to display phpbb's latest post or topics?

  2. #2

    Join Date
    Sep 2007
    Posts
    229

    Default

    did you try the RSS mod and point the Rss Feed block in the admin panel/builders/homepage builder to your feed?
    Running version 6.0.0002 ...researching and testing 6.0.003 in the background

  3. #3
    phobia
    Guest

    Default

    I haven't tried that yet coz I don't know what url feed phpbb uses. Can you point it out to me? Thanks!

  4. #4
    phobia
    Guest

    Default

    where can I find the rss mod for phpbb?

  5. #5

    Join Date
    Sep 2007
    Posts
    229

    Default

    theres a few out there try this one from Wackomenace Tools Phbb - RSS mod
    Running version 6.0.0002 ...researching and testing 6.0.003 in the background

  6. #6
    phobia
    Guest

    Default

    Thanks for the link! I followed the instructions however I'm getting these errors when I try to go the the rss.php page.

    Warning: main(forum/extension.inc) [function.main]: failed to open stream: No such file or directory in /public_html/forum/rss.php on line 97

    Warning: main(forum/extension.inc) [function.main]: failed to open stream: No such file or directory in /public_html/forum/rss.php on line 97

    Warning: main() [function.include]: Failed opening 'forum/extension.inc' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /public_html/forum/rss.php on line 97

    Warning: main(forum/common.) [function.main]: failed to open stream: No such file or directory in /public_html/forum/rss.php on line 98

    Warning: main(forum/common.) [function.main]: failed to open stream: No such file or directory in /public_html/forum/rss.php on line 98

    Warning: main() [function.include]: Failed opening 'forum/common.' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /public_html/forum/rss.php on line 98

    Warning: main(forum/includes/bbcode.) [function.main]: failed to open stream: No such file or directory in /public_html/forum/rss.php on line 99

    Warning: main(forum/includes/bbcode.) [function.main]: failed to open stream: No such file or directory in /public_html/forum/rss.php on line 99

    Warning: main() [function.include]: Failed opening 'forum/includes/bbcode.' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /public_html/forum/rss.php on line 99

    Fatal error: Call to undefined function: session_pagestart() in /public_html/forum/rss.php on line 102
    Last edited by phobia; 12-12-2007 at 12:27 PM.

  7. #7
    phobia
    Guest

    Default

    help anyone?

  8. #8

    Join Date
    Sep 2007
    Posts
    229

    Default

    sounds like you didint put proper variables "BEGIN Configuration" to "END Configuration"
    Running version 6.0.0002 ...researching and testing 6.0.003 in the background

  9. #9
    phobia
    Guest

    Default

    Hmm.. I think I did. I'll post the config here.

    //
    // BEGIN Configuration
    //

    // Relative path from this file to your phpBB root folder
    $phpbb_root_path = 'forum/';

    // Feed language
    $feed_language = 'en';

    // Feed copyright message
    $feed_copyright = '';

    // Feed image URL
    $feed_image = '';

    // How many posts do you want returned (count)? Specified in the URL with "c=". Defaults to 10, upper limit of 50.
    $count = (isset($HTTP_GET_VARS['c'])) ? intval($HTTP_GET_VARS['c']) : 10;
    $count = ($count == 0) ? 10 : $count;
    $count = ($count > 50) ? 50 : $count;

    // Which forum do you want posts from (forum_id)? Specified in the url with "f=". Defaults to all (public) forums.
    $forum_id = (isset($HTTP_GET_VARS['f'])) ? intval($HTTP_GET_VARS['f']) : '';
    $sql_forum_where = (!empty($forum_id)) ? ' AND f.forum_id = '.$forum_id : ' ';

    // Return topics only, or all posts? Specified in the URL with "t=". Defaults to all posts (0).
    $topics_only = (isset($HTTP_GET_VARS['t'])) ? intval($HTTP_GET_VARS['t']) : 0;
    $sql_topics_only_where = '';
    if ($topics_only == 1) {
    $sql_topics_only_where = 'AND p.post_id = t.topic_first_post_id';
    }

    //
    // END Configuration
    //

  10. #10

    Join Date
    Sep 2007
    Posts
    229

    Default

    i think you need:
    /public_html/forum/
    or
    /forum/
    in
    $phpbb_root_path = 'forum/';
    Running version 6.0.0002 ...researching and testing 6.0.003 in the background

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Display members with profile pics ONLY on homepage
    By DesertWarrior in forum Dolphin General Discussion v6.00 and above
    Replies: 2
    Last Post: 09-19-2008, 11:35 AM
  2. GROUP Latest topic error
    By ErisPhobos in forum Bugs Dolphin 6.03
    Replies: 4
    Last Post: 02-25-2008, 03:37 PM
  3. Dolphin 6.03 Groups Latest Post error
    By mvincik in forum Bugs Dolphin 6.03
    Replies: 3
    Last Post: 12-25-2007, 12:06 PM
  4. Post topic quit working...
    By bigal0228 in forum Orca Interactive Forum Script
    Replies: 0
    Last Post: 11-27-2007, 09:47 AM
  5. aedating Speed Dating - display events on homepage
    By Cache in forum General Issues, Comments, Questions
    Replies: 1
    Last Post: 10-06-2006, 07:31 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •