18

I've been tasked with fixing a dotnetnuke installation that was simply copied from one server to another and the first thing I need to do is figure out which version it is.

What's the easiest way?

Drew Noakes
  • 300,895
  • 165
  • 679
  • 742
Caveatrob
  • 12,667
  • 32
  • 107
  • 187

5 Answers5

22

The easiest way is listed first, thought alternatives are provided as well.

Checking the version with "Super User" access

If the site in question is up and running and you have a super-user login (typically the "host" user), the version information is displayed at the top of the "Host Settings" page under the "Host" menu.

Checking the version from the database

If the site isn't running properly, or you don't have a login, and you can access the database, you can query the "Version" table to find out the version.

The following query will return the proper version number, assuming an objectQualifier was not used when DotNetNuke was installed. If it was, you'll want to look up the table name, which may be dnn_Version.

select top 1 * from version order by createddate desc

Checking the version from the file system

Alternatively, you can find the DotNetNuke.dll in the website's bin directory and inspect its version.

Right click -> Properties -> Details -> File Version

Ian Robinson
  • 16,892
  • 8
  • 47
  • 61
3

Following SP gives current version of DNN

Exec dbo.GetDatabaseVersion

Sachin Pakale
  • 292
  • 2
  • 4
  • 19
3

Log in as an admin and go to the "Host Settings" page.

Peter Lindholm
  • 2,420
  • 5
  • 23
  • 27
0

Note: This method requires Internet access. Please contact your Microsoft Windows Server Administrator if there are any problems with your internet connection or computer in general for that matter (remember to address them as the divine entities they are; Throwing myself to their feet and begging for help has always worked for me... you've been warned).

Login to the DNN site, as you would to edit a site, and look for a small blue "update" button above the DNN logo and click it. This should take you to a DNN site displaying your version information.

enter image description here

samus
  • 6,102
  • 6
  • 31
  • 69
0

Easiest way is to Login to your DNN site with host user then goto Host => Host Settings

Their you can fined DNN version and lots of things about your current DNN site state.

Nayanajith
  • 605
  • 10
  • 15