Strofanto wrote:
GeoffG wrote:

could it be in any file I edited?

or just one?

Any, because the footer.php (where the copyright notice is) is called by every forums file.

GeoffG wrote:

and how do I remove the underline from all the users online so it just appears as their names?

Put the text-decoration: none; in the CSS entry that defines links.

thanks very much!

but where would the entry be located that defines the links?

how would I go about deleting from the database? sad

could it be in any file I edited?

or just one?
---------------------------------------------
and how do I remove the underline from all the users online so it just appears as their names?

It seems when I change the admins usergroup color the "Powered by PunBB
© Copyright 2002?2005 Rickard Andersson" changes to that color as well.

gracias in advance.

-Geoff

lmfao I must have accidently deleted it??? SOMEHOW? cause it wasn't in the zip but oddly enough it wasn't in the recylcing bin... yet I re-downloaded it and it was there O_O ....

thanks for the heads up lol I was going nuts over such a simple issue >__>

zzzzz. sheesh

thanks.

I just installed the Easy_Poll-1.1.3.

and when I try to create a poll.... nothing appears ... the page just appears "The webpage cannot be found" ...

>_> any reason why?? I've reinstalled the mod 3 times now .... still same thing .... does it still work with 2.1.4 punbb?...

sad

I would really like to know how to edit/delete posts in the chatbox... because alot of people are posting inappropriate things there ... and some sort of moderation for the chatbox would be great ....

any help??

thanks.

Smarty <3

*sigh*

I hate being code dumb =[

so what exactly would I change to allow it to all work properly?

read me

##
##
##        Mod title:  Reputation System 
##
##      Mod version:  2.2.0
##   Works on PunBB:  1.2.*
##     Release date:  2006-04-24
##           Author:  hcs (hcs@mail.ru)
##  Original Author:  Sakuza (sakuza@sakuza.com) (Mod version:  1.0.1    )
##
##      Description:  Allow users to give reputation points to other users.
##              Users necessarily specify the reason of change of reputation and can look who it changed.
##                    Admins & mods can delete any reputation any users.
##
##   Affected files:   viewtopic.php, profile.php
##
##       Affects DB:  Table users drop column if exists:
##            reputation_plus
##            reputation_minus
##
##              New table: reputation      
##                    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.
##
##


If  you are already installed Reputation system 1.0.1 of Sakuza 
follow the instructions in the upgrade_from_1.0.1.txt

If  you are already installed Reputation system 2.*.* of hcs 
follow the instructions in the upgrade_from_2.*.*.txt


Follow this instruction only if new install of Reputation mod

#
#---------[ 1. UPLOAD ]------------------------------------------------------
#

install_mod.php
reputation.php
include/reputation/rep_viewtopic.php
plugins/AP_Reputation.php
img/warn_plus.gif
img/warn_minus.gif
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) ]---------------------------------------------------
#

u.num_posts, u.registered, u.admin_note,


#
#---------[ 8. AFTER ADD ]---------------------------------------------------
#


 SUM(r.rep_plus) AS count_rep_plus, SUM(r.rep_minus) AS count_rep_minus, u.reputation_enable,
 
 
#
#---------[ 9. FIND (line:186) ]---------------------------------------------------
#
 

 WHERE p.topic_id='.$id.'  

 
#
#---------[ 10. BEFORE ADD ]---------------------------------------------------
#
 
 LEFT JOIN '.$db->prefix.'reputation as r ON (r.user_id=u.id) 


#
#---------[ 11. FIND (line:186) ]---------------------------------------------------
#


ORDER BY p.id LIMIT '.$start_from.','.$pun_user['disp_posts'], true)
 
 
#
#---------[ 12. BEFORE ADD ]---------------------------------------------------
# 

 GROUP BY p.id 
 
#
#---------[ 13. 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"; ?>


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

<?php require(PUN_ROOT.'include/reputation/rep_viewtopic.php'); ?>


#
#---------[ 15. OPEN ]---------------------------------------------------
#

profile.php


#
#---------[ 16. FIND (line:~802) ]---------------------------------------------------
#

            $form = extract_elements(array('disp_topics', 'disp_posts', 'show_smilies', 'show_img', 'show_img_sig', 'show_avatars', 'show_sig', 'style'));


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

            $form['reputation_enable'] = pun_linebreaks(trim($_POST['reputation_enable']));
            if (!isset($form['reputation_enable']) || $form['reputation_enable'] != '1') $form['reputation_enable'] = '0';



#
#---------[ 18. FIND (line:~1435) ]---------------------------------------------------
#


                            <p class="clearb"><?php echo $lang_profile['Paginate info'] ?> <?php echo $lang_profile['Leave blank'] ?></p>
                        </div>
                    </fieldset>
                </div>
#
#---------[ 19. AFTER, ADD ]-----------------------------------------------------
#

<?php require(PUN_ROOT.'include/reputation/rep_profile.php'); ?>

O_O thats the only line the 2 mods conflict at ... and I know there is a way aroundit because I've seen both mods on other punbb forums before >__<

I've been messin around with the code but ... nothin =/
(wish I knew more php sad)

and like I said I remove that one part where the rep mod needs to be added ... and the image awards mod works fine but .. the rep mod does not xD (durka durrr). So is there another area where I can input that code?? or am I going to need a whole need code all together (Geoff <---- cannot code in php) sad

Ok, I just had the reputation mod installed worked 100% then I decided to add the image awards mod .... and I notice the 2 mods conflict a bit .. but I went through it anyways (they edited the same line, and  just squeezed the rep mod code I was suppost to add back into the line where the image award mod told me to replace) and I get the error CANNOT FETCH POST INFO..... so I remove the little rep mod code I'm suppost to add in ... and everything is fine...... >__> but I need to fit this Rep Mod code back in so the reputation mod will work properly...

any suggestions??

code that I need to add back in somehow

#---------[ 7. FIND (line:186) ]---------------------------------------------------
#

u.num_posts, u.registered, u.admin_note,


#
#---------[ 8. AFTER ADD ]---------------------------------------------------
#


 SUM(r.rep_plus) AS count_rep_plus, SUM(r.rep_minus) AS count_rep_minus, u.reputation_enable,

My current code w/ image awards mod and rep mod in there in there
(I've tried just to add it in there normally where it says ... but that doesn't work)

// Retrieve the posts (and their respective poster/online status)
$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,SUM(r.rep_plus) AS count_rep_plus, SUM(r.rep_minus) AS count_rep_minus, u.reputation_enable, u.imgaward, 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());
while ($cur_post = $db->fetch_assoc($result))
{

Thanks in advance.

-Geoff

Smartys wrote:

Moved to Modifications
1. I think you would have to write seperate files for this
2. I think it keeps a seperate count now: if it does, you could just modify the query to increment the regular count as well
3. Changing the way the Javascript outputs the text is the easiest way I think

Now if I only knew how to do all that sad

johncozzy wrote:
GeoffG wrote:

1) Is there a way to delete/edit the posts in your chat box??
-Geoff

well, you can edit the chatbox_msg table in your database to prune the entries. refreshing the browsers, though, is another matter. or am i not understanding the question?

Well... I meant how to edit the chatbox posts like you would normally do on a forum. (delete, etc...)

^^ which is also why I asked if I could somehow make it add to the post count ... and then possible create a seperate forum for the chatbox where all the messages would be stored O_O <---- is that possible????

thanks again.

1) Is there a way to delete/edit the posts in your chat box??
2) Is there a way to let the chatbox posts add to the users regular post count.
3) Is there a way to let the chatbox posts go from top (new messages) bottom (older messages) (reverse from what it is now)

^^ my chat box questions..

I know all are possible ... but I have no clue what to edit =/

all help is greatly appreciated

thanks in advance

-Geoff

well its the chatbox mod btw for you guys that didn't know what mod I was talking about.

xD

sad

So, Smartys I'm assuming your don't know? =/

Is there any way to get the chat box to read from top to bottom?? as of right now it reads from bottom (the newest chat message) top (oldest chat message).

Any way to reverse this??

thanks in advance.

-Geoff

sad

sad

I want to add a picture to the ban messages I give out to people.

How would I go about doing this / what would I edit.

thanks in advance.

=[

liquidat0r wrote:
Connorhd wrote:

http://www.ventrilo.com/download.php "PHP Ventrilo Status Scripts"

The only problem is that you have to install something onto your server to be able to use the script.

D=

I didn't see any =/

I was wondering If this was possible to make "Ventrilo Users Online" mod almost like the "Users Online Now" sort of thing for the punbb forums.

I think it would be a great mod to add for anyone that has a vent server.

can this be done?

and possibly a server status bar that says whether the ventrilo server is online or offline.

that would be pretty sweet O_O

but what a let down your leaving D=

*cries*