The link does not work.

Hi all,

Is there any way to pull just the titles of the threads, and their authors (from one forum), and display them on a page?

I can do this right now through vbulletin, but I can't seem to find a way to do it with punbb. I do this currently in vbulletin like so:

<script type="text/javascript" src="http://www.test.com/forums/external.php?type=js&forumids=9"></script> 
                        <script language="" type="text/javascript">
                        <!--
                        for (x = 0; x < 6; x++)
                        {
                        document.writeln("<a href=\"http://www.test.com/forums/showthread.php?t="+threads[x].threadid+"\">"+threads[x].title+"</a> "+threads[x].threaddate+"<br />");
                        }
                        //-->
                        </script>

Can they still create a top-level post?

4

(4 replies, posted in PunBB 1.2 discussion)

Which css file is this in?

Just a quick question here, my organization is evaluating switching from vbulletin to punbb and one of the stipulations is that we need to be able to "moderate" posts before they are posted. So any posts in forum XYZ have to be approved prior to being posted. I would have searched for this in the modules but I wasn't sure what it would have been called.

Thanks! This sure is a super fast forum in comparison to the beast that is vBulletin.

6

(7 replies, posted in News)

How does one install this converter?

Could you explain this a little more for me... I'm not sure I follow your idea here.

So I have a site where I'd like to use a punbb forum instead of vbulletin (cause it's just so much faster and easier to use) but I'm running into a problem adjusting punbb to match my sites look and feel.

Basically I have different headers for different parts of the forum. Now I was thinking I could make this work in punbb by doing this:

ex. 

<?php
    if($_GET['id']==3){ 
    echo"output our header";
    echo "<div style=\"background-color:#cdcdcd;width:100%\">beautiful</div>";
    }
    else{}
?>

I have included the following code inside of banner.php which is included in the main.tpl file using the punbb include method. The problem is that when I click a post, the banner disappears even though I'm still inside that forum. This is because the id is no longer equal to 3 because it is based off a URL like so:

/viewtopic.php?id=2

Instead of...
/viewforum.php?id=3

So how can you maintain a header inside of a forum, and inside of the posts within that forum?

Thanks!