Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dotnetnuke Version Determination

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?

like image 384
Caveatrob Avatar asked Dec 29 '08 19:12

Caveatrob


3 Answers

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

like image 150
Ian Robinson Avatar answered Oct 17 '22 23:10

Ian Robinson


Following SP gives current version of DNN

Exec dbo.GetDatabaseVersion

like image 23
Sachin Pakale Avatar answered Oct 17 '22 23:10

Sachin Pakale


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

like image 3
Peter Lindholm Avatar answered Oct 18 '22 00:10

Peter Lindholm