I was configuring SharePoint search service. when I started full crawl , it started and 1 second later ( after refresh ) it stoped and gives me this error in error log :
Access is denied. Check that the Default Content Access Account has access to this content, or add a crawl rule to crawl this [...]
Archive for the ‘Sharepoint’ Category
MOSS Search Crawler Error : Access Denied …
Posted in SSP, Search Service, Sharepoint, tagged Crawler, SharePoint Search on September 22, 2009 | Leave a Comment »
Portal Site Connection
Posted in Sharepoint on July 28, 2009 | Leave a Comment »
When you use SharePoint, In the Site Setting of your Site Collection you can see that there’s a link below “Site Collection Administration” which name : Portal site connection
I always wondered what’s this link and how can I use it. I also found there’s a good blog and article here.
I found that you can use [...]
Deploy Error : Object reference not set to an instance of an object
Posted in Develop Errors, Development, tagged Object reference not set to an instance of an object, solution deploy error on May 11, 2009 | Leave a Comment »
Sometimes when you want to deploy your solution or custom web part on the server , However everything is OK and the code is built successfully but you encounter this error.
Object reference not set to an instance of an object
It may be because of the existing deployed solutions. Mark Arend has written a good post [...]
No Multiple Upload ? No Connect to Outlook ?!
Posted in Browsers, Errors, IE, Sharepoint, tagged connect to outlook, Internet explorer, no upload multiple documents on May 7, 2009 | 2 Comments »
If by Internet Explorer you can’t see some SharePoint Document Library & List links like “Connect to Outlook” in “Action” menu or “Upload Multiple Files” in “Upload” menus in document libraries … it’s because that some SharePoint related Add-ons are disabled ! ( IE Security )
There is an ActiveX Control with name : STSSYNC
To Solve [...]
Error When Uploading Multiple Files
Posted in Document Library, Errors, Sharepoint, tagged multiple, upload on May 3, 2009 | 1 Comment »
To fix the problem when you want to upload multiple files and you encounter this error : Cannot run Windows SharePoint Services on this page …
Follow these steps :
You should make some changes to Upload.aspx file in layouts folder. But first make a copy of this file as a backup and then do these [...]
How to update a people and group field via code?
Posted in Development, Sharepoint, tagged people and group, people editor on April 21, 2009 | Leave a Comment »
Today I was working on my custom web part. One of my questions was : after pressing submit button how to update a people and group field in the destination list.
I tested many ways and they gives me this error :
Invalid data has been used to update the list item. The field you are trying [...]
A point about NTLM & Kerberos authentication type in Sharepoint
Posted in Application Management, Central Administration, Sharepoint, tagged authentication, Kerberos, NTLM, Sharepoint on April 14, 2009 | Leave a Comment »
In Sharepoint 2007 when you want to create or extend a web application or create the central administration site ( after installing ) you know that one step is to choose authnetication type. I read a good point about one of the differences between these two types and want to share it with you [...]
Group cannot be found !
Posted in Errors, Sharepoint on March 16, 2009 | Leave a Comment »
I would be very thankful to whom guide me how to solve this error.
In our Sharepoint Intranet in some specific situations ( I don’t remember them ) and especially when I want to upload a picture in a picture library or when I want to edit properties of an item in a list, it gives [...]
Delete All items in a Sharepoint list
Posted in Development, Lists, Sharepoint, tagged All Items, Delete, Sharepoint List on February 25, 2009 | Leave a Comment »
I was trying to create a method to delete all items in a sharepoint list .
here is the code , It’s simple but a question remained for me at the end :
public void DeleteAllRecords()
{
SPList list_a = web.Lists["UserDocs"];
SPListItemCollection itemsCol = list_a.Items;
if (itemsCol.Count > 0)
for (int i = itemsCol.Count-1; i > -1; i–)
{
[...]