26

(12 replies, posted in PunBB 1.2 discussion)

http://chungminhlabannhe.com/uploads/copyright.jpg
I'm sory!

27

(12 replies, posted in PunBB 1.2 discussion)

i will edit my forum!

28

(12 replies, posted in PunBB 1.2 discussion)

Nevethir wrote:

and my style...

I'm sory. I dont know!

29

(12 replies, posted in PunBB 1.2 discussion)

Copyright và Powered by có khác nhau không nh?, tui ngh? là có ??y ch?. v? l?i nói th?t v?i c?u nhé. Cái mã ngu?n này tôi c?ng l?y t?  http://punbb.org Tôi m?i vào rum c?u  l?n th? 2 thôi, tôi th?y ông rêu dao tui trên trang punbb.org nên tôi chi?u c? vào rum c?a ông l?n 2 ??y, tôi th?y ? rum c?a ông có gì ?âu, nói là Share mã ngu?n nh?ng có h?c ???c ? các ông ?i?u gì ?âu!

Các mod trên rum c?a tôi ??u do m?t ng??i b?n là ANGO hack giúp tôi ?ó!

Còn v?i tôi nhé, thích thì thay ?i c?ng ???c còn n?u ?? ?ó c?ng ch?ng sao. Còn ông mang tôi sang bên http://punbb.org v?i ý ??nh gì thì có l? tôi c?ng hi?u mà!

C?m ?n nh?c ??p nhé, l?n sau nh?c nh? tui ch? ??ng bêu tui n?a nha, làm th? ông c?ng ???c ?éch gì ch?!
Tôi thì ch?ng sao c?!

30

(12 replies, posted in PunBB 1.2 discussion)

Copyright <=> Powered by

31

(10 replies, posted in General discussion)

I'm user Hesoft 2001

sory! :d

Spam!

where is mod? hide link download in my forum when guest view. member see. please help me!

ok!

in your forum, i dont see post. tongue

many host dont file .htaccess. ex free host.

hcgtv wrote:

Make an index.php in your web root, with these lines:

<?php header("Location: /forums/") ?>

very good in a Host.

edit index in http://mydomain.com

Add code in tab <head></head>

<meta http-equiv="refresh" content="2; url=http://mydomain.com/forum/index.php?" />

40

(3 replies, posted in PunBB 1.2 discussion)

yes!

41

(2 replies, posted in PunBB 1.2 show off)

Share me code, please!

42

(1 replies, posted in PunBB 1.2 troubleshooting)

i did with =>http://www.punres.org/desc.php?pid=101
but time VietNam did not work.

dont save in
admin_options.php

43

(1 replies, posted in PunBB 1.2 troubleshooting)

I'm vietnam. i want date & time in my forums. help me, Please.

##        Mod title:  Users online today
##
##      Mod version:  1.0.1
##   Works on PunBB:  1.2.5
##     Release date:  2005-06-14
##           Author:  Vincent Garnier a.k.a. vin100 (vin100@forx.fr)
##
##      Description:  This mod allow you to display a list of the registered
##                    users who was online during the day.
##
##   Affected files:  index.php
##                    lang/english/index.php
##                    lang/french/index.php
##                    style/imports/base.css
##
##       Affects DB:  No
##
##
##       DISCLAIMER:  Please note that "mods" are not officially supported by
##                    PunBB. Installation of this modification is done at your
##                    own risk. Backup your forum database and any and all
##                    applicable files before proceeding.
##
##


#
#---------[ 1. OPEN ]---------------------------------------------------------
#

index.php


#
#---------[ 2. FIND (line: 192) ]---------------------------------------------
#

    $num_users = count($users);


#
#---------[ 3. AFTER, ADD ]---------------------------------------------------
#

    // utilisateurs en ligne aujourd'hui
    $date = getdate(time());
    $todaystamp = mktime(0,0,0, $date['mon'], $date['mday'], $date['year']);

    $result = $db->query('SELECT username, id, last_visit from '.$db->prefix.'users WHERE last_visit >= \''.$todaystamp.'\' ORDER by last_visit DESC') or error('Impossible de retrouver la liste des utilisateurs en ligne aujourd\'hui', __FILE__, __LINE__, $db->error());

    $users_today = array();
    while ($pun_user_online_today = $db->fetch_assoc($result))
        $users_today[] .=  "\n\t\t\t\t".'<dd><a href="profile.php?id='.$pun_user_online_today['id'].'" title="Dernière visite de '.$pun_user_online_today['username'].' : '.format_time($pun_user_online_today['last_visit']).'">'.$pun_user_online_today['username'].'</a>';
        
    $num_users_today = count($users_today);



#
#---------[ 4. FIND (line: 193) ]---------------------------------------------
#

    echo "\t\t\t\t".'<dd>'. $lang_index['Users online'].': <strong>'.$num_users.'</strong></dd>'."\n\t\t\t\t".'<dd>'.$lang_index['Guests online'].': <strong>'.$num_guests.'</strong></dd>'."\n\t\t\t".'</dl>'."\n";


#
#---------[ 5. REPLACE WITH ]-------------------------------------------------
#

    echo "\t\t\t\t".'<dd>'.$lang_index['Users online'].': <strong>'.$num_users.'</strong></dd>'."\n\t\t\t\t".'<dd>'.$lang_index['Users today'].': <strong>'.$num_users_today.'</strong></dd>'."\n\t\t\t\t".'<dd>'.$lang_index['Guests online'].': <strong>'.$num_guests.'</strong></dd>'."\n\t\t\t".'</dl>'."\n";


#
#---------[ 6. FIND (line: 196-199) ]-----------------------------------------
#

    if ($num_users > 0)
        echo "\t\t\t".'<dl id="onlinelist" class= "clearb">'."\n\t\t\t\t".'<dt><strong>'.$lang_index['Online'].': </strong></dt>'."\t\t\t\t".implode(',</dd> ', $users).'</dd>'."\n\t\t\t".'</dl>'."\n";
    else
        echo "\t\t\t".'<div class="clearer"></div>'."\n";


#
#---------[ 7. AFTER, ADD ]---------------------------------------------------
#

    // liste utilisateurs en ligne aujourd'hui
    echo "\t\t\t".'<dl id="onlinetodaylist">'."\n\t\t\t\t".'<dt><strong>'.$lang_index['Online today'].': </strong></dt>';
                
    if ($num_users_today > 0) 
        echo implode(',</dd> ', $users_today).'</dd>'."\n\t\t\t".'</dl>'."\n";
    else
        echo '<dd><em>aucun</em></dd>'."\n\t\t\t".'</dl>'."\n";


#
#---------[ 8. OPEN ]---------------------------------------------------------
#

style/imports/base.css


#
#---------[ 9. FIND (line: 223) ]---------------------------------------------
#

#onlinelist DD, #onlinelist DT, #brdmenu LI, DIV.linkst LI, DIV.linksb LI, DIV.postlinksb LI,
DIV.postfootright LI, UL.bblinks LI {
    DISPLAY: inline;
    HEIGHT: 0
}


#
#---------[ 10. REPLACE WITH ]------------------------------------------------
#

#onlinelist DD, #onlinelist DT, #onlinetodaylist DD, #onlinetodaylist DT,
#brdmenu LI, DIV.linkst LI, DIV.linksb LI, DIV.postlinksb LI,
DIV.postfootright LI, UL.bblinks LI {
    DISPLAY: inline;
    HEIGHT: 0
}


#
#---------[ 11. OPEN ]--------------------------------------------------------
#

lang/English/index.php


#
#---------[ 12. FIND (line: 4) ]----------------------------------------------
#

$lang_index = array(



#
#---------[ 13. AFTER, ADD ]--------------------------------------------------
#

'Online today'            =>    'Online today',
'Users today'            =>    'Registered users today',



#
#---------[ 14. OPEN ]--------------------------------------------------------
#

lang/French/index.php


#
#---------[ 15. FIND (line: 4) ]----------------------------------------------
#

$lang_index = array(



#
#---------[ 16. AFTER, ADD ]--------------------------------------------------
#

'Online today'            =>    'En ligne aujourd\'hui',
'Users today'            =>    'Membres aujourd\'hui',


#
#---------[ 17. SAVE/UPLOAD ]-------------------------------------------------

45

(11 replies, posted in General discussion)

yes!

46

(20 replies, posted in PunBB 1.2 troubleshooting)

i want user ULR for avatars. Please help me!

47

(0 replies, posted in PunBB 1.2 troubleshooting)

where i can find it?

no file yourmusik.mp3
post again please. thank!

with mp3?
Link download die!

post again, please!

50

(11 replies, posted in General discussion)

i have an domain name. i want a host free of php. where is fint it?