by zebsadiq
16. January 2012 10:52
It is such a simple and common requirement but it can be a nightmare to achieve out of the box with SharePoint. I spent quite a bit of time working out how a user can be authenticated via https and maintain their login cookie over http pages (without having to sign in again). More...
by zebsadiq
13. January 2012 11:43
One of the annoyances about SharePoint alerts seems to be that the functionality of an alert template and existing subscriptions on an existing list, seem to be disjointed. When you update an alert template property for an existing list, the change is not applied to any existing alert subscriptions on that list. As a follow up to my previous post SharePoint 2010 custom alert template, I will try to describe the limitations and issues surround existing alert subscriptions and the options available to work around them. More...
by zebsadiq
27. November 2011 18:14
Having gone through the experience of adding a custom alerts template to SharePoint 2010, I thought I’d share my learning during this process. This is the first part of two posts regarding custom alert templates. Updating existing alert subscriptions in SharePoint 2010 describes the challenges around updating existing alert subscriptions. In this post, I hope to cover what you need to know to create a custom alert template. More...
by zebsadiq
19. May 2011 10:13
I recently needed a way to be able to deploy a web service project to different environments, where each environment was either using http or https to offer the web service to the multiple clients. If you find yourself in the same situation, then this technique might save you a bit of time.
More...
by zebsadiq
4. February 2011 11:40
If you’re trying to get going with GNUstep, you follow all of the instructions but you come accross the following message:
File NSData.m:1413 In[NSData writeToFile.options:error:] Open (/home/USER/ProjectFolder/Filenamea12345) failed – The system cannot find the file specified. More...
by zebsadiq
3. February 2011 13:16
Issue when you reference Microsoft.SharePoint.dll in Visual Studio 2010. If you’ve already put in the using statements like bellow:
using Microsoft.SharePoint;
using Microsoft.SharePoint.Administration;
You issue a build and it fails and you get the following message:
’The type of namespace 'administration' could not be found’
The fix: Change the target framework to .Net Framework 3.5 (Right click the project in visual studio and go to ‘Properties’)
by zebsadiq
2. February 2011 15:07
Recently I had to investigate why a certain virtual machine’s hard drive had filled up. I discovered that this was caused by a massive SharePoint database that I had imported. The log file for this database was nearly 30gb. More...
by zebsadiq
28. January 2011 14:21
Recently I had to convert a few child windows into popup windows. Doing this was pretty easy. I simply changed the child windows into user controls, then added them as child controls of popups at runtime. One of the behavioural difference between the child window and pop up box is that by default, a child window opens in the middle of the Silverlight application whereas the Popup appears in the top left corner. After a bit of google-ing, I did not find an out of the box way to make the pop-ups sit in the centre of my screen. Therefore I formulated a way of doing this via code and some basic maths. More...
by zebsadiq
13. December 2010 19:27
If you need to copy a web part from one place to another, you can use the out of the box import/export functionality that SharePoint provides. A scenario where you have been asked to add a web part with specific configurations, to ten different locations, can present quite a challenge to perform manually. Here I will explain how you can do this in a more efficient manner. More...
by ZebSadiq
7. December 2010 19:55
On nearly all of the SharePoint implementations I've participated on, there has been a requirement to customise the look and feel of the search results page. This makes sense because it would be odd from the user experience for the SharePoint look and feel to change all a sudden when the user decides to search for a keyword.
Here I will try to explain how to create a custom search site template that uses one custom search results layout for all different types of search results. More...