Run this query against the database and take a look and see what you're database says the version is.
SELECT *
FROM CMS_SettingsKey
WHERE KeyName = 'CMSDataVersion' OR
KeyName = 'CMSDBVersion' OR
KeyName = 'CMSHotfixVersion'
Secondly, you can check the version of your Kentico DLLs simply by going to the /Bin
directory, right clicking on the CMS.CMSHelpers.dll
and looking at the build version on the Details tab. Check to see the major version is at least the same as the major versions in the results of the query. My guess is they are not.
If it's the same, check the hotfix version. You can check in the file system to get this info to compare with the query. You can find the hotfix in /App_Data/Install/hotfix.txt
.
There are a few things that could have happened:
- Wrong files were uploaded to Azure
- Your site is connecting to the wrong database
- Your site's dlls were not copied correctly or at all
These are just a few things I can think of off the top of my head that might have happened. Check what I've stated above and report back if you will.
Brenden