Hi all,
I am working in DNN 4.7. I develop on my PC. It compiles and runs fine with no errors. When I move to the QA Server and try to run the site… on the initial compile when I first go to pull up the site, I get errors such objects not defined, etc. etc. So I had to go into the code and change it to explicitly call objects. For example,
In the default.aspx page I had to change...
Dim objCSSCache As Hashtable = CType(DataCache.GetCache("CSS"), Hashtable)
to
Dim objCSSCache As Hashtable = CType(DotNetNuke.Common.Utilities.DataCache.GetCache("CSS"), Hashtable)
in order to make the error go away I did similar changes on several lines and now I am getting "Object Reference not set to an instance of an object" but with no page or line number to look at and debug. My dev box is windows XP Pro. The QA Server is Windows Server 2003 R2.
My question is it possible that some setting on the QA Server is causing this error? I don't think I should have to change any of the original DNN code as it was release quality. So I am thinking it has to be something about the environment. The app runs fine on all our machines except the QA Server. Our dev team did not configure the QA Server, corporate IT did and it is appears to be on lockdown.
As always, thanks for any hints or advice,
Chris