Create New Error On Upgraded Site Collection
-
Wednesday, October 05, 2011 10:20 AM
I have upgraded a Site Collection using the database attach method. It completed and the site works ... except for creating new document libraries or lists.
When I try to create a new container it shows an error as below. How can I fix this as users cannot create anything new through the UI (can do it in powershell) in this site collection with the items being displayed.
"error_pagetitle
An error occurred while getting the items. List does not exist.
The page you selected contains a list that does not exists. It may have been deleted by another user.
ErrorPageRequestGuid {ac1563be-ad6b-41a7-b48a-e612d0a494c9}
ErrorPageDateTime 10/5/2011"
All Replies
-
Thursday, October 06, 2011 8:21 PMModeratorTry emptying your End User Recycle Bin and Site Collection Recycle Bin. If that does not resolve it, you may want to detach and reattach the content database from SharePoint.
http://sharepoint.nauplius.net -
Friday, October 07, 2011 3:51 PMThanks for replying Trevor. Tried both your suggestions but still the same error.
-
Tuesday, October 11, 2011 4:53 AM
Hi,
1.Please reset IIS to check result.
2.Please go to \Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\LAYOUTS to check if viewlst.aspx existed or if have been modified.
3.Please check upgrade logs to make sure the upgrade is successful.
Regards,
Seven
-
Tuesday, October 11, 2011 11:03 AM
Seven M, here are the results:
1. IIS reset works fine.
2. viewlsts.aspx does exist and has not been modified since the environment was initially installed.
3. The Upgrade was successful.
Any other ideas to fix this?
-
Tuesday, October 11, 2011 1:47 PMModeratorGo to View All Site Content. Are there any Lists/Libraries that when clicked on produce an HTTP 404 error?
http://sharepoint.nauplius.net -
Wednesday, October 12, 2011 3:57 PMTrevor, I went through them all and there are no errors.
-
Wednesday, December 21, 2011 7:02 PM
Did anyone ever figure out what could fix this issue? I am experiencing the same thing now. Thank you!
-
Wednesday, December 21, 2011 9:28 PMHi, have you checked that all necessary Site & Site collection features are enabled in SP2010, as required by the site in pre-upgrade state.
Arvit -
Wednesday, January 11, 2012 11:17 AMArvitL, Yes, all site and site collection features are enabled in my case.
-
Tuesday, May 01, 2012 7:21 PM
Right click > Create > Open in new window/tab.
This way you can create lists or libraries until you find the fix.
- Proposed As Answer by Singh1983 Tuesday, May 01, 2012 7:21 PM
- Unproposed As Answer by Steven AndrewsEditor Tuesday, May 01, 2012 9:09 PM
-
Thursday, June 28, 2012 3:33 PM
I had the same exact issue, the following worked for me:
- Proposed As Answer by ModLang Thursday, June 28, 2012 3:37 PM
-
Friday, October 26, 2012 7:49 PM
Hello Regarding the error for me, after wanting to create a new search center, i just ran this script using my settings ofcourse.
$template = Get-SPWebTemplate | where { $_.Title -eq "Blank Site" }
$newWeb = New-SPWeb -Url http://portal/subsite1/subsite2 -Name "Subsite Test" -Description "This is a test site" -Template $template -AddToTopNav -AddToQuickLaunch -UniquePermissions
write-host "Site" $newWeb.Url "created at" (Get-Date).ToString()
$newWeb.Dispose()
- Proposed As Answer by Shilezi Friday, October 26, 2012 7:52 PM

