Error: ArgumentNullException After a Move or an Upgrade
Symptom
Error:
System.ArgumentNullException: Collection cannot be null.
Possible Cause
The database user does not have owner rights for the database.
Solution
- In the Microsoft SQL Server Management Studio, log into your database server.
- Go to Security > Logins.
- Right-click the database associated with your DNN installation, and choose Properties.
- In the User Mapping section, set the role for the DNN database user as db_owner.
Possible Cause
The IIS bindings do not match the correct portal alias.
Solution
Correct the site alias in the IIS Manager.
- Go to IIS Manager and select the site.
- On the right panel, in the Actions section, go to Bindings.
- Add a new binding.
- Copy the correct site alias into the new binding.
Correct the site alias in the SQL database.
In the Microsoft SQL Server Management Studio, log in to your database server.
Create a new query for the DNN database.
Run the following:
SELECT * FROM PortalAlias
If the result shows an incorrect site alias, replace it.
Run the following SQL script:
UPDATE PortalAlias SET HTTPAlias = 'newdomain.dnndev.me' WHERE HTTPAlias = 'olddomain.dnndev.me'
If the result does not show the site alias, insert it.
Run the following SQL script:
INSERT INTO PortalAlias (PortalID, HTTPAlias, CreatedByUserID, CreatedOnDate, LastModifiedByUserID, LastModifiedOnDate, BrowserType, IsPrimary) VALUES (0,'newdomain.dnndev.me',-1,GETDATE(),-1,GETDATE(),'Normal',0)
Note
When using external domains, you might need to add an entry to %SystemRoot%\System32\drivers\etc\hosts in order to point the browser to the correct domain.
Possible Cause
Incorrect connectionString
entry in the web.config file.
Solution
- Go to the web.config file on the root folder of the installation.
- Revise the entries for the connection string, specifically
Server Name
,User
, andPassword
.
Possible Cause
The Application Pool Identity account does not have modify rights for the DNN Installation folder.
Solution
- Using Windows Explorer, go to your site folder and right-click on the DNN installation folder.
- Choose Properties, and go to the Security tab.
- Click/Tap Edit….
- Click/Tap Add….
- Select the correct location for the user.
- Set the object name to IIS AppPool\
, where is the Application Pool Identity account name. - Click/Tap Check Names.
- Click/Tap OK, then Apply.