I'm sory!
26 2006-06-11 12:12
Re: PunBB's copyright removed (12 replies, posted in PunBB 1.2 discussion)
27 2006-06-11 11:47
Re: PunBB's copyright removed (12 replies, posted in PunBB 1.2 discussion)
i will edit my forum!
28 2006-06-11 11:43
Re: PunBB's copyright removed (12 replies, posted in PunBB 1.2 discussion)
and my style...
I'm sory. I dont know!
29 2006-06-11 11:40
Re: PunBB's copyright removed (12 replies, posted in PunBB 1.2 discussion)
Forum : http://sinhvienthainguyen.com/
http://forum.vnoss.org/pub/svtn-punbb-copyright.pngReaction at VnOSS : http://forum.vnoss.org/viewtopic.php?id=2845
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 2006-06-11 11:33
Re: PunBB's copyright removed (12 replies, posted in PunBB 1.2 discussion)
Copyright <=> Powered by
31 2006-06-08 06:38
Re: Convert .wma and .cda to .mp3 (10 replies, posted in General discussion)
I'm user Hesoft 2001
32 2006-06-07 01:23
Re: Redirect main site index to forum without META refresh tag (15 replies, posted in PunBB 1.2 troubleshooting)
sory! :d
33 2006-06-06 15:02
Re: Redirect main site index to forum without META refresh tag (15 replies, posted in PunBB 1.2 troubleshooting)
Spam!
34 2006-06-06 05:09
Topic: Mod licence download from forum (0 replies, posted in PunBB 1.2 troubleshooting)
where is mod? hide link download in my forum when guest view. member see. please help me!
35 2006-06-06 05:06
Re: Redirect main site index to forum without META refresh tag (15 replies, posted in PunBB 1.2 troubleshooting)
ok!
36 2006-06-06 05:04
Re: MacinCHAT.com - brand new PunBB installation (3 replies, posted in PunBB 1.2 show off)
in your forum, i dont see post.
37 2006-06-06 05:02
Re: Redirect main site index to forum without META refresh tag (15 replies, posted in PunBB 1.2 troubleshooting)
many host dont file .htaccess. ex free host.
38 2006-06-06 04:57
Re: Redirect main site index to forum without META refresh tag (15 replies, posted in PunBB 1.2 troubleshooting)
Make an index.php in your web root, with these lines:
<?php header("Location: /forums/") ?>
very good in a Host.
39 2006-06-06 04:51
Re: Redirect main site index to forum without META refresh tag (15 replies, posted in PunBB 1.2 troubleshooting)
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 2006-06-05 15:50
Re: How to change to Unicode font. (3 replies, posted in PunBB 1.2 discussion)
yes!
41 2006-06-05 09:23
Re: My Punbb Boards (2 replies, posted in PunBB 1.2 show off)
Share me code, please!
42 2006-06-04 04:07
Re: timezone (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 2006-06-04 03:46
Topic: timezone (1 replies, posted in PunBB 1.2 troubleshooting)
I'm vietnam. i want date & time in my forums. help me, Please.
44 2006-06-04 03:25
Re: Same user appears 3 times in the online list (44 replies, posted in PunBB 1.2 bug reports)
## 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 ]-------------------------------------------------
46 2006-06-03 12:11
Re: avatars uploading (20 replies, posted in PunBB 1.2 troubleshooting)
i want user ULR for avatars. Please help me!
47 2006-06-03 06:51
Topic: Mp3 Video FLASH reader (0 replies, posted in PunBB 1.2 troubleshooting)
where i can find it?
48 2006-06-03 06:39
Re: Player Flash MP3 (9 replies, posted in PunBB 1.2 modifications, plugins and integrations)
no file yourmusik.mp3
post again please. thank!
49 2006-06-03 06:24
Re: Video FLASH (FLV) reader by BBCODE (13 replies, posted in PunBB 1.2 modifications, plugins and integrations)
with mp3?
Link download die!
post again, please!
50 2006-06-03 02:46
Re: Domain Names Value... (11 replies, posted in General discussion)
i have an domain name. i want a host free of php. where is fint it?