Results 1 to 9 of 9

Thread: Forum Driven Websites

  1. #1
    Anyone know of any easily configurable front ends for creating websites that interact with a forum? I'm talking about stuff like vbPortal or vbHome (those are for vBulletin). An example of what I mean can be found http://www.iexbeta.com or http://www.vbulletin.org. I'm trying to find one that interacts with a vBulletin or Invision PB forum. I've tried looking almost everywhere for downloads that aren't the crappy older, feature reduced public versions.

  2. Internet, Programming and Graphics   -   #2
    Poster
    Join Date
    Mar 2003
    Posts
    3,582
    Have you thought of copying their source and just modify it to suit you?

    It looks like simple forms and href

    Code:
    <tr> 
        <td bgcolor="#FFFFFF"><div align="center" class="style4"><a href='http://board.iexbeta.com/ibf10/index.php?showtopic=35630'>DVD Decrypter 3...</a></div></td>
      </tr>  <tr>
    Code:
    <tr><td bgcolor="#FFFFFF"><div align="center" class="style4"><a href='http://board.iexbeta.com/ibf10/index.php?showuser=257'><span style="color: black">kernel</span></a></div></td></tr><tr><td bgcolor="#FFFFFF"><div align="center" class="style4"><a href='http://board.iexbeta.com/ibf10/index.php?showuser=185'><span style="color: black">BlueScreenOfDeath</span></a></div></td></tr><tr><td bgcolor="#FFFFFF"><div align="center" class="style4"><a href='http://board.iexbeta.com/ibf10/index.php?showuser=18429'><span style="color: black">AlienTiger</span></a></div></td></tr><tr><td bgcolor="#FFFFFF"><div align="center" class="style4"><a href='http://board.iexbeta.com/ibf10/index.php?showuser=18'><span style="color: black">Nostradamus</span></a></div></td></tr><tr><td bgcolor="#FFFFFF"><div align="center" class="style4">GoogleBot</div></td></tr><tr><td bgcolor="#FFFFFF"><div align="center" class="style4"><a


    And so and so on.......

  3. Internet, Programming and Graphics   -   #3
    Nope, that won't do because that be like copying the html from a topic on this board. It just doesn't work that way.

  4. Internet, Programming and Graphics   -   #4
    sparsely's Avatar °¤°¤°¤°¤°¤°¤°
    Join Date
    Dec 2002
    Location
    static hum
    Posts
    3,486
    like phpnuke?

    this post is guaranteed 100% parrot-free

  5. Internet, Programming and Graphics   -   #5
    Originally posted by Sparsely@28 December 2003 - 23:33
    like phpnuke?
    Yea but preferrably not phpnuke. I didn't really like it.

  6. Internet, Programming and Graphics   -   #6
    Poster
    Join Date
    Mar 2003
    Posts
    3,582
    Originally posted by Xilo@28 December 2003 - 21:55
    Nope, that won't do because that be like copying the html from a topic on this board.  It just doesn't work that way.
    they're not copying the html( or php ) from a topic, if anything they are embedding the topic in the page. When you load the page, it calls the topic or whatever else they have embedded.

    This example works fine, you'd just need the css or js and any images

    example



    .

  7. Internet, Programming and Graphics   -   #7
    Originally posted by balamm+28 December 2003 - 23:48--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td>QUOTE (balamm &#064; 28 December 2003 - 23:48)</td></tr><tr><td id='QUOTE'> <!--QuoteBegin-Xilo@28 December 2003 - 21:55
    Nope, that won&#39;t do because that be like copying the html from a topic on this board. It just doesn&#39;t work that way.
    they&#39;re not copying the html( or php ) from a topic, if anything they are embedding the topic in the page. When you load the page, it calls the topic or whatever else they have embedded.

    This example works fine, you&#39;d just need the css or js and any images

    example



    . [/b][/quote]
    Not exactly. They are using php programming to pull all the info from an SQL database. Code would be sorta an expanded version of this for the main page for the news.

    <?php

    function mysql_die() {
    die("Error Nr." . mysql_errno() . ": " . mysql_error());
    }

    &#036;configphp_link = "/www/my_site/forum/includes/config.php";
    require_once(&#036;configphp_link);
    define ("TABLE_PREFIX", &#036;tableprefix);
    &#036;mysql_link = mysql_connect(&#036;servername, &#036;dbusername, &#036;dbpassword) or
    mysql_die();
    mysql_select_db(&#036;dbname,&#036;mysql_link) or mysql_die();
    unset (&#036;servername, &#036;dbusername, &#036;dbpassword, &#036;tableprefix, &#036;dbname,
    &#036;output);
    &#036;threads = mysql_query("SELECT threadid, title FROM " . TABLE_PREFIX .
    "thread WHERE thread.forumid <> _ID_OF_YOUR_FLAME_FORUM_ ORDER BY dateline DESC LIMIT 0,10", &#036;mysql_link) or mysql_die();
    mysql_close(&#036;mysql_link) or mysql_die();
    while (&#036;thread = mysql_fetch_array(&#036;threads))
    {
    &#036;display_text = &#036;thread[&#39;title&#39;];
    if (strlen(&#036;display_text) > 25) {
    &#036;display_text = substr(&#036;display_text,0,25);
    &#036;display_text .= "...";
    }
    &#036;output .= "&#092;n> <a href=&#092;"/forum/" .
    "showthread.php?t=" . &#036;thread[&#39;threadid&#39;] . "&#092;" target=&#092;"vbulletin&#092;">" .
    &#036;display_text ."</a>";
    }

    unset (&#036;configphp_link);
    echo nl2br(substr(&#036;output,1));


    ?>

    I&#39;m too lazy to learn php that&#39;s why i&#39;m trying to find some easily configurable front end to do it. I don&#39;t think you are getting my meaning. I&#39;m looking for an easy thing to set up to allow interactivity with the forum. Meaning: if i post something in a section on the forum, it will show up on the main page. Just stuff like that...

  8. Internet, Programming and Graphics   -   #8
    sparsely's Avatar °¤°¤°¤°¤°¤°¤°
    Join Date
    Dec 2002
    Location
    static hum
    Posts
    3,486
    well, a friend of mine is doin the php for my albums on my site...but I plan to learn it...
    I installed Apache, php, & mySQL locally, so I can test & view php stuff without having to upload it...but it doesn&#39;t work right :S
    I&#39;m reformatting wednesday anyway (installing new mobo), so I&#39;ll try it again then...
    it&#39;s not really that hard.

    this post is guaranteed 100% parrot-free

  9. Internet, Programming and Graphics   -   #9
    Never mind. I found what I needed.

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
  •