I was trying to implement a custom webpart on home page of site.Now home page was not accessible at all. Seems something wrong with my custom webpart.
To remove this webpart I just added
?contents=1 in the url and I can see configured web parts list of the page.
I selected culprit custome webpart and deleted. Now my page is back to life.
Thursday, April 23, 2009
Thursday, April 16, 2009
Delete orphaned sites or items in sharepoint 2007.
To delete orphaned sites or item from a sharepoint site, we have 2 options.
Option 1.
Option 1.
- Opened a command Prompt and went to this directory: C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\BIN
- Type following command to list the orphaned sites: stsadm -o databaserepair -url http://URLofWindowsSharePointServicesSite -databasename DatabaseName
- To delete orphaned site :stsadm -o databaserepair -url http://URLofWindowsSharePointServicesSite -databasename DatabaseName -deletecorruption
The above command might delete orphaned sites and items.
If above steps doesn't resolve orphan issue then apply below mentioned Option 2
Option 2
- Go to command prompt as given in Option 1. Run command stsadm -o deletecontentdb -url http://URLofWindowsSharePointServicesSite -databasename "databasename" (remember database name)
- Now run command stsadm -o addcontentdb -url http://URLofWindowsSharePointServicesSite -databasename "databasename"
I hope option 2 might resolve orphan issue.
Nilesh
Tuesday, April 14, 2009
When attempting to add content to a List you get the following error "Exception from HRESULT: 0x80040E14".
Check the SharePoint log files for the following error.
{datetime} OWSTIMER.EXE (0x05B8) 0x0934 Windows SharePoint Services Database 6f8g Unexpected Unexpected query execution failure, error code 9002. Additional error information from SQL Server is included below. "The transaction log for database 'SharePoint_Config_xxx' is full. To find out why space in the log cannot be reused, see the log_reuse_wait_desc column in sys.databases" Query text (if available): "{?=call proc_StartTimerRunningJob(?,?,?,?,?,?)}"
As the error states, the Transaction Log database is full or there is insufficient disk space. Trimming this DB or allocating more disk will should resolve the “Exception from HRESULT: 0x80040E14” error. You should not need to restart – it should just come good.
You need to clear some space in Sql Server drive.
{datetime} OWSTIMER.EXE (0x05B8) 0x0934 Windows SharePoint Services Database 6f8g Unexpected Unexpected query execution failure, error code 9002. Additional error information from SQL Server is included below. "The transaction log for database 'SharePoint_Config_xxx' is full. To find out why space in the log cannot be reused, see the log_reuse_wait_desc column in sys.databases" Query text (if available): "{?=call proc_StartTimerRunningJob(?,?,?,?,?,?)}"
As the error states, the Transaction Log database is full or there is insufficient disk space. Trimming this DB or allocating more disk will should resolve the “Exception from HRESULT: 0x80040E14” error. You should not need to restart – it should just come good.
You need to clear some space in Sql Server drive.
Friday, April 3, 2009
Error Scheduling Crawls: Access is Denied (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
When I try to create a schedule in Content sources and crawl schedules of SSP, I get error Access is Denied (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)).
So I searched to find out the solution and got this url
http://support.microsoft.com/kb/926959
Some people might be able to run the commands given there and succeeded.
But for me its no luck..
So I ran this command..
cacls %windir%\tasks /E /C /G wss_wpg:c
and did IISRESET.
Now everything perfect. Hope this will help others also.
Nilesh
So I searched to find out the solution and got this url
http://support.microsoft.com/kb/926959
Some people might be able to run the commands given there and succeeded.
But for me its no luck..
So I ran this command..
cacls %windir%\tasks /E /C /G wss_wpg:c
and did IISRESET.
Now everything perfect. Hope this will help others also.
Nilesh
Subscribe to:
Comments (Atom)