Posted on 03/09/2013 16:55:25
The 'Frontpage' functionality was been rolled into the standard code base in 8.3. Therefore, the module was removed from the database. This means that when you roll back from an 8.3 version to an earlier version, the module is no longer installed and the functionality goes away.
There are two ways to solve this issue:
1) Upgrade back to 8.3.
2) Insert the module record back into the Modules table using this SQL Query:
"INSERT INTO [Module]
([ModuleSystemName], [ModuleName], [ModuleAccess], [ModuleStandard], [ModuleParagraph],[ModuleIsBeta])
VALUES
('Frontpage', 'Frontpage', blnTrue, blnTrue, blnFalse, blnFalse)"
Option 2 requires you to have access to the database, or use the SQL Firehose in Management Center.
Hope this helps :)
- Jeppe