>>
Site Map
>>
Forums
>>
Security Issues
Forum module - topics in forum:
Security Issues - Get help in securing your PHP-NUKE Installation.
Nuke Sentinel Problem
I have Nuke Sentinel installed on my website, but i cannot get IP Tracker or for that matter any other kind of tracker to work.
As far as i am aware the installation went fine, but when i go to turn on IP Tracking from the admin menu and click submit, it doesnt come into effect and when i go back to look, the IP Tracking is still turned off.
Does anyone know how to fix this problem??
the site is
http://bf2.spm-team.com.
thx.
What version of NukeSentinel do you have running on your site ? If you turn on IP Tracking set the number of days you want the ip tracked, then below that set how many ip you want per page and the order in the IP Tracking section then save you should have ip's that it is trapping. To view the ip's being trapped click
Tracked IP Menu then
Display Tracked IP"s to view by ip or
Display Tracked User's to display by UserName. If all of the above settings are correct then you have something wrong with your install of NukeSentinel. Please answer the above questions also please let us know what version of php-nuke you are running on your site and if your site has any modifications or has been patched.
Hi,
The version of nuke i am running is PNC 2.1 (clan mod) i think its actually 7.6 Platinum.
Im not sure of the Sentinel version, but it was the latest version from approx 2 months ago.
I have tried all the things u mentioned about turning the tracking on ect, but it all just reverts back to OFF.
The only mods that have been put onto the site are vWars,FCK Editor and just a few small blocks.
If there is something wrong how do i go about rectifying the problem??? can i just overwite the existing version??
Please help as the site site has only been back up a few months now from a previous attack.
im pretty sure the Sentinel was downloaded through this site, version 2.4.1
I would try to update to the newest version which is 2.4.2. We dont have that version on our site but you can find it
here that should take care of your problem. If not post back on here and we will see what we can find out for you.
I uploaded the new 2.4.2 and went through the install but...
the version of Nuke i have is Nuke 7.6 Platinum (PNC 2.1) which is what it says thats best used for Nuke Sentinel 2.4.2, the problem is that when doing the mods to the files ... mainfile.php and index.php (from the Your Account Module) there is nothing like what it states in the readme.
I suspect that the PNC Mod ( Nuke Clan ) has a large amount of edits in those files and if i install the Sentinel without the modded files, it screws up the website stating that there is an error in sql_layer.php
Not sure what i can do to fix this??
Maybe if you could show me where to put these edits or exactly what other part i should edit to get this working.
from here on in i have no clue whatsoever, one thing i did notice is that the IP Tracking was working even though the site had errors all over it.
you can also contact me on
eagle75au@hotmail.com
Thanks
This question would best be asked on a site that supports nuke platinum.
I am having this same problem with nCo Nuke. I did upgrade lastnight like you said to version 2.4.2 ans still the users are not being tracked. Normally for a user, in the Display Tracked IP's, there will be a user icon for each user but there is not. Also the Display Tracked Users is only Anonymous. I did reupload all nuke sentinel files for nCo 7.6 then patched all of them with the .31 patch and then upgraded to 2.4.2.
When I go to PhpMyadmin, in the nuke_nsnst_tracked_ips, all user_id's are set to 1 and the usernames are blank. When I manually change the user_id to a known user and add their username in the database, the tracked user works fine.
BTW, I am using Approve Membership.
I found what the issue is.
In mainfile.php, I took
| Code: : |
//Added For NukeSentinel 2.2.0pl4
if (defined('FORUM_ADMIN')) {
@include_once("../../../includes/nukesentinel.php");
} elseif (defined('INSIDE_MOD')) {
@include_once("../../includes/nukesentinel.php");
} else {
@include_once("includes/nukesentinel.php");
}
|
and moved it from under
to
| Code: : |
if (!ini_get('register_globals')) {
@import_request_variables("GPC", "");
} |
too look like
| Code: : |
if (!ini_get('register_globals')) {
@import_request_variables("GPC", "");
}
//Added For NukeSentinel 2.2.0pl4
if (defined('FORUM_ADMIN')) {
@include_once("../../../includes/nukesentinel.php");
} elseif (defined('INSIDE_MOD')) {
@include_once("../../includes/nukesentinel.php");
} else {
@include_once("includes/nukesentinel.php");
}
|
And it works just fine.