Good job! Keep on constructing it!

My friend Faax helped me. Does anyone heard from him?

You may have a look at my forum here

3

(10 replies, posted in PunBB 1.2 show off)

Ancient Japan.. I like it! I like many things refering to it!

4

(12 replies, posted in PunBB 1.2 show off)

huru wrote:

I only just installed punbb onto my system today.. I am liking it. Come and check us out at www.huruonline.com smile

Yep, good! Enjoy your work!

5

(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

(28 replies, posted in PunBB 1.2 troubleshooting)

Okey.. I have only MSNmessanger.

7

(28 replies, posted in PunBB 1.2 troubleshooting)

MSN messenger


Guramka@yahoo.com my e-mail. yours?

8

(28 replies, posted in PunBB 1.2 troubleshooting)

faax wrote:

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

(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

(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? sad

11

(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

(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

(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

(28 replies, posted in PunBB 1.2 troubleshooting)

What's FTP client.

15

(28 replies, posted in PunBB 1.2 troubleshooting)

OK. To  reach this folder I need to be online at my forum?

16

(28 replies, posted in PunBB 1.2 troubleshooting)

faax wrote:

Sorry for my bad english ...

No probs. It's not my original language also. wink So?

17

(28 replies, posted in PunBB 1.2 troubleshooting)

faax wrote:

... and than with your favorit FTP client upload files on jour PUN_ROOT folder ...

What's that? O_O    PUN_ROOT ?

18

(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

(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

(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!

Âñåì çäðàâñòâóéòå.

ß òîëüêî òîëüêî ñîçäàëà ñâîé ôîðóì  CatGirl's Cafe è õîòåëà áû óçíàòü, ÷òî ñ íèì íå òàê è ÷òî ñëåäóåò äîáàâèòü, òàê êàê ÿ àáñîëþòíûé íîâè÷îê ñ ýòèì. Ñïàñèáî çà ïîìîùü è çà ñîâåò.

ÇÛ - Ô. íà äâóõ ÿçûêàõ.. Ðóññêèé ðàçäåë ñìîòðåòü íèæå.

È âîò òàêîé êîíêðåòíûé âîïðîñ - Êàê ñîçäàòü îòäåëüíóþ äèððåêòîðèþ ñ àâàòàðàìè? Âïèñûâàòü â ãðàôó äëÿ HTML êîäîâ? - Ïðîñòèòå çàðàíåå, ÷òî íåóìåõè åñòü íà ýòîì ñâåòå, íî îíè òîæå õîòÿò áûòü óìåõàìè wink

Çàðàíåå áëàãîäàðþ!