vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Administrative and Maintenance Tools - IpInfo -- Extra user IP information (https://vborg.vbsupport.ru/showthread.php?t=117966)

rainyleaves 07-14-2007 12:41 PM

Great!!!
Thanks~
Installed.

SBlueman 07-15-2007 06:25 AM

I installed it tonight and it seems to work well except for one thing.....each member seems to display me in their results as someone who uses the same IP. How can I fix this???

SBlueman 07-27-2007 09:06 AM

Quote:

Originally Posted by SBlueman (Post 1291635)
I installed it tonight and it seems to work well except for one thing.....each member seems to display me in their results as someone who uses the same IP. How can I fix this???

Anyone?

Dannyloski 07-28-2007 03:43 AM

Working beautifully on vB 3.6.8 :up:

At first it was displaying like the Normal vB IP Info and I had installed everything as noted, but then after clearing the Browser's Cache and retrying it displayed ... This might be the issue some users might be having.

bkaul 07-29-2007 08:50 PM

Great mod. Suggestion for improvement: add link from Who's Online IP listing to search.

Makc666 08-01-2007 04:46 AM

Quote:

Originally Posted by SBlueman (Post 1291635)
I installed it tonight and it seems to work well except for one thing.....each member seems to display me in their results as someone who uses the same IP. How can I fix this???

What means "each member seems to display me in their results as someone who uses the same IP"?
I can't understand you.
Give as a screenshot.
Maybe you site is hosted throw some proxy...

Eagle Creek 08-09-2007 01:19 PM

How server intensive is this mod?

Zachariah 08-09-2007 02:45 PM

Quote:

Originally Posted by Eagle Creek (Post 1313621)
How server intensive is this mod?

Only if you resolve the IP (hit the image for more info).
- 11 queries

Stifmeister2 08-09-2007 03:37 PM

This is a great hack. :) Simple and yet very effective.

Zachariah 10-04-2007 03:54 PM

Changelog:
==========
1.4
- Added options to limit usage by usergroups.
- removed template edit. :D
- Works if "Log IP Addresses" set to "Display Publicly"

Charlie98902 10-04-2007 04:06 PM

Quote:

Originally Posted by Zachariah (Post 1352895)
Changelog:
==========
1.4
- Added options to limit usage by usergroups.
- removed template edit. :D
- Works if "Log IP Addresses" set to "Display Publicly"

Thanks yes template edits suck I think but this was simple to do on the older version released.

Mudvayne 10-04-2007 04:10 PM

Zachariah, I'm on vB 3.6.7. Should I update?

Zachariah 10-04-2007 04:11 PM

Quote:

Originally Posted by Charlie98902 (Post 1352903)
Thanks yes template edits suck I think but this was simple to do on the older version released.

Well, last time I did a big update to vBulletin.

Code:

Out-of-Date Custom Templates Found!
There are currently 375 customized template(s) that need to be updated or reverted. Some sections of vBulletin may not function if you do not do this!

I am trying to make it less next time :D

Zachariah 10-04-2007 04:12 PM

Quote:

Originally Posted by Mudvayne (Post 1352909)
Zachariah, I'm on vB 3.6.7. Should I update?

This should work on all versions of 3.6.x.

Charlie98902 10-04-2007 04:17 PM

Works on 3.6.8 as well.

MissKalunji 10-04-2007 10:00 PM

woohoo u fixed my problem!

https://vborg.vbsupport.ru/showthrea...52#post1058552

m002.p 10-04-2007 10:37 PM

Great work Zach, installed :)

DiverTree 10-06-2007 08:09 PM

wow ... im not sure i wanted to know what this hack has told me ...

i have trolls, and lots of them. :rolleyes:

cool hack!!! thanks :)

KURTZ 10-07-2007 12:25 AM

superb simply (i hate the template edits) mod Zach, thx for sharing ;)

m2006 10-11-2007 03:10 PM

Thank you Zachariah

Stifmeister2 10-11-2007 06:53 PM

Great! :)

johnrizz 10-13-2007 01:08 AM

Great work,, I like this... Installed

Gigavol 10-13-2007 01:10 AM

I don't see anything. No Control panel options, no extra IP info.

Fresh vB 3.6.8 install
- copied .php file
- uploaded xml via Control Panel as instructed
nada

Do we need to change the username in the xml? What am I missing?

Thanks in advance for advice!!

Scamorz 10-13-2007 09:59 AM

Quote:

Originally Posted by Gigavol (Post 1358644)
I don't see anything. No Control panel options, no extra IP info.

Fresh vB 3.6.8 install
- copied .php file
- uploaded xml via Control Panel as instructed
nada

Do we need to change the username in the xml? What am I missing?

Thanks in advance for advice!!

I quote...i don't see anything and i have 3.6.8 version.

yoyoyoyo 10-13-2007 10:59 AM

works perfectly - thanks!

to those of you who don't know where to look for the info provided by this hack - just click on the IP icon in the postbit and you will be taken to a page that displays the IP info

Makc666 10-15-2007 03:14 PM

Quote:

Changelog:
==========
1.4
- Works if "Log IP Addresses" set to "Display publicly"
The correct phrase must be:
- Works if "Log IP Addresses" set to "Display publicly" or "Display, but require administrator or moderator"

Quote:

Changelog:
==========
1.4
- Added options to limit useage by usergroups.
This one doesn't work with Custom Usergroups.

To fix this one.

Change code:
Code:

// Is user allowed to view ips?
if (!can_moderate($threadinfo['forumid'], 'canviewips') OR !is_member_of($vbulletin->userinfo, explode(',',$vbulletin->options['ipinfo_groups'])))
{
        print_no_permission();
}

To this one:
Code:

// Is user allowed to view ips?
if ( is_member_of($vbulletin->userinfo, explode(',', $vbulletin->options[ipinfo_groups])) )
{
        // do nothing
}
else if ( !can_moderate($threadinfo['forumid'], 'canviewips') )
{
        print_no_permission();
}
else
{
        // do nothing
}

Why? Because this one is a right construction. The original one from 1.4 doesn't work with "IP Info Access".

=========================================

And in product-ipinfo.xml I advice to change.

This one (1):
Code:

<td class="tcat" width="100%"><phrase 1="$postinfo[username]">$vbphrase[xs_ip_address_for_this_post]</phrase></td>
Must be changed to this one (1):
Code:

<td class="tcat" width="100%"><phrase 1="$postinfo[username]" 2="$postinfo[userid]" 3="$postinfo[postid]">$vbphrase[xs_ip_address_for_this_post]</phrase></td>
This one (2):
Code:

<phrase name="xs_ip_address_for_this_post" date="1191513680" username="Zachariah" version="1.2"><![CDATA[{1}'s IP Address for this post]]></phrase>
Must be changed to this one (2):
Code:

<phrase name="xs_ip_address_for_this_post" date="1191513680" username="Zachariah" version="1.2"><![CDATA[<a href="member.php?u={2}">{1}</a>'s IP Address for post <a href="showthread.php?p={3}#post{3}">#{3}</a>]]></phrase>
This will make post's user name clickable and add clicable post's number on "User IP Information" page.

=========================================

This one (3):
Code:

<setting varname="ipinfo_groups" displayorder="260">
                <datatype>free</datatype>
                <defaultvalue>5,6,7</defaultvalue>
        </setting>

Must be changed to this one (3):
Code:

<setting varname="ipinfo_groups" displayorder="260">
                <datatype>free</datatype>
                <defaultvalue><![CDATA[5,6,7]]></defaultvalue>
        </setting>

=========================================

This one (4):
Code:

        <url>https://vborg.vbsupport.ru/showthread.php?t=117966</url>
Must be changed to this one (4):
Code:

        <url><![CDATA[https://vborg.vbsupport.ru/misc.php?do=producthelp&pid=ipinfo]]></url>
=========================================

And if Zachariah will add pid for this mod then:

This one (5):
Code:

        <versioncheckurl />
Must be changed to this one (5):
Code:

        <versioncheckurl><![CDATA[https://vborg.vbsupport.ru/misc.php?do=productcheck&pid=ipinfo]]></versioncheckurl>
=========================================

I will contact Zachariah for all this one to be in official release.

Code:

1.5
- Fixed limit by usergroups
- Changed the template so on "User IP Information" page you see clickable post's number (url to post)
- Changed the template so on "User IP Information" post's username is clickable now (url to user's profile)
- Some other minor changes


Stifmeister2 10-15-2007 06:42 PM

Quote:

Originally Posted by Makc666 (Post 1360806)
The correct phrase must be:
- Works if "Log IP Addresses" set to "Display publicly" or "Display, but require administrator or moderator"


This one doesn't work with Custom Usergroups.

To fix this one.

Change code:
Code:

// Is user allowed to view ips?
if (!can_moderate($threadinfo['forumid'], 'canviewips') OR !is_member_of($vbulletin->userinfo, explode(',',$vbulletin->options['ipinfo_groups'])))
{
        print_no_permission();
}

To this one:
Code:

// Is user allowed to view ips?
if ( is_member_of($vbulletin->userinfo, explode(',', $vbulletin->options[ipinfo_groups])) )
{
        // do nothing
}
else if ( !can_moderate($threadinfo['forumid'], 'canviewips') )
{
        print_no_permission();
}
else
{
        // do nothing
}

Why? Because this one is a right construction. The original one from 1.4 doesn't work with "IP Info Access".

=========================================

And in product-ipinfo.xml I advice to change.

This one (1):
Code:

<td class="tcat" width="100%"><phrase 1="$postinfo[username]">$vbphrase[xs_ip_address_for_this_post]</phrase></td>
Must be changed to this one (1):
Code:

<td class="tcat" width="100%"><phrase 1="$postinfo[username]" 2="$postinfo[userid]" 3="$postinfo[postid]">$vbphrase[xs_ip_address_for_this_post]</phrase></td>
This one (2):
Code:

<phrase name="xs_ip_address_for_this_post" date="1191513680" username="Zachariah" version="1.2"><![CDATA[{1}'s IP Address for this post]]></phrase>
Must be changed to this one (2):
Code:

<phrase name="xs_ip_address_for_this_post" date="1191513680" username="Zachariah" version="1.2"><![CDATA[<a href="member.php?u={2}">{1}</a>'s IP Address for post <a href="showthread.php?p={3}#post{3}">#{3}</a>]]></phrase>
This will make post's user name clickable and add clicable post's number on "User IP Information" page.

=========================================

This one (3):
Code:

<setting varname="ipinfo_groups" displayorder="260">
                <datatype>free</datatype>
                <defaultvalue>5,6,7</defaultvalue>
        </setting>

Must be changed to this one (3):
Code:

<setting varname="ipinfo_groups" displayorder="260">
                <datatype>free</datatype>
                <defaultvalue><![CDATA[5,6,7]]></defaultvalue>
        </setting>

=========================================

This one (4):
Code:

        <url>https://vborg.vbsupport.ru/showthread.php?t=117966</url>
Must be changed to this one (4):
Code:

        <url><![CDATA[https://vborg.vbsupport.ru/misc.php?do=producthelp&pid=ipinfo]]></url>
=========================================

And if Zachariah will add pid for this mod then:

This one (5):
Code:

        <versioncheckurl />
Must be changed to this one (5):
Code:

        <versioncheckurl><![CDATA[https://vborg.vbsupport.ru/misc.php?do=productcheck&pid=ipinfo]]></versioncheckurl>
=========================================

I will contact Zachariah for all this one to be in official release.

Code:

1.5
- Fixed limit by usergroups
- Changed the template so on "User IP Information" page you see clickable post's number (url to post)
- Changed the template so on "User IP Information" post's username is clickable now (url to user's profile)
- Some other minor changes


Wow... :o

Zachariah 10-20-2007 09:35 PM

Changelog:
==========
1.5
- Fixed limit by usergroups
- Changed the template so on "User IP Information" page you see clickable post's number (url to post)
- Changed the template so on "User IP Information" post's username is clickable now (url to user's profile)
- Some other minor changes
- Thanks to Makc666 :)

Replace PHP file and import product.

SuperTaz 10-20-2007 09:48 PM

Excellent. Thank you. :D

Stifmeister2 10-20-2007 09:58 PM

Thx dude. :)

KURTZ 10-20-2007 10:01 PM

Quote:

Originally Posted by Zachariah (Post 1364639)
Changelog:
==========
1.5
- Fixed limit by usergroups
- Changed the template so on "User IP Information" page you see clickable post's number (url to post)
- Changed the template so on "User IP Information" post's username is clickable now (url to user's profile)
- Some other minor changes
- Thanks to Makc666 :)

Replace PHP file and import product.

just updated but nothig changes ... i dont see any url ...

about UG limits i dont see anything in my ACP ...

rike-online 10-20-2007 10:04 PM

Quote:

Originally Posted by KURTZ (Post 1364651)
just updated but nothig changes ... i dont see any url ...

about UG limits i dont see anything in my ACP ...


same problem here... nothing changes...

KURTZ 10-20-2007 10:06 PM

Quote:

Originally Posted by rike-online (Post 1364652)
same problem here... nothing changes...

exactly it's the same like the previous version ...

Paul M 10-20-2007 10:30 PM

Quote:

Originally Posted by Makc666 (Post 1360806)
[This one (3):
Code:

<setting varname="ipinfo_groups" displayorder="260">
                <datatype>free</datatype>
                <defaultvalue>5,6,7</defaultvalue>
        </setting>

Must be changed to this one (3):
Code:

<setting varname="ipinfo_groups" displayorder="260">
                <datatype>free</datatype>
                <defaultvalue><![CDATA[5,6,7]]></defaultvalue>
        </setting>



For what reason ? I cannot see any reason to make such a change.

inciarco 10-20-2007 10:53 PM

The Update Has a Bug, Zachariah!! :(

When Clicking on the IP Image, a Blank Page Appears instead of the IP Information!! :(

I'm Installing Previous Version and Uploading the "ipinfo" file of the Previous Version!! Previous Version is Wirking Fine!! :p

I Hope You Can Fix That... The Updating Changes Look Good... I'm Hoping To Be Able To Use Them!! :up:

My Best Regards, Zachariah!! ;)

:)

Parabellum 10-21-2007 05:27 AM

Quote:

Originally Posted by inciarco (Post 1364682)
The Update Has a Bug, Zachariah!! :(

When Clicking on the IP Image, a Blank Page Appears instead of the IP Information!! :(

I'm Installing Previous Version and Uploading the "ipinfo" file of the Previous Version!! Previous Version is Wirking Fine!! :p

I Hope You Can Fix That... The Updating Changes Look Good... I'm Hoping To Be Able To Use Them!! :up:

My Best Regards, Zachariah!! ;)

:)


Installed 1.4 earlier today and works great. Ill wait for a response on the "bug" before doing the upgrade to 1.5 :)

djbaxter 10-21-2007 11:34 AM

:confused:

Version 1.5 works fine with no bugs fror me. vBulletin 3.6.8.

Kihon Kata 10-21-2007 01:38 PM

updated mine :)

Thanks

puertoblack2003 10-21-2007 01:39 PM

no bugs here, updated thanks

Makc666 10-21-2007 05:06 PM

Quote:

Originally Posted by KURTZ (Post 1364651)
just updated but nothig changes ... i dont see any url ...

about UG limits i dont see anything in my ACP ...

Quote:

Originally Posted by rike-online (Post 1364652)
same problem here... nothing changes...

Quote:

Originally Posted by KURTZ (Post 1364656)
exactly it's the same like the previous version ...

See this screenshot and you will understand.
Attachment 71280

If you have your forum translated to other languages you have to update language phrase xs_ip_address_for_this_post for those languages.

Quote:

Originally Posted by inciarco (Post 1364682)
The Update Has a Bug, Zachariah!! :(

When Clicking on the IP Image, a Blank Page Appears instead of the IP Information!! :(

I'm Installing Previous Version and Uploading the "ipinfo" file of the Previous Version!! Previous Version is Wirking Fine!! :p

I Hope You Can Fix That... The Updating Changes Look Good... I'm Hoping To Be Able To Use Them!! :up:

My Best Regards, Zachariah!! ;)

:)

Try to re-download the archive and to re-upload ipinfo.php file in ASCII mode.
I tested this one on 5 forums with different php's and mysql's versions.

There were no any technical changes in 1.5 version in comparison with 1.4 version.

If you still have the problems look in your web server's or php's log files for any error.

Quote:

Originally Posted by djbaxter (Post 1364972)
:confused:

Version 1.5 works fine with no bugs fror me. vBulletin 3.6.8.

Quote:

Originally Posted by Parabellum (Post 1364847)
Installed 1.4 earlier today and works great. Ill wait for a response on the "bug" before doing the upgrade to 1.5 :)

Did you try 1.5?

Quote:

Originally Posted by Paul M (Post 1364672)
For what reason ? I cannot see any reason to make such a change.

Paul M, yes, I agree with you that in that case we don't need that change. I think when I added that one I just got reinsured :rolleyes: (Maybe because it is "free" date field). But there is no any harm from that change :)


All times are GMT. The time now is 11:08 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01629 seconds
  • Memory Usage 1,862KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (29)bbcode_code_printable
  • (22)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete