Page 1 of 2 12 LastLast
Results 1 to 10 of 12
  1. #1
    Join Date
    Aug 2009
    Location
    North Idaho, USA
    Posts
    2,008
    Plugin Contributions
    1

    Default Alternative for IP lookup in Admin using Domaintools.com

    Is there an alternative/replacement for the built-in IP lookup within Admin that will maintain the user-friendly functionality?

    It appears that domaintools.com has changed their policy and banning any lookup in excess of 10 per 24 hour period unless you have the $1000/year account.

    I've never been redirected to a "Banned" screen for performing too many lookups.
    Rick
    RixStix (dot) com
    aka: ChainWeavers (dot) com

  2. #2
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Alternative for IP lookup in Admin using Domaintools.com

    I've found that as long as I'm logged in with a free account they rarely tell me I've done too many lookups.
    But if my login times out or I'm in a different browser (and not logged in), it'll certainly stop me until i at least do the captcha.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  3. #3
    Join Date
    Aug 2009
    Location
    North Idaho, USA
    Posts
    2,008
    Plugin Contributions
    1

    Default Re: Alternative for IP lookup in Admin using Domaintools.com

    Your observation was the same as mine until the past day or two.

    Logged into the free account and get cutoff at 10 lookups (might have been 12), then redirected to a "Banned" page due to exceeding the lookup limit.
    Browser doesn't matter, so it must be using my static IP address for counting.

    I did find a screen that indicated their ToS were changing, effective soon. (can't find the exact date)
    Rick
    RixStix (dot) com
    aka: ChainWeavers (dot) com

  4. #4
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,691
    Plugin Contributions
    9

    Default Re: Alternative for IP lookup in Admin using Domaintools.com

    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  5. #5
    Join Date
    Aug 2009
    Location
    North Idaho, USA
    Posts
    2,008
    Plugin Contributions
    1

    Default Re: Alternative for IP lookup in Admin using Domaintools.com

    TNX for that. Now to see if editing whos_online.php is within my capabilities to generate the proper URL from within ZCadmin.

    http://whois.domaintools.com/130.226.70.183

    vs

    https://www.iplocation.net/?query=64.14.232.114
    Rick
    RixStix (dot) com
    aka: ChainWeavers (dot) com

  6. #6
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,691
    Plugin Contributions
    9

    Default Re: Alternative for IP lookup in Admin using Domaintools.com

    try changing as such:
    Code:
    //Old
                    <td class="dataTableContentWhois" align="left" valign="top"><a href="http://whois.domaintools.com/<?php echo $whos_online->fields['ip_address']; ?>" target="_blank"><?php echo '<u>' . $whos_online->fields['ip_address'] . '</u>'; ?></a></td>
    //new
                    <td class="dataTableContentWhois" align="left" valign="top"><a href="https://www.iplocation.net/?query=<?php echo $whos_online->fields['ip_address']; ?>" target="_blank"><?php echo '<u>' . $whos_online->fields['ip_address'] . '</u>'; ?></a></td>
    good luck!
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  7. #7
    Join Date
    Aug 2009
    Location
    North Idaho, USA
    Posts
    2,008
    Plugin Contributions
    1

    Default Re: Alternative for IP lookup in Admin using Domaintools.com

    Thanks. That seems to work without a hiccup.

    For anyone else who might also use the IPblocker by lat9, don't forget to insert the IPblocker code into the line.

    Code:
    <td class="dataTableContentWhois" align="left" valign="top"><a href="https://www.iplocation.net/?query=<?php echo $whos_online->fields['ip_address']; ?>" target="_blank"><?php echo '<u>' . $whos_online->fields['ip_address'] . '</u>' . $ip_blocker_link; ?></a></td>
    Rick
    RixStix (dot) com
    aka: ChainWeavers (dot) com

  8. #8
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Alternative for IP lookup in Admin using Domaintools.com

    There's also the service used in v155:
    http://www.dnsstuff.com/tools#whois
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  9. #9
    Join Date
    Aug 2009
    Location
    North Idaho, USA
    Posts
    2,008
    Plugin Contributions
    1

    Default Re: Alternative for IP lookup in Admin using Domaintools.com

    Thanks.

    I'm just not ready to think about v155. From a non-coder viewpoint, there just seems to be more significant changes and issues being ironed out on a pretty regular basis making for more answer seaching to attempt the upgrade process/implemention.
    Rick
    RixStix (dot) com
    aka: ChainWeavers (dot) com

  10. #10
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Alternative for IP lookup in Admin using Domaintools.com

    Quote Originally Posted by RixStix View Post
    Thanks.

    I'm just not ready to think about v155. From a non-coder viewpoint, there just seems to be more significant changes and issues being ironed out on a pretty regular basis making for more answer seaching to attempt the upgrade process/implemention.
    I'm not sure I understand which issues you're referring to.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Database lookup, cross reference lookup, exist?
    By chowardart in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 11 Aug 2014, 07:05 PM
  2. admin login and install probs using hostess.com.au
    By silkvixen in forum Installing on a Windows Server
    Replies: 5
    Last Post: 11 Dec 2008, 12:55 AM
  3. Using Godaddy.com as host for Zen Cart
    By nanosafeguard in forum Installing on a Linux/Unix Server
    Replies: 3
    Last Post: 25 Apr 2007, 05:31 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR