576

(10 replies, posted in Feature requests)

those 2 will most likely be one of the first mods converted to extensions so installing them will as simple as uploading some files and a click or 2, as with any extension.

my thread here lists a few mods that are slated for conversion by either the authors or volunteers.

and $5 you can't go wrong.

578

(10 replies, posted in PunBB 1.2 show off)

very nicely done... but no copyright? sad

SlideShowPro
The complete photo gallery solution for Flash

it would be easier to start with maybe the Oxygen style instead. my opinion of course.

581

(5 replies, posted in Feature requests)

i understand now. i'm sure it's an easy modification to make.

582

(5 replies, posted in Feature requests)

you're going to have to explain that a bit more since there is timezones in the registration form.

583

(62 replies, posted in News)

i think you just made the obvious official Rickard. big_smile

however, WELCOME team. only good things can come from such a dedicated and knowledgeable team.

584

(5 replies, posted in PunBB 1.2 show off)

very nicely done!

585

(12 replies, posted in Feature requests)

what you are asking for is already a feature in the current version.

goto: AdminCP > "Forums" > "Edit forums" section click "Edit" for the forum of your choice then you should get this screen: http://img90.imageshack.us/img90/116/shot0015ti0.th.jpg

adjust the permissions how you wish.

586

(71 replies, posted in Feature requests)

and you get your name on a list plus a cool new title like mine. big_smile

587

(8 replies, posted in PunBB 1.2 show off)

i've been using napster for about 2 years now and have never heard of NapsterLinks until just now... AMAZING! thanks.

588

(8 replies, posted in PunBB 1.2 show off)

nice clean skin.

i don't see the issue there.  there is a very minor difference in the rendering but that's to be expected between ie and ff.

off topic: that's a nice template you got there, is it public?

590

(9 replies, posted in PunBB 1.2 discussion)

....a few minutes later and some trial and error i think i figured it out.


in include/functions.php i edited out the links for register and login like so:

//
// Generate the "navigator" that appears at the top of every page
//
function generate_navlinks()
{
    global $pun_config, $lang_common, $pun_user;

    // Index and Userlist should always be displayed
    $links[] = '<li id="navindex"><a href="index.php">'.$lang_common['Index'].'</a>';
    $links[] = '<li id="navuserlist"><a href="userlist.php">'.$lang_common['User list'].'</a>';

    if ($pun_config['o_rules'] == '1')
        $links[] = '<li id="navrules"><a href="misc.php?action=rules">'.$lang_common['Rules'].'</a>';

    if ($pun_user['is_guest'])
    {
        if ($pun_user['g_search'] == '1')
            $links[] = '<li id="navsearch"><a href="search.php">'.$lang_common['Search'].'</a>';

        $links[] = '<li id="navregister">'.$lang_common[''].'</a>';
        $links[] = '<li id="navlogin">'.$lang_common[''].'</a>';

        $info = $lang_common['Not logged in'];
    }
    else
    {
        if ($pun_user['g_id'] > PUN_MOD)
        {
            if ($pun_user['g_search'] == '1')
                $links[] = '<li id="navsearch"><a href="search.php">'.$lang_common['Search'].'</a>';

            $links[] = '<li id="navprofile"><a href="profile.php?id='.$pun_user['id'].'">'.$lang_common['Profile'].'</a>';
            $links[] = '<li id="navlogout"><a href="login.php?action=out&id='.$pun_user['id'].'">'.$lang_common['Logout'].'</a>';
        }
        else
        {
            $links[] = '<li id="navsearch"><a href="search.php">'.$lang_common['Search'].'</a>';
            $links[] = '<li id="navprofile"><a href="profile.php?id='.$pun_user['id'].'">'.$lang_common['Profile'].'</a>';
            $links[] = '<li id="navadmin"><a href="admin_index.php">'.$lang_common['Admin'].'</a>';
            $links[] = '<li id="navlogout"><a href="login.php?action=out&id='.$pun_user['id'].'">'.$lang_common['Logout'].'</a>';
        }
    }

and then in Tubby's login.php file i changed this:

<p>
                    <input type="hidden" name="form_sent" value="1" />
                    <input type="hidden" name="redirect_url" value="<?php echo $redirect_url ?>" />
                     <?php echo $lang_common['Username'] ?><br />
                    <input type="text" name="req_username" size="16" maxlength="25" /><br /><br />
                     <?php echo $lang_common['Password'] ?><br />
 
 <input type="password" name="req_password" size="16" maxlength="16" wrap="virtual" onkeypress="if(event.keyCode==13) document.login.submit()" /><br /><br />
<input type="submit" name="login" value="<?php echo $lang_common['Login'] ?>" tabindex="3" /><br /><br />
                    <a href="register.php"><?php echo 'Register Now!'; ?></a>
                </p>

to this:

                    <input type="hidden" name="form_sent" value="1" />
                    <input type="hidden" name="redirect_url" value="<?php echo $redirect_url ?>" />
                     <?php echo $lang_common['Username'] ?>
                    <input type="text" name="req_username" size="16" maxlength="25" />
                     <?php echo $lang_common['Password'] ?>
 
 <input type="password" name="req_password" size="16" maxlength="16" wrap="virtual" onkeypress="if(event.keyCode==13) document.login.submit()" />
<input type="submit" name="login" value="<?php echo $lang_common['Login'] ?>" tabindex="3" />
                    <a href="register.php"><?php echo 'Register Now!'; ?></a>

i'm sure it's pretty dirty but it's working. any fixes to make it more propper would be appreciated i'm sure.

591

(9 replies, posted in PunBB 1.2 discussion)

question: how would i get it to be displayed where the status is on my portal page here(under navlinks). i want it to be

username: |___________|    password: |___________|    |  Login  |      ie horizontal boxes.

right under where it says "You are not logged in." and when i'm logged in be replaced by :     
Logged in as Dr.Jeckyl
Last visit: Yesterday 03:09:34

my main.tpl:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html dir="<pun_content_direction>">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<pun_char_encoding>" />
<pun_head>
</head>
<body>

<div id="punwrap">
<div id="pun<pun_page>" class="pun">

<div id="brdheader" class="block">
    <div class="box">
        <div id="brdtitle" class="inbox">
            <img src="img/freecss/logo.gif" alt="logo"/>
            <pun_desc>
        </div>
        <pun_navlinks>    
        <pun_status>
    </div>
</div>

<pun_announcement>

<pun_main>

<pun_footer>

</div>
</div>

</body>
</html>

did this make sense? any help is appreciated.

592

(9 replies, posted in PunBB 1.2 discussion)

way cool! thanks for the update.

Dugg!  kickin!

594

(5 replies, posted in PunBB 1.2 troubleshooting)

http://www.punres.org/viewtopic.php?id=1430

should work.

595

(3 replies, posted in Feature requests)

would make for a great extension for 1.3.

596

(47 replies, posted in General discussion)

I'm more upset my themes don't work with 2.0.

specifically the tango and the Ubuntu ones. sad

other than that i'm very happy with 2.0

597

(7 replies, posted in PunBB 1.2 troubleshooting)

would turing your board off until you sort it out help?

look at ../includes/template/main.tpl that might help you a bit more.

599

(9 replies, posted in General discussion)

Google will take over the world and we will like it.

600

(5 replies, posted in PunBB 1.2 troubleshooting)

in Profile > Essentials
http://img56.imageshack.us/img56/3245/emailbz8.gif