Small width layout Medium width layout Maximum width layout Small text Medium text Large text
     Search
Downloads Downloads Directory Directory Forums Forums Forge Forge Blogs Blogs        Marketplace Marketplace Careers Program Careers
Community › Forums Register  |  

Maximum ASP
  Ads  
 


  Sponsors  

Meet Our Sponsors

Webhost4life, specialists in DNN hosting
Mad Development is a full service interactive agency focusing on the merge of design, technology, e-commerce, and affiliate marketing by providing total website solutions.
SteadyRain
DataSprings - Great Ideas. Always Flowing.
R2integrated - formerly bi4ce
Jango Studios - Skins, Modules and Hosting for DotNetNuke
 


DotNetNuke Forums
 
  Forum  DotNetNuke® Pro...  Installer Utili...  Incomplete 3.3.5 upgrade package
Previous Previous
 
Next Next
New Post 11/2/2006 12:36 PM
User is offline Chris Chubb
14 posts
10th Ranked


Incomplete 3.3.5 upgrade package 
I recently tried to do a 3.0.2 to 3.3.5 upgrade. I used the 3.3.5 Upgrade zip file. When I unzipped it into my installation directory and hit the site, the upgrade indicated that most of the install went smoothly, except that at the 3.3.0 step there was an error generated. I didn't write down where the error log file was written, and am trying to find it, but it indicated that the complete process was a success.

Upon attempting to access my site, I couldn't even get a single page becuase multiple errors were thrown.

So, I downladed the complete Install vresion of 3.3.5 and copied that into my installation direcotry, did the web.config updates, and hit the site again. It loaded fine and looks like everything is working fine. I can log in, all the content is there, etc, but for one exception: I can't go to the Admin / Users and click the "All" button. I get the following error in the log:

ModuleId: 354
ModuleDefId: 15
FriendlyName: User Accounts
ModuleControlSource: Admin/Users/Users.ascx
AssemblyVersion: 03.03.05
PortalID: 0
PortalName: Vision 2015 Delaware
UserID: 3
UserName: vision21
ActiveTabID: 42
ActiveTabName: User Accounts
RawURL: /Admin/UserAccounts/tabid/42/filter/All/currentpage/1/Default.aspx
AbsoluteURL: /Default.aspx
AbsoluteURLReferrer: http://www.vision2015delaware.org/Admin/UserAccounts/tabid/42/filter/A/currentpage/1/Default.aspx
UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.7) Gecko/20060909 Firefox/1.5.0.7
DefaultDataProvider: DotNetNuke.Data.SqlDataProvider, DotNetNuke.SqlDataProvider
ExceptionGUID: 81714c0a-8be2-4c44-bd66-35cfe17f76ce
InnerException: Object reference not set to an instance of an object.
FileName:
FileLineNumber: 0
FileColumnNumber: 0
Method: DotNetNuke.UI.WebControls.TextColumnTemplate.GetValue
StackTrace:
Message: DotNetNuke.Services.Exceptions.ModuleLoadException: Object reference not set to an instance of an object. ---> System.NullReferenceException: Object reference not set to an instance of an object. at DotNetNuke.UI.WebControls.TextColumnTemplate.GetValue(DataGridItem container) at DotNetNuke.UI.WebControls.TextColumnTemplate.Item_DataBinding(Object sender, EventArgs e) at System.Web.UI.Control.OnDataBinding(EventArgs e) at System.Web.UI.Control.DataBind() at System.Web.UI.Control.DataBind() at System.Web.UI.Control.DataBind() at System.Web.UI.WebControls.DataGrid.CreateItem(Int32 itemIndex, Int32 dataSourceIndex, ListItemType itemType, Boolean dataBind, Object dataItem, DataGridColumn[] columns, TableRowCollection rows, PagedDataSource pagedDataSource) at System.Web.UI.WebControls.DataGrid.CreateControlHierarchy(Boolean useDataSource) at System.Web.UI.WebControls.BaseDataList.OnDataBinding(EventArgs e) at System.Web.UI.WebControls.BaseDataList.DataBind() at DotNetNuke.Modules.Admin.Users.UserAccounts.BindData(String SearchText, String SearchField) at DotNetNuke.Modules.Admin.Users.UserAccounts.Page_Load(Object sender, EventArgs e) --- End of inner exception stack trace ---
Source:
Server Name: SERV01

Any suggestions?

 
New Post 11/2/2006 1:32 PM
User is offline Sebastian Leupold
15220 posts
www.deutschnetnuke.de
1st Ranked












Re: Incomplete 3.3.5 upgrade package 
check for error logs in folder /providers/dataproviders/sqldataprovider. It looks like the conversion of the user accounts did not went smoothly due to orphaned user info or incomplete profiles. check your database for users missing in either aspnet_users or users table.
Sebastian Leupold

DeutschNetNuke dnnWerk - The DotNetNuke Experts German DotNetNuke User-Group

DotNetNuke Project UserDefinedTable
DotNetNuke Project Release Tracker
 
New Post 11/2/2006 2:27 PM
User is offline Chris Chubb
14 posts
10th Ranked


Re: Incomplete 3.3.5 upgrade package 
 leupold wrote
check for error logs in folder /providers/dataproviders/sqldataprovider. It looks like the conversion of the user accounts did not went smoothly due to orphaned user info or incomplete profiles. check your database for users missing in either aspnet_users or users table.


There are a few logs in the sqldataprovider directory, but they are all 2 bytes each, and written back in March, when I did the original install.

I have gone over the 03.*.*.SqlDataProvider files to make sure that all of the changes made it into the database. They all seem to have, the Stored Procedure changes and the like are all reflected in SQL.

I have been looking over the code from a development version of the code that I downloaded, and the place that I get lost is in the file: (Source Code 3.5.5)

/Admin/Users/Users.ascx.vb : 246

 
            ElseIf Filter = Localization.GetString("All") Then
                Users = UserController.GetUsers(UsersPortalId, False, CurrentPage - 1, PageSize, TotalRecords)


Where is the definition of UserController.GetUsers() ?



 
New Post 11/2/2006 3:03 PM
User is offline Sebastian Leupold
15220 posts
www.deutschnetnuke.de
1st Ranked












Re: Incomplete 3.3.5 upgrade package 
in sqldataprovider. it usually calls directly sproc GetUsers, try to call it using the same parameter from SQL management studio
Sebastian Leupold

DeutschNetNuke dnnWerk - The DotNetNuke Experts German DotNetNuke User-Group

DotNetNuke Project UserDefinedTable
DotNetNuke Project Release Tracker
 
New Post 11/3/2006 9:27 AM
User is offline Chris Chubb
14 posts
10th Ranked


Re: Incomplete 3.3.5 upgrade package 
Well, after 4 or 5 hours of banging my head against the wall and picking the code apart, it turned out to be a bad user account. Some user account didn't have a first and last name or a Display Name, and that was messing up the binding to the grid for some reason. I fixed them through the SQL tool and now I can get into the All Users and edit that user and the like.

I still don't see Online Users, and the OnlineUsers table is always empty, but I can probably live with that.

Thanks anyway.

 
Previous Previous
 
Next Next
  Forum  DotNetNuke® Pro...  Installer Utili...  Incomplete 3.3.5 upgrade package
 


Forum Policy

These Discussion Forums are dedicated to the discussion of the DotNetNuke Web Application Framework.

For the benefit of the community and to protect the integrity of the project, please observe the following posting guidelines:

1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DotNetNuke.
2. Discussion or promotion of DotNetNuke product releases under a different brand name are strictly prohibited.
3. No Flaming or Trolling.
4. No Profanity, Racism, or Prejudice.
5. Site Moderators have the final word on approving/removing a thread or post or comment.
6. English language posting only, please.

 


DotNetNuke Modules, Skins, Training and Consulting
If you want DotNetNuke done right then look no further. Developed Solutions provides module development, skin design, user and developer training and consulting. Based in Adelaide, Australia, we offer our services worldwide.
www.developedsolutions.com.au
Venexus, Inc.
Need custom a custom DotNetNuke module? From module planning to deployment, including training and support, Venexus developers deliver end-to-end web solutions on time and on budget.
www.venexus.com
Bring2mind
Document Centric DNN Module Solutions
www.bring2mind.net

DotNetNuke Corporation   Terms Of Use  Privacy Statement
DotNetNuke®, DNN®, and the DotNetNuke logo are trademarks of DotNetNuke Corporation
Hosted by MaximumASP