How can I see the exact version of my PHP-Nuke?

One way to check your PHP-Nuke version is to look it up directly in the PHP-Nuke database.

To do this, go to cPanel > phpMyAdmin. Then from the left bar select the database for your PHP-Nuke installation. Browse the table nuke_config and find the option Version_Num. Its value represents your current PHP-Nuke version.

The other way is to use a simple PHP script which will do the above check for you and print the result.

Create a PHP file, for example vcheck.php, inside your PHP-Nuke folder and paste the following code in it:

<?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();
?>

Then you should open this file in a browser to see the result. The path to the file should be:

yourdomainname.com/nuke/vcheck.php

You need help with an application?hostlantern is specialized in hosting and supporting more than 200 scripts. Sign up for our web hosting services and let us help you with your application, 24/7!

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Fatal error when trying to uninstall Gallery from Fantastico

Sometimes when you try to uninstall Gallery from Fantastico, you may get the following error:...

Additional phpNuke resources – modules, blocks, themes.

The official phpNuke website. he official phpNuke documentation. The official support forum...

Initial phpNuke installation and configuration.

There are two ways you can install phpNuke on your account: Manually, by downloading the...

Detailed PhpNuke requirements.

The minimal phpNuke server requirements are listed below: PHP 4.1.x or above - http://php.net...

What is PHP-Nuke?

PHP-Nuke is a powerful Open Source portal application. It can be used as a weblog or as a CMS. It...