Webmaster Forum

Lionsanime Directory   Improve your ranking, submit to directories   V7N Directory
Go Back   Webmaster Forum > Web Development > Web Design Lobby > Coding Forum
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Coding Forum Problems with your code? Let's hear about it.

Reply
 
LinkBack Thread Tools Display Modes
Old 06-23-2004, 09:31 AM   #1 (permalink)
Contributing Member
 
GoldDust's Avatar
 
Join Date: 12-28-03
Location: East London, UK
Posts: 601
iTrader: 0 / 0%
Latest Blog:
None

GoldDust is just really niceGoldDust is just really niceGoldDust is just really niceGoldDust is just really niceGoldDust is just really niceGoldDust is just really niceGoldDust is just really niceGoldDust is just really niceGoldDust is just really niceGoldDust is just really niceGoldDust is just really nice
Send a message via MSN to GoldDust
IP address - Moderators

Quick question:

On my phpBB forum how do I disable Moderators form viewing Ip address?

thanx in advance.
__________________
:: Dance Mixes :: Dance Music Directory ::
GoldDust is offline  
Add Post to del.icio.us
Reply With Quote
Sponsored Links
SEO Hosting by HostGator  Advertise Here  Buy Blog Links
Old 06-23-2004, 10:15 AM   #2 (permalink)
Potato Monster
 
Immo's Avatar
 
Join Date: 03-26-04
Location: Chester, England
Posts: 3,888
iTrader: 0 / 0%
Immo is a web professional of the highest orderImmo is a web professional of the highest orderImmo is a web professional of the highest orderImmo is a web professional of the highest orderImmo is a web professional of the highest orderImmo is a web professional of the highest orderImmo is a web professional of the highest orderImmo is a web professional of the highest orderImmo is a web professional of the highest orderImmo is a web professional of the highest orderImmo is a web professional of the highest order
Send a message via ICQ to Immo Send a message via AIM to Immo Send a message via MSN to Immo Send a message via Yahoo to Immo Send a message via Skype™ to Immo
Try looking for a hack or have you tried in the advanced menu in the user permissions section?
__________________
I have become death, destroyer of worlds.
Immo is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-23-2004, 12:52 PM   #3 (permalink)
Contributing Member
 
GoldDust's Avatar
 
Join Date: 12-28-03
Location: East London, UK
Posts: 601
iTrader: 0 / 0%
Latest Blog:
None

GoldDust is just really niceGoldDust is just really niceGoldDust is just really niceGoldDust is just really niceGoldDust is just really niceGoldDust is just really niceGoldDust is just really niceGoldDust is just really niceGoldDust is just really niceGoldDust is just really niceGoldDust is just really nice
Send a message via MSN to GoldDust
There isnt a hack that stop mods viewing ip's ( i think)

Also, there isnt an option to disable ip's from moderators view in the admin.

what I need to do is use a switch around the ip link code in viewtopic_body.tpl

so if anybody can help with the switch code I would apprecate that.
__________________
:: Dance Mixes :: Dance Music Directory ::
GoldDust is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-23-2004, 06:10 PM   #4 (permalink)
Contributing Member
 
GoldDust's Avatar
 
Join Date: 12-28-03
Location: East London, UK
Posts: 601
iTrader: 0 / 0%
Latest Blog:
None

GoldDust is just really niceGoldDust is just really niceGoldDust is just really niceGoldDust is just really niceGoldDust is just really niceGoldDust is just really niceGoldDust is just really niceGoldDust is just really niceGoldDust is just really niceGoldDust is just really niceGoldDust is just really nice
Send a message via MSN to GoldDust
All sorted


This mod allows only forum admins to only see IP addresses, always good if you have created multiple accounts and dont want to be found out

Quote:
################################################## ###############

## Mod Title: IP Only Viewable By Admin

## Mod Version: 1.0.0

## Author: Acyd Burn < acyd.burnatgmx.de > - Meik Sievertsen - opentools.de/

##

## Description:

## This little mod allows only admins to view the ip of Users.

##

## Installation Level: easy

## Installation Time: 5 Minutes

## Files To Edit: modcp.php, viewtopic.php

## Included Files: 0

##

################################################## ############

## This MOD is released under the GPL License.

## Intellectual Property is retained by the MOD Author(s) listed above

################################################## ############

## For Security Purposes, Please Check: http://www.phpbb.com/mods/downloads/ for the

## latest version of this MOD. Downloading this MOD from other sites could cause malicious code

## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered

## in our MOD-Database, located at: http://www.phpbb.com/mods/downloads/

################################################## ############

## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD

################################################## ###############



#

#-----[ OPEN ]---------------------------------------------

#

/phpBB2/modcp.php



#

#-----[ FIND ]---------------------------------------------

#

//

// End Auth Check

//



#

#-----[ AFTER, ADD ]---------------------------------------

#

if ( ($mode == 'ip') && ($userdata['user_level'] != ADMIN) )

{

$mode = '';

}



#

#-----[ OPEN ]---------------------------------------------

#

/phpBB2/viewtopic.php



#

#-----[ FIND ]---------------------------------------------

#

$delpost_img = '';

$delpost = '';

}

}



#

#-----[ AFTER, ADD ]---------------------------------------

#

if ( ($is_auth['auth_mod']) && ($userdata['user_level'] != ADMIN) )

{

$ip_img = '';

$ip = '';

}



#

#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------

#

# EoM


}
__________________
:: Dance Mixes :: Dance Music Directory ::
GoldDust is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-23-2004, 06:48 PM   #5 (permalink)
CEO, V7 Inc
 
John Scott's Avatar
 
Join Date: 09-27-03
Location: Japan, mostly
Posts: 42,616
iTrader: 2 / 100%
John Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster material
Send a message via AIM to John Scott Send a message via Yahoo to John Scott
Just curious why you wouldn't want mods to be able to see IP addresses?
__________________
Buy Permanent Contextual Links - V7N Web Directory

Questions? Call V7 toll free @ 1.888.876.8762
John Scott is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-23-2004, 10:31 PM   #6 (permalink)
No Longer Here
 
Join Date: 09-27-03
Location: State College, PA
Posts: 9,354
iTrader: 0 / 0%
Latest Blog:
None

Jazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebodyJazzee is liked by somebody
Quote:
Originally Posted by GoldDust
always good if you have created multiple accounts and dont want to be found out
Probably that
Jazzee is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-23-2004, 10:41 PM   #7 (permalink)
CEO, V7 Inc
 
John Scott's Avatar
 
Join Date: 09-27-03
Location: Japan, mostly
Posts: 42,616
iTrader: 2 / 100%
John Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster material
Send a message via AIM to John Scott Send a message via Yahoo to John Scott
OIC.
__________________
Buy Permanent Contextual Links - V7N Web Directory

Questions? Call V7 toll free @ 1.888.876.8762
John Scott is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-25-2004, 03:59 AM   #8 (permalink)
Inactive
 
samer's Avatar
 
Join Date: 10-13-03
Location: Lebanon
Posts: 4,099
iTrader: 0 / 0%
samer is just really nicesamer is just really nicesamer is just really nicesamer is just really nicesamer is just really nicesamer is just really nicesamer is just really nicesamer is just really nicesamer is just really nicesamer is just really nicesamer is just really nice
aha
samer is offline  
Add Post to del.icio.us
Reply With Quote
Go Back   Webmaster Forum > Web Development > Web Design Lobby > Coding Forum

Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Any DP moderators here? Nima Forum Lobby 23 12-06-2007 05:37 PM
Two New Moderators John Scott Forum Lobby 48 06-21-2007 12:56 AM


Sponsor Links
Get exposure! Get exposure! Find Scripts Web Hosting Directory Get exposure! SEO Blog


All times are GMT -7. The time now is 04:56 AM.
© Copyright 2008 V7 Inc