Ip Tracking in ACP

Support for IntegraMOD 141

Moderator: Integra Moderator

Ip Tracking in ACP

PostAuthor: a_lunatic » Wed Feb 27, 2008 11:32 am

All thses are getting this error in

IP Tracking Admin: Admin Page Hits
Ip: Admin Hits
Ip: Logs
Ip: Multi Users

Error Getting IP Count.

DEBUG MODE

SQL Error : 1146 Table 'xxxxxxxxxx.phpbb_ip_tracking' doesn't exist

SELECT COUNT(*) AS total FROM phpbb_ip_tracking WHERE located LIKE '%admin%' GROUP BY time

Line : 679
File : admin_ip_tracking.php
Last edited by a_lunatic on Wed Dec 31, 1969 4:00 pm, edited 1 time in total.
User avatar
a_lunatic
Members
Members
 
Posts: 56
Likes: 0 post
Liked in: 0 post
Joined: Sun Apr 09, 2006 8:05 am
Cash on hand: 0.00

Re: Ip Tracking in ACP

PostAuthor: meijin » Wed Feb 27, 2008 11:45 am

Yeah, I get the same thing...just have not gotten around to trying address it.
Last edited by meijin on Wed Dec 31, 1969 4:00 pm, edited 1 time in total.
Michael
User avatar
meijin
Members
Members
 
Posts: 62
Likes: 0 post
Liked in: 0 post
Joined: Fri Feb 22, 2008 1:16 am
Cash on hand: 0.00

PostAuthor: Fallen » Wed Feb 27, 2008 3:51 pm

Exactly the same here with my site.
Last edited by Fallen on Wed Dec 31, 1969 4:00 pm, edited 1 time in total.
User avatar
Fallen
Members
Members
 
Posts: 39
Likes: 0 post
Liked in: 0 post
Joined: Sun Apr 09, 2006 7:54 pm
Cash on hand: 0.00

PostAuthor: tmotley » Wed Feb 27, 2008 5:47 pm

What are you doing to get these errors exactly?
Last edited by tmotley on Wed Dec 31, 1969 4:00 pm, edited 1 time in total.
User avatar
tmotley
IntegraMODerators
IntegraMODerators
 
Posts: 524
Likes: 0 post
Liked in: 0 post
Joined: Mon Mar 27, 2006 2:56 am
Cash on hand: 0.00
Location: Missouri, USA

Re: Ip Tracking in ACP

PostAuthor: Helter » Wed Feb 27, 2008 6:09 pm

see if this helps

Code: Select all
DROP TABLE IF EXISTS phpbb_ip_tracking_config;
DROP TABLE IF EXISTS phpbb_ip_tracking;
CREATE TABLE `phpbb_ip_tracking_config` ( `max` varchar(15) NOT NULL DEFAULT '' ) TYPE=MyISAM;
INSERT INTO `phpbb_ip_tracking_config` VALUES ('25000');
CREATE TABLE `phpbb_ip_tracking` ( `ip` varchar(15) NOT NULL DEFAULT '', `time` int(11) NOT NULL DEFAULT '0', `located` varchar(255) NOT NULL DEFAULT '', `username` varchar(50) NOT NULL DEFAULT '') TYPE=MyISAM;
Last edited by Helter on Wed Aug 15, 2012 1:50 pm, edited 3 times in total.
Always use Protection
Image


Please do not PM for support
User avatar
Helter
Administrator
Administrator
 
Posts: 4168
Likes: 0 post
Liked in: 0 post
Images: 0
Joined: Sat Mar 11, 2006 3:46 pm
Cash on hand: 187.60
Location: Seattle Wa
IntegraMOD version: IM 3

PostAuthor: a_lunatic » Thu Feb 28, 2008 4:56 am

Fixed it but had to do it in server control panel as on phpbbmyadmin had ctracker warning
Last edited by a_lunatic on Wed Dec 31, 1969 4:00 pm, edited 1 time in total.
User avatar
a_lunatic
Members
Members
 
Posts: 56
Likes: 0 post
Liked in: 0 post
Joined: Sun Apr 09, 2006 8:05 am
Cash on hand: 0.00

Re: Ip Tracking in ACP

PostAuthor: meijin » Thu Mar 06, 2008 6:00 am

I hate to show my newbie-ness yet again, but I have to.

What, exactly, should I be doing with that code snippet above to get the IP Tracking feature to work?

Thanks (AGAIN) for the help!
Last edited by meijin on Wed Dec 31, 1969 4:00 pm, edited 1 time in total.
Michael
User avatar
meijin
Members
Members
 
Posts: 62
Likes: 0 post
Liked in: 0 post
Joined: Fri Feb 22, 2008 1:16 am
Cash on hand: 0.00

Re: Ip Tracking in ACP

PostAuthor: Helter » Sun Mar 09, 2008 2:30 am

open your database in phpmyadmin, click the querry button and paste that code in the box that appears, click submit. That will add the ip_tracking_config table to your database
Last edited by Helter on Wed Dec 31, 1969 4:00 pm, edited 1 time in total.
Always use Protection
Image


Please do not PM for support
User avatar
Helter
Administrator
Administrator
 
Posts: 4168
Likes: 0 post
Liked in: 0 post
Images: 0
Joined: Sat Mar 11, 2006 3:46 pm
Cash on hand: 187.60
Location: Seattle Wa
IntegraMOD version: IM 3

Re: Ip Tracking in ACP

PostAuthor: Neva » Fri Apr 25, 2008 4:40 pm

I had the same error and ran the fix, I no longer have the error but Ip Tracking is not tracking anything.

Any Ideas?
Last edited by Neva on Wed Dec 31, 1969 4:00 pm, edited 1 time in total.
Moo
User avatar
Neva
Members
Members
 
Posts: 44
Likes: 0 post
Liked in: 0 post
Joined: Mon Mar 27, 2006 7:19 pm
Cash on hand: 0.00

Re: Ip Tracking in ACP

PostAuthor: melamkish » Sun Apr 27, 2008 4:54 pm

Same problem here. Updated the db, fixed the error, but no tracking.

Started to dig into the code and in the admin_ip_logger.php file I found the following line

include($phpbb_root_path . "includes/functions_ip_logger.php");


If I'm not mistaken, this line calls the functions for the logger. I have searched all over the software and have not found this file. Even downloaded the earlier versions of IM as well as looked at the core phpbb2 software.

Nowhere.

It would appear that this mod is incomplete. <img>
Last edited by melamkish on Wed Dec 31, 1969 4:00 pm, edited 1 time in total.
Too many projects, too little time.
User avatar
melamkish
Newbie
Newbie
 
Posts: 28
Likes: 0 post
Liked in: 0 post
Joined: Fri Jul 21, 2006 3:46 pm
Cash on hand: 0.00

Re: Ip Tracking in ACP

PostAuthor: star » Wed May 07, 2008 5:19 am

"melamkish";p="32885" wrote:Same problem here. Updated the db, fixed the error, but no tracking.

Started to dig into the code and in the admin_ip_logger.php file I found the following line

include($phpbb_root_path . "includes/functions_ip_logger.php");


If I'm not mistaken, this line calls the functions for the logger. I have searched all over the software and have not found this file. Even downloaded the earlier versions of IM as well as looked at the core phpbb2 software.

Nowhere.

It would appear that this mod is incomplete. <img>



whats missing are the sql commands and 2 file edits
edit one
Code: Select all
 OPEN Root/includes/page_header.php
FIND
 ?>
 BEFORE ADD
 include_once($phpbb_root_path . 'includes/functions_ip_track.'.$phpEx);



edit 2
Code: Select all
 OPEN Root/admin/index.php
FIND
include_once($phpbb_root_path . 'includes/lite.'.$phpEx);
ADD AFTER
include_once($phpbb_root_path . 'includes/functions_ip_track.'.$phpEx);



and then run the following 2 sql commands

Code: Select all
CREATE TABLE `phpbb_ip_tracking` ( `ip` varchar(15) NOT NULL default '', `time` int(11) NOT NULL default '0', `located` varchar(255) NOT NULL default '', `referer` varchar(255) NOT NULL default '', `username` varchar(50) NOT NULL default '') ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `phpbb_ip_tracking_config` ( `max` int(15) NOT NULL default '0') ENGINE=MyISAM DEFAULT CHARSET=utf8;
Last edited by star on Wed Dec 31, 1969 4:00 pm, edited 1 time in total.

star
Newbie
Newbie
 
Posts: 17
Likes: 0 post
Liked in: 0 post
Joined: Sat Jun 17, 2006 11:50 am
Cash on hand: 0.00

Re: Ip Tracking in ACP

PostAuthor: Neva » Wed May 07, 2008 3:30 pm

Thanks for the suggestion star but I still don't have any IPs being tracked in Ip Tracking. <img>
Last edited by Neva on Wed Dec 31, 1969 4:00 pm, edited 1 time in total.
Moo
User avatar
Neva
Members
Members
 
Posts: 44
Likes: 0 post
Liked in: 0 post
Joined: Mon Mar 27, 2006 7:19 pm
Cash on hand: 0.00

Re: Ip Tracking in ACP

PostAuthor: MWE_001 » Tue Jun 17, 2008 2:41 pm

my girlfriends website has the same problem as well as another that Im helping work on as well as 2 other installs I did. Seems we need to mark this one as BUG and get it fixed in the new version eh?
Last edited by MWE_001 on Wed Dec 31, 1969 4:00 pm, edited 1 time in total.
"Don't gain the world and lose your soul, wisdom is better than silver and gold" -Bob Marley

If you build it, I can break it! ~ Whispered in the tone of the movie Field of Dreams.
User avatar
MWE_001
Sr Integra Member
Sr Integra Member
 
Posts: 1265
Likes: 0 post
Liked in: 0 post
Images: 12
Joined: Fri Apr 21, 2006 6:59 pm
Cash on hand: 0.00
Location: Illinois

Re: Ip Tracking in ACP

PostAuthor: .QUACK.Major.Pain » Mon Jun 30, 2008 1:41 pm

After reading, still not sure where you getting this error.
Last edited by .QUACK.Major.Pain on Wed Dec 31, 1969 4:00 pm, edited 1 time in total.

.QUACK.Major.Pain
Sr Integra Member
Sr Integra Member
 
Posts: 986
Likes: 0 post
Liked in: 0 post
Joined: Sat Jan 27, 2007 10:15 am
Cash on hand: 0.00

Re: Ip Tracking in ACP

PostAuthor: MWE_001 » Tue Jul 01, 2008 11:29 am

The error is there when you click on IP Tracking in the ACP. My girfriends website had it as well.

I did run the sql on my girlfriends website and it did absolutely nothing for her BUT to get rid of the error. Everything is there but not a 1 ip gets logged.
Last edited by MWE_001 on Wed Dec 31, 1969 4:00 pm, edited 1 time in total.
"Don't gain the world and lose your soul, wisdom is better than silver and gold" -Bob Marley

If you build it, I can break it! ~ Whispered in the tone of the movie Field of Dreams.
User avatar
MWE_001
Sr Integra Member
Sr Integra Member
 
Posts: 1265
Likes: 0 post
Liked in: 0 post
Images: 12
Joined: Fri Apr 21, 2006 6:59 pm
Cash on hand: 0.00
Location: Illinois

Next

Return to IntegraMOD 141

Who is online

Registered users: Bing [Bot], Majestic-12 [Bot], Vendethiel

cron