Mike,
Thanks for the access you sent for your site. Here is how you can create your own 404 error page redirect in case you are upgrading to DNN 7.1 and want to activate the 404 redirect page:
1 - As a precaution I recommend to do a backup before attempting this;
2 - Create a 404 error page just like you create a regular page on DNN;
3 - Right after creating the page, you have to get the "TabID" for that new page. This is the number that identifies this new page in the database. To do that you should go to Host/SQL and run the following SQL query:
select * from tabs order by tabid desc
4 - The first line will show what is the TabdID for the new 404 error page. Copy that TabID number;
5 - Still on Host/SQL, execute the following query:
INSERT INTO PortalSettings(
PortalID,
SettingName,
SettingValue,
CreatedByUserID,
CreatedOnDate,
LastModifiedByUserID,
LastModifiedOnDate,
CultureCode)
values
(
[SITEID],
'AUM_ErrorPage404',
'[TABID]',
1,
GetDate(),
1,
GetDate(),
'en-us')
- Replace [SITEID] by the correct PortalID number. If you have just one site under your DNN instance, this will usually be '0' ZERO. If you have multiple sites under the DNN instance, then go to Host/Site Management and find the correct Site ID for your site;
- Replace [TABID] by the ID you got on step #3 above;
5 - Once you execute this, I recommend to go to Tools/Clear Cache, and now you can give it a try on a page that doesn't exist so you can see if the new 404 error page is working;
That should do it.
Cheers,
Aderson