Archive for 'SharePoint'
"The page you are attempting to save has been modified by another user since you began editing"
Posted on 17. Dec, 2007 by bryan.
I recently ran into an issue where editing content within a Content Editor web part would cause the following message to appear in the Publishing Toolbar:
The page you are attempting to save has been modified by another user since you began editing
At that point you would have to select “Save and Overwrite Changes” in order [...]
Continue Reading
Cleaning Up Orphaned Webs
Posted on 24. Oct, 2007 by bryan.
Ran into an issue today with installing the October 9th SharePoint Security Patch. During the content database upgrade I received several errors that certain sites and webs were missing. This is due to the staging content database being migrated from a development content database, and there are slight differences in the configuration databases [...]
Continue Reading
Global Navigation Error After Creating Site from Site Template
Posted on 28. Sep, 2007 by bryan.
Follow along:
Create a new site template from SharePoint Designer. Doesn’t really matter what the site template is for or what options you choose (based on my experience).
Go into SharePoint and create a new site based on the new custom Site Template.
Note that your top navigation bar (the global navigation) should now have a “Home” tab, [...]
Continue Reading
Unable to login to SharePoint Portal from SharePoint Server
Posted on 27. Sep, 2007 by bryan.
One of our SharePoint servers at work was updated with the most recent round of security patches the other day. Unfortunately, the result of this update was the inability to login to the SharePoint Portal from the server, and the search crawler not being able to access the site.
After some significant research on the matter [...]
Continue Reading
SQL 2005 Maintenance Plans and SharePoint
Posted on 11. Sep, 2007 by bryan.
If you are using SPS 2003 or MOSS 2007 with a SQL Server 2005 box that does not have SP2 installed, you may discover that your crawls never complete. There is a bug in SQL 2005 that if you have a Reindex Maintenance Plan it clears some attributes of the SharePoint indexes when it reindexes [...]
Continue Reading
SharePoint Licensing
Posted on 25. Jun, 2007 by bryan.
Lots of people out there are asking the same questions regarding SharePoint licensing. Are CAL’s for concurrent users? Do I need both Standard and Enterprise CAL’s? Can I mix Standard and Enterprise CAL’s in a given environment?
It has been difficult finding definitive responses to these questions, and it seems like if you [...]
Continue Reading
SPLimitedWebPartManager Memory Leak?
Posted on 05. Jun, 2007 by bryan.
Have a look at the following code segment:
while(true)
{
using (SPSite siteCollection =
new SPSite(“http://localhost”))
using (SPWeb site =
siteCollection.OpenWeb(“/Marketing”))
{
SPFolder pagesFolder = site.GetFolder(“Pages”);
[...]
Continue Reading
Exporting DataView with Custom Parameter
Posted on 30. May, 2007 by bryan.
This past week I have been working with a DataView that needed to filter a list by the title of the PublishingPage containing the DataView web part. In order to provide this functionality, I created a straight-forward custom parameter:
public class PageTitleParameter : System.Web.UI.WebControls.Parameter{ protected override object Evaluate(System.Web.HttpContext context, System.Web.UI.Control control) { SPListItem listItem = SPContext.Current.ListItem;
if [...]
Continue Reading
Running ASP.NET app within a SharePoint Virtual Server
Posted on 29. May, 2007 by bryan.
For my own development efforts, I use Axosoft’s OnTime product which is free for a single user (yeah!). I have a single SSL for Axosoft and for my WSS Team Site installation, so I needed for both to coexist peacefully in a single virtual server. Out of the box Axosoft was throwing several errors, at which point I came across [...]

