Archive by Author

Cleaning Up Orphaned Webs

Posted on 24. Oct, 2007 by bryan.

0

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.

0

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.

1

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

Bluetooth Headset and Google Talk

Posted on 12. Sep, 2007 by bryan.

0

Just to see if it would work, I decided the other day to pair my Motorola HS3 Bluetooth Headset with my Lenovo Thinkpad T60.

I have to admit that I am really digging using my headset with Google Talk and Messenger. I like having the option to switch into a voice chat from IM but maintain [...]

Continue Reading

SQL 2005 Maintenance Plans and SharePoint

Posted on 11. Sep, 2007 by bryan.

0

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

Life Under a Rock

Posted on 10. Aug, 2007 by bryan.

0

My family and I are having a new house built.  Seems appropriate, as my former abode was located under the following:

You think I’m kidding?  I assure you I am not.  And I offer as proof this tidbit:
Did you know that since Windows 2000 one could mount drives to a folder?  Chances are, you did know [...]

Continue Reading

SharePoint Licensing

Posted on 25. Jun, 2007 by bryan.

0

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

My First Linq Program

Posted on 18. Jun, 2007 by bryan.

0

I successfully coded my very first LINQ program today, and man is it a doozie!  Observe:
class Program
{
static void Main(string[] args)
{
List<Student> studentList = new List<Student>();

studentList.Add(new Student(“Charlie”, “Brown”));
[...]

Continue Reading

Safari for Windows!

Posted on 12. Jun, 2007 by bryan.

0

Thank you Apple!  I am now one step closer to retiring my 500MHz iBook!

Incase you missed it, you can download it here.  This is definitely not a production build, as I have been running it for less than a day and it has crashed 3 times, but it is very, VERY promising!

Continue Reading

SPLimitedWebPartManager Memory Leak?

Posted on 05. Jun, 2007 by bryan.

7

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