Here's the issue: I have a DNN 2.1.2 solution that works on the XPPro development system, but when deployed to a 2000 or 2003 server only displays the first page regardless of navigation, unless logged in as host, then the host menu works. The menus and tabs display, but any selection of a menu or tab only displays the opening page / tab (again unless is the selection of a host menu item). Any suggestions/hints would be appreciated. I'd like to eventually see the core updated for this functionallity.
What works:
On the Workstation, from the Workstation: The solution and the unaltered version of DNN 2.1.2
On the Server, from the Workstation: The unaltered version of DNN 2.1.2
Here's what I've tried:
Resetting the cache in the host setting tab.
Complete rebuild/copy of the solution (BTW: There are a few DLLs not in BIN, exceptionmanagement etc.)
Here's what I did:
I altered the core modules/db of DNN 2.1.5 to implement Logon Retries, specifically these files:
ManageUsers.ascx, ManageUsers.ascx.resx, ManageUsers.vb (added a column to display LogonRetries)
Register.ascx, Register.ascx.resx, Register.vb (added validators for complex passwords)
Users.ascx, Users.ascx.resx, Users.vb (added a control to lock and unlock the account, account locking determined by Portal.MaxRetries vs LogonRetries)
PortalsDB.vb (changed code to get/set MaxRetries)
SiteSettings.ascx, SiteSettings.ascx.resx, SiteSettings.vb (added MaxRetries)
Signin.ascx.vb (added a check of Portal.MaxRetries vs LogonRetries)
Again the changes work fine on the development system.