>>  Site Map >>  Forums >>  Tips and Tricks

Forum module - topics in forum:



Tips and Tricks - Get the most from your PHP-NUKE website. Post things you have discovered and would like to share with others.



Nuke Sentinel: IP Tracking

Should you have issues with IP Tracking not working in sentinel try the following:

Find:
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:
Code: :
<?php

to just below:
Code: :
if (!ini_get('register_globals')) {
  @import_request_variables("GPC", "");
}

So it looks like the following:
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");
}


Credit Bob Marion




Attention! You are currently viewing sitemap page!
We strongly suggest to look at original content

Search from web

Valid HTML 4.01 Valid CSS