Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
4k views

How to move documents from SharePoint 2003 to SharePoint 2007 with versioning?

I'm desperately searching for a tool allowing me to copy documents with their old versions from a SharePoint 2003 to a SharePoint 2007 site. Do you know about any simple (and preferably free) tool ...
2
votes
2answers
733 views

SharePoint 2003 - deny access using web.config

As all you know, Sharepoint 2003 has simple access rights privilages. You can only grant rights (Reader, Contributor, Administrator) but unfortunatelly you can not deny access. So, if someone is not ...
2
votes
2answers
437 views

SharePoint API: 2003 vs 2007

I have coded a solution that uses the 2007 API to traverse the SharePoint object model. Now I need to support SP 2003 as well. What is the best way to do this? Is it possible / recommended to use the ...
2
votes
2answers
222 views

Considerations for Upgrading SharePoint 2003 to 2007

Thanks in advance! I was wondering if you SharePoint architects/experts out there could help me nail down the specifics and concerns around upgrading an existing SharePoint 2003 deployment to ...
1
vote
1answer
91 views

Get Sharepoint server documents in web application

I want to get the sharepoint documents in webapplication. This is my code. try { string sharePointURL = "http://<ipAddress>:<port>/<websiteName>/default.aspx"; ...
1
vote
6answers
3k views

How to find missing web part?

Does anybody know how to find offending web part which causes this error ? “A Web Part or Web Form Control on this Web Part Page cannot be displayed or imported because it is not registered on this ...
1
vote
1answer
937 views

Sharepoint, Calculated column, IF function and date

I am trying to add a calculated column. I have a date column containing the date a meeting is scheduled. From this column I need a code which can return if the meeting is scheduled in Q1, Q2, Q3 or ...
1
vote
2answers
229 views

Move a SharePoint 2003 site to a SharePoint 2007 Server

I have 2 SharePoint servers, an old pilot SP 2003 server and a new SP 2007 production server. One of the sites in the 2003 server is invaluable and contains a couple of advanced custom lists and ...
1
vote
1answer
325 views

Finding out document template type of document library

When I make a document library in Sharepoint 2003 and select the document template type etc and come back to edit/administer the document library, how can I find out what document template type I ...
1
vote
4answers
187 views

Sharepoint webservices

I have a couple of Sharepoint portals (Sharepoint Portal Server 2003 + SQL Server) running and they should both share some commom data. I was planning on working with two separate lists, and build a ...
1
vote
4answers
2k views

Sharepoint: SQL to find all documents created/edited by a user

I am looking for a query that will work on Sharepoint 2003 to show me all the documents created/touched by a given userID. I have found tables with the documents (Docs) and tables for users ...
0
votes
0answers
12 views

Audit information for a document library

I'm trying to find out how I can get a list of user names and which files from a particular document library on a my SharePoint 2003 sub-site they have requested/downloaded. The SharePoint server ...
0
votes
0answers
51 views

Sharepoint2003 MS-Access2003 update reports “Data or object is read only”

I am attempting to write an application to update a Sharepoint 2003 List(WSS3). I can establish a link to the List via MS-Access2003. Viewing, Adding and Deleting records all appear to work as ...
0
votes
0answers
26 views

Migrating from SharePoint 2003 To MOSS, but no sites

I've migrated a site with the common logic that can be found on the web with backup-restore method to the database and adding content DB in MOSS, the problem is that the process succeeds but I see no ...
0
votes
1answer
1k views

How do I programmatically rename a Sharepoint directory (SPFolder or SPListItem)?

I have tried this: SPFolder folder = ...; folder.Item["Name"] = newName; folder.Item.Update(); And it behaves mysteriously. If I run it, it throws an exception: SPException: Cannot complete this ...
0
votes
2answers
143 views

Does SharePoint 2003 support .NET 3.5 framework?

I would like to know if there are any concerns that we should be aware of if we were to upgrade our SharePoint 2003 server to .NET 3.5. Does this version of SharePoint even support 3.5? Thanks in ...
0
votes
0answers
446 views

SharePoint web part error: One or more web parts on this page references a zone that doesn't exist. It has been moved to the Web Part Page Gallery

I have a problem when my users open a list item for a newly created site. When the item is first opened they recieve the following error: "One or more web parts on this page references a zone that ...
0
votes
1answer
140 views

SharePoint 2003 Extranet Sites Returning “Operation Aborted” and “Render Failed” errors

For my company, we have a few extranet sites built in SharePoint Portal 2003 for vendors to collaborate on documents with us. We have the database's on on server and the sites hosted on another server ...
0
votes
1answer
345 views

Getting permissions of a user in SharePoint 2K3 List

I have been using SharePoint server 2003. I need to retrieve the list of permissions using SPList.Permissions.Xml. But I dont find the permissions given to the user anywhere in the Xml returned. Say ...
0
votes
1answer
307 views

Accessing SharePoint Event Attachment

I have a SharePoint calendar event that can have any type of file as attachment. Is there any way to access the contents of the file/ download them? I have to calculate the check sum of these files.
0
votes
2answers
147 views

How to call a web service from data layer

I have a data layer project which receives a byte array that needs to be persisted. The byte array will be stored in Sharepoint 2003, so I'd like to be able to call a SP web service from within the ...
0
votes
1answer
1k views

Hide lists from “All Site Content” page of SharePoint site

I wonder if there is a way to hide some document library lists that are shown when the user navigates to the "All Site Content" page in SharePoint, and I wonder if there is a programmatic way to ...
0
votes
1answer
642 views

Migrating document libraries from sharepoint 2003 to sharepoint 2007 with version history tool problem

I'm actually trying to get splistcp to work (referenced in hxxp://stackoverflow.com/questions/272630/how-to-documents-from-sharepoint-2003-to-sharepoint-2007-with-versioning/884609#884609), it seems ...
0
votes
2answers
147 views

HttpModule disables SharePoint 2003 admin

I have a web part with links to e.g. "Manage Users" i SharePoint (2003) I also have a http module, that must add some JavaScript to the aspx pages served through the sharePoint site. This runs well ...