On a customer's website, I'm running DNN 4.3.7, and experiencing the following error on all XMOD 4 modules when logging in as a user who is assigned a role that I created:
|
Module Load Warning
One or more of the modules on this page did not load. This may be temporary. Please refresh the page (click F5 in most browsers). If the problem persists, please let the Site Administrator know. |
Super Users, subscribers, and the public can see the page fine, but when logged in as one of the roles that I added to the site, I receive this error.
I did some poking around in the DB and found that for the users that this isn't working for, they are assigned a PortalID of 0 whereas the Super Users (and presumably the Public when visiting the site) have a PortalID of Null.
Finally, when running the following SQL, I am returned 5 records with a TabID of Null, if that matters at all:
SELECT m.ModuleID, m.ModuleDefID, m.ModuleTitle, tm.TabID
FROM Modules AS m LEFT OUTER JOIN
TabModules AS tm ON m.ModuleID = tm.ModuleID
WHERE (m.ModuleTitle = 'xmod')
ORDER BY m.ModuleID
If anyone has any ideas about what might be going on, I'd really appreciate it.... The site was supposed to launch this past Monday and my customer is getting really impatient (I don't blame them).
If anyone wants DB info or access to log in to the site to see what's going on, I'd be glad to email them personally.
Thank you in advance.