Clan Adverts

www.afgserv.com

 

Find Out Which Version Of Nuke Your Using

Description: Ever wondered what version of nuke your using, well this tutorial will show you how to find out.
Version: 1.0
Added on: 30 May 2006
Author: Admin
Difficulty Level: Very Easy
Views: 303
Detailed Profile

Make a new text document on your desktop and rename it to nukever.php or whatever you like !

then open it in your preferred editor and paste

Code:
<?php
require_once("mainfile.php");
if (!isset($Version_Num))
{
  if ($result = $db->sql_query("SELECT Version_Num FROM ".$prefix."_config"))
  {
    list($Version_Num) = $db->sql_fetchrow($result);
    $db->sql_freeresult($result);
  }
  else
  {
    $Version_Num = "Unknown";
  }
}
echo "Your PHP-Nuke version is $Version_Num";
die();
?>


Upload it to your sites root and run it i.e. yoursite.com/nukever.php

it will tell you what version of nuke you are using !