never mind i read the top... change o to 1
lol..

i need to bundle this script with the img system and my register.php file....
we now got it where when people register they can select the certain groups..
members
webmasters
freelancers

since all three file work together..

thanks again......
Q

how do i turn on the img code ?
i downloaded ur new script and i dont see it in my contact pae.
http://punlancer.com/contact.php


thanks
Q

428

(11 replies, posted in PunBB 1.2 troubleshooting)

dont remove the title...

just go in and add this to the css that you picked.

#brdtitle { display: none; }
#brdtitle p { display: none; }

kewl i sent you a yim scot405583

ops... my FF crash....lmao...

cisco do u got msn yahoo aim?

send me an email and ill talk you threw it.
Q

oh ok..
first off i just wanted to display the banners in a block. but i started thinking.. why not link from other site to it?
maybe even i will build a advertising site where people can post there banners for free and do some exchange system..

just an idea.

Q

433

(10 replies, posted in PunBB 1.2 troubleshooting)

do u want something like this.

http://punlancer.com/index.php

Q

ID      Name                                       In-Hits               Out-Hits     
1    Shedrock Online                          0                     28   


example this month so far this is the status for id 1
everymonth i clear out the out@

this was designed with the affiliates mod and i had the rotating banners script added to it.
i sorta follow you and sorta not...

lol.
Q

umm im lost. what are you talking about?


Q

Anyone have any banners to trade?


i have a free banner  system that runs on about 15 different sites.

please email me your site, your site banner, and name of your site.
i will put you in my banner system...


this is a list of current banners.
http://nalan.org/advertise.php

438

(8 replies, posted in PunBB 1.2 discussion)

Susan you can add the box via the tpl and place your files inside the include/user folder

such as this

name this extra_box.php

<div class="block">
            <h2><span>Extra Box</span></h2>
            <div class="box">
                <div class="inbox">
                    <p>
                    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Praesent augue. Nulla facilisi. Fusce bibendum accumsan erat. Quisque sollicitudin mattis neque. Sed dapibus. Integer a lectus eu sem consequat pellentesque. Morbi rhoncus nulla. Duis adipiscing interdum velit. Fusce ante. Ut vitae enim sit amet magna sodales hendrerit. In sed tortor at sapien convallis eleifend. Proin mauris. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut metus. Cras ac arcu et arcu porttitor blandit. Nam vitae lectus eget mauris sollicitudin placerat. Suspendisse vestibulum. Donec varius libero. Duis velit tellus, euismod vitae, consequat sed, consectetuer ut, purus.
                    </p>
                    <p>
                    Praesent viverra venenatis magna. Etiam in dolor. Ut in justo ac nibh malesuada cursus. Duis urna arcu, aliquam vitae, consequat nec, tincidunt non, mi. Nunc lobortis. Nunc pharetra. Sed porttitor. Maecenas turpis tortor, blandit nec, dignissim in, porttitor eu, odio. In hac habitasse platea dictumst. Suspendisse augue odio, ornare a, elementum ac, tincidunt varius, orci. Nulla libero ante, hendrerit ac, consectetuer eu, sollicitudin et, eros. Duis sapien. Suspendisse ornare enim sit amet dui. Donec ullamcorper diam.
                    </p>
                </div>
            </div>
        </div>

save that file as extra_box.php inside the include/user folder!!!!

now open main.tpl
and place this string where you want the box to show...

<pun_include "extra_box.php">

that it... extra box!!

Q

439

(12 replies, posted in Programming)

i put that code on my simple upload script since it would only redirect to a page. that said you have uploaded a file! so i wanted it to display that message then after 45ms it would go back to the main page.


Q

440

(7 replies, posted in PunBB 1.2 troubleshooting)

ok i got it.. in the admin -->options there a button to turn on.. something like open all links in new window.

somewhere in there...


Q

441

(12 replies, posted in Programming)

would this help a little javascipt for delay on redirect?

<script language=javascript>
setTimeout("location.href='[/index.php]'", 45);
</script>

actually that is kewl. im going to apply this to punlancer.com... so i can see sorta when the last post was made..



thanks......

Q

443

(5 replies, posted in PunBB 1.2 discussion)

not to be a smarty pants the best one is the one u create your self or a team efford!

on punres i uploaded the mini-portal standalone mod.

it is everything from the punres wiki-mini portal plus  a portal.tpl for having a different look on the index compared to the forum page.

Q

ok ok.... here we go !
here is a standard main.tpl

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

<html xmlns="http://www.w3.org/1999/xhtml" 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">
            <pun_title>
            <pun_desc>
        </div>
        <pun_navlinks>
        <pun_status>
    </div>
</div>

<pun_announcement>

<pun_main>

<pun_footer>

</div>
</div>

</body>
</html>

Now here what you will do!

create a folder called user place it in the include folder!!
/include/user

inside this folder you will place photo.php

create this called photo.php

<?php
include '/coppermine/showthumb.php';
?>

save this as photo.php inside the include/user folder
path: /include/user/photo.php

now open main .tpl
add this to where you want the images to show up!!!

<div class="block">
            <h2><span>test</span></h2>
            <div class="box">
                <div class="inbox">

                   <pun_include "photo.php">

                </div>
            </div>
        </div>

here what the main.tpl should look line!!

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

<html xmlns="http://www.w3.org/1999/xhtml" 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">
            <pun_title>
            <pun_desc>
        </div>
        <pun_navlinks>
        <pun_status>
    </div>
</div>

<pun_announcement>
<div class="block">
            <h2><span>test</span></h2>
            <div class="box">
                <div class="inbox">

                   <pun_include "photo.php">

                </div>
            </div>
        </div>
<pun_main>

<pun_footer>

</div>
</div>

</body>
</html>

that is it... simple !

Q

445

(5 replies, posted in PunBB 1.2 show off)

looks real good....

Q

446

(2 replies, posted in Feature requests)

u can also visit http://www.jsand.net/spinkbb and make your own style with tons of colors...



Q

447

(3 replies, posted in PunBB 1.2 troubleshooting)

Mikey B

there is no css for the extra links that you add via admin - options or rules.

sorta hard to add those to the tab.css

Q

how about sometype of stats mod? that displays either in a graph chart or sometype of pie ?

maybe even something like punres stats?


Q

449

(19 replies, posted in General discussion)

Here something i just did...
http://punlancer.com/punbb.png

sorta red but it is kewl looking..


Q

why not put the facebook mod in your punbb? it gives you that function.... beside using the avatar....

http://www.punres.org/desc.php?pid=420
Q