Feeds:
Posts
Comments

Archive for the ‘Sharepoint’ Category

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 [...]

Read Full Post »

Hi, This is a short post about permission levels for approving items :
Just be careful that if you want to create somthing like an “Approve Only” permission level in sharepoint, You must also tick “Manage Lists” permission level in permissions…

Read Full Post »

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 [...]

Read Full Post »

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 [...]

Read Full Post »

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 [...]

Read Full Post »

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 [...]

Read Full Post »

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 [...]

Read Full Post »

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 [...]

Read Full Post »

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 [...]

Read Full Post »

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–)
                {
                    [...]

Read Full Post »

Older Posts »