Good job! Keep on constructing it!
1 2005-11-09 06:31
Re: Woring on something big, take a look. (2 replies, posted in PunBB 1.2 show off)
2 2005-11-08 09:07
Topic: Russian onewith English brand new part, it already has some users. (0 replies, posted in PunBB 1.2 show off)
My friend Faax helped me. Does anyone heard from him?
3 2005-11-08 09:05
Re: Ancient Japan (10 replies, posted in PunBB 1.2 show off)
Ancient Japan.. I like it! I like many things refering to it!
4 2005-11-08 09:04
Re: huruonline forums (12 replies, posted in PunBB 1.2 show off)
I only just installed punbb onto my system today.. I am liking it. Come and check us out at www.huruonline.com
Yep, good! Enjoy your work!
5 2005-08-18 15:45
Re: I have no clue (28 replies, posted in PunBB 1.2 troubleshooting)
And it doesn't matter what msn or hotmail you have
Oh, I've just downloaded the mIRC
6 2005-08-18 15:40
Re: I have no clue (28 replies, posted in PunBB 1.2 troubleshooting)
Okey.. I have only MSNmessanger.
7 2005-08-18 15:32
Re: I have no clue (28 replies, posted in PunBB 1.2 troubleshooting)
MSN messenger
Guramka@yahoo.com my e-mail. yours?
8 2005-08-18 15:23
Re: I have no clue (28 replies, posted in PunBB 1.2 troubleshooting)
P.S. Are you joking?
No way. I'm absolutely serious.
And everything I have in an INstall or downloaded files is onlt text files.. Maybe I need some programm to .. OK. My bad. I don't know anything. Sorry so much, faax...
9 2005-08-18 15:21
Re: I have no clue (28 replies, posted in PunBB 1.2 troubleshooting)
WHere can I find all those lines and so on.. Should I look through the coding of the site or something? How to?
10 2005-08-18 15:20
Re: I have no clue (28 replies, posted in PunBB 1.2 troubleshooting)
I don't understand HOW TO INSTALL! Where to push the install button and where to paste the code text.. Is it clear enough to understand what I mean?
11 2005-08-18 15:16
Re: I have no clue (28 replies, posted in PunBB 1.2 troubleshooting)
It can't help me. I don't get how to install no matter what is written there. Look
##
##
## Mod title: Reputation System
##
## Mod version: 1.0.0
## Works on PunBB: 1.2.*
## Release date: 2005-08-13
## Author: Sakuza (sakuza@sakuza.com)
##
## Description: Allow users to give reputation points to other users.
##
## Affected files: admin_options.php
## viewtopic.php
##
## Affects DB:
## New options:
## 'o_reputation_timeout'
##
## Notes: 1. The install_mod routine currently works only for MySQL.
##
## 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. UPLOAD ]------------------------------------------------------
#install_mod.php
reputation.php
include/reputation/admin_options.php
img/plus.png
img/minus.png
lang/English/reputation.php#---------[ 2. RUN ]---------------------------------------------------
#install_mod.php
#
#---------[ 3. DELETE ]---------------------------------------------------
#install_mod.php
#
#---------[ 4. OPEN ]---------------------------------------------------
#viewtopic.php
#
#---------[ 5. FIND (line:41) ]---------------------------------------------------
#require PUN_ROOT.'lang/'.$pun_user['language'].'/topic.php';
#
#---------[ 6. AFTER, ADD ]---------------------------------------------------
#require PUN_ROOT.'lang/'.$pun_user['language'].'/reputation.php';
#
#---------[ 7. FIND (line:186) ]---------------------------------------------------
#$result = $db->query('SELECT u.email, u.title, u.url, u.location, u.use_avatar, u.signature, u.email_setting, u.num_posts, u.registered, u.admin_note, p.id, p.poster AS username, p.poster_id, p.poster_ip, p.poster_email, p.message, p.hide_smilies, p.posted, p.edited, p.edited_by, g.g_id, g.g_user_title, o.user_id AS is_online FROM '.$db->prefix.'posts AS p INNER JOIN '.$db->prefix.'users AS u ON u.id=p.poster_id INNER JOIN '.$db->prefix.'groups AS g ON g.g_id=u.group_id LEFT JOIN '.$db->prefix.'online AS o ON (o.user_id=u.id AND o.idle=0) WHERE p.topic_id='.$id.' ORDER BY p.id LIMIT '.$start_from.','.$pun_user['disp_posts'], true) or error('Unable to fetch post info', __FILE__, __LINE__, $db->error());
#
#---------[ 8. REPLACE WITH ]---------------------------------------------------
#$result = $db->query('SELECT u.email, u.title, u.url, u.location, u.use_avatar, u.signature, u.email_setting, u.num_posts, u.registered, u.admin_note, u.reputation_minus, u.reputation_plus, p.id, p.poster AS username, p.poster_id, p.poster_ip, p.poster_email, p.message, p.hide_smilies, p.posted, p.edited, p.edited_by, g.g_id, g.g_user_title, o.user_id AS is_online FROM '.$db->prefix.'posts AS p INNER JOIN '.$db->prefix.'users AS u ON u.id=p.poster_id INNER JOIN '.$db->prefix.'groups AS g ON g.g_id=u.group_id LEFT JOIN '.$db->prefix.'online AS o ON (o.user_id=u.id AND o.idle=0) WHERE p.topic_id='.$id.' ORDER BY p.id LIMIT '.$start_from.','.$pun_user['disp_posts'], true) or error('Unable to fetch post info', __FILE__, __LINE__, $db->error());
#
#---------[ 9. FIND (line:322) ]---------------------------------------------------
#
<?php if (count($user_info)) echo "\t\t\t\t\t".implode('</dd>'."\n\t\t\t\t\t", $user_info).'</dd>'."\n"; ?>
<?php if (count($user_contacts)) echo "\t\t\t\t\t".'<dd class="usercontacts">'.implode(' ', $user_contacts).'</dd>'."\n"; ?>#
#---------[ 10. REPLACE WITH ]-----------------------------------------------------
#<?php if (count($user_info)) echo "\t\t\t\t\t".implode('</dd>'."\n\t\t\t\t\t", $user_info).'</dd>'."\n"; ?>
<dd>
<?php
//Is rep. system enabled
if($pun_config['o_reputation_enabled'] == '1') {
echo $lang_reputation['Reputation'];
?> :
<?php
//If viewer are guest or user who post this message,then we do not show control buttons
if($pun_user['is_guest'] != true && $pun_user['username'] != $cur_post['username']) {
?>
<a href="./reputation.php?id=<?php echo $cur_post['poster_id']; ?>&plus"><img src="./img/plus.png" alt="+" border="0"></a>
<a href="./reputation.php?id=<?php echo $cur_post['poster_id']; ?>&minus"><img src="./img/minus.png" alt="-" border="0"></a>
<?php } ?>
<strong><small>[+ <?php echo $cur_post['reputation_plus']; ?>/ -<?php echo $cur_post['reputation_minus']; ?> ]</small></strong>
<?php }?>
</dd>
<?php if (count($user_contacts)) echo "\t\t\t\t\t".'<dd class="usercontacts">'.implode(' ', $user_contacts).'</dd>'."\n"; ?>#
#---------[ 11. OPEN ]-----------------------------------------------------
#admin_options.php
#
#---------[ 12. FIND (line:404) ]---------------------------------------------------
#
#
#---------[ 13. ADD ]---------------------------------------------------
#
<?php require(PUN_ROOT.'include/reputation/admin_options.php'); ?>
12 2005-08-18 15:10
Re: I have no clue (28 replies, posted in PunBB 1.2 troubleshooting)
But I really want it! And how do another ppl do this? They do download and install these modifications. BTW, what's mod? Moderator? - I think no.
Could you do this for me, please?
13 2005-08-18 15:02
Re: I have no clue (28 replies, posted in PunBB 1.2 troubleshooting)
O_O Huh??? I know I'm bad at it but I didn't think that I'm so bad!
Could you do this instead of me? Does it take much time to?
14 2005-08-18 14:59
Re: I have no clue (28 replies, posted in PunBB 1.2 troubleshooting)
What's FTP client.
15 2005-08-18 14:55
Re: I have no clue (28 replies, posted in PunBB 1.2 troubleshooting)
OK. To reach this folder I need to be online at my forum?
16 2005-08-18 14:43
Re: I have no clue (28 replies, posted in PunBB 1.2 troubleshooting)
Sorry for my bad english ...
No probs. It's not my original language also. So?
17 2005-08-18 14:41
Re: I have no clue (28 replies, posted in PunBB 1.2 troubleshooting)
... and than with your favorit FTP client upload files on jour PUN_ROOT folder ...
What's that? O_O PUN_ROOT ?
18 2005-08-18 14:34
Re: I have no clue (28 replies, posted in PunBB 1.2 troubleshooting)
To download to my compuetr or where? Sorry for stupid questions but I'm bad programmer. Could you have a look at my forum CatGirl's Cafe and send an advice? Please.
19 2005-08-18 13:37
Re: I have no clue (28 replies, posted in PunBB 1.2 troubleshooting)
Well, I'm an administrator of my forum. And I'd love to see some features in it like PM or Reputation.
And, of course, attachements. But I have no idea, how to install this "options". Can you help me with it?
20 2005-08-18 06:43
Topic: I have no clue (28 replies, posted in PunBB 1.2 troubleshooting)
i have no clue how to install any options to my new forum. I download, open tha files but how to install it in the very forum? To paste the code into the empty field while administrating in settings? It doesn't work.. Or should I open it's codes in the Notepad and type all the codes I need there?
Please, help!
21 2005-08-12 06:31
Topic: ×òî ïðåæäå âñåãî íóæíî ñäåëàòü äëÿ ôîðóìà? (2 replies, posted in Archive)
Âñåì çäðàâñòâóéòå.
ß òîëüêî òîëüêî ñîçäàëà ñâîé ôîðóì CatGirl's Cafe è õîòåëà áû óçíàòü, ÷òî ñ íèì íå òàê è ÷òî ñëåäóåò äîáàâèòü, òàê êàê ÿ àáñîëþòíûé íîâè÷îê ñ ýòèì. Ñïàñèáî çà ïîìîùü è çà ñîâåò.
ÇÛ - Ô. íà äâóõ ÿçûêàõ.. Ðóññêèé ðàçäåë ñìîòðåòü íèæå.
È âîò òàêîé êîíêðåòíûé âîïðîñ - Êàê ñîçäàòü îòäåëüíóþ äèððåêòîðèþ ñ àâàòàðàìè? Âïèñûâàòü â ãðàôó äëÿ HTML êîäîâ? - Ïðîñòèòå çàðàíåå, ÷òî íåóìåõè åñòü íà ýòîì ñâåòå, íî îíè òîæå õîòÿò áûòü óìåõàìè
Çàðàíåå áëàãîäàðþ!