Hi,
I have an old version of DNN installed on Windows server 2012 and want to update to a newer version, how do I know what version I am currently running and how to upgrade to the latest version running on Server 2016.
Oh, and if you don't yet have access to that, you can check the database if you have access to that. Just look at the largest version number in the <code>Versions</code> table, or look at the version of the <code>DotNetNuke.dll</code> file by inspecting its properties.
If your version is quite old you may not have a Persona Bar, but as a host (Superuser) you have an SQL Console. There you can enter the following statement to retrieve the installed version:
<code>SELECT TOP 1<br /> Major, Minor, Build<br /> FROM<br /> {databaseOwner}{objectQualifier}Version<br /> ORDER BY<br /> CreatedDate DESC</code>
Happy DNNing! Michael
These Forums are for the discussion of the open source CMS DNN platform and ecosystem.
For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:
Awesome! Simply post in the forums using the link below and we'll get you started.