Namwar Rizvi Profile    

Blog Title SharePoint Insight
Blog Description Sharepoint Tips, Tricks and inside knowledge from real world experience by Namwar Rizvi
Blog URL http://www.sharepoint-insight.com
RSS Feed http://www.sharepoint-insight.com/feed/
Validate Feed Validate this feed: feedvalidator.org or validator.w3.org
Feed Last Checked Sep 08, 2010 7:30:52 AM EST.
Realtime Update
Landed Here Jun 28, 2010
Location London, UK
Posts: # / 1st / Latest 20 - Jan 01, 2010 - Sep 05, 2010
Total Hits 301
What is SharepointSystem account?
Namwar Rizvi
Many people ask this question that what is SharePoint\System account? So here is the answer: SHAREPOINT\System account is the same account used by application pool of your SharePoint web application in IIS at the time of creation/extension of respective web application. This is the account which is used when you run your code in under elevated privileges by SPSecurity.RunWithElevatedPrivileges. When you create/extend a web application in SharePoint and specify an Application Pool then the i [read].
Posted: Sun, Sep 5th '10
Solution for JavaScript Error on Search Results Page in SharePoint
Namwar Rizvi
One of my clients reported that they have started getting “Object Expected” javascript error whenever they click on any link in Search Results of SharePoint. This was quite odd as the search results page was the out of the box search result page without any customization (…well up till now )… After investigating the issue, I found out that client had deleted the “Search Box” web part from the search results page as they don’t want user to search again f [read].
Posted: Tue, Aug 24th '10
Solution for “Invalid URL value. A URL field contains invalid data. Please check the value and try again”
Namwar Rizvi
If you try to update field of type SPUrlField in SPListItem, you may encounter “Invalid URL value. A URL field contains invalid data. Please check the value and try again” error. This error can occur due to several reasons. I found a good description in a Microsoft SharePoint forums by Somak Bhattacharyya . I found it quite useful and  hope it will help you to fix this issue: The URL that you are creating doesn’t exceed 255 characters. This is because the Hyperlink type colu [read].
Posted: Fri, Aug 13th '10
How to hide User Name from SharePoint Lists
Namwar Rizvi
Sometimes we need to hide the Created By, Modified By user names in display pages of SharePoint. This requirement mostly come in Surveys where you do not want to show who answered the survey. You can hide this information from being displayed by setting ShowUser property of SPList object to false. Following is a code example of doing it: using (SPSite s = new SPSite("Your Site URL")) { using (SPWeb w = s.OpenWeb("Your Web URL")) { SPList lib = w.Lists["Name of Your Target SharePoint List"]; lib [read].
Posted: Thu, Aug 12th '10
How to solve “Code blocks are not allowed in this file” error?
Namwar Rizvi
Hi, if you are getting “Code blocks are not allowed in this file” error while browsing a page in SharePoint then it is because SharePoint disables the server code in script block. This is to make sure that no one should just upload an aspx page with malicious server side code and execute it to kill the SharePoint server :) OK, got it….now tell me how to allow server code in a specific page? Here you go, just add following PageParserPath nodes under PageParserPaths node.  Refe [read].
Posted: Mon, Aug 9th '10
What is ECM and how it relates to SharePoint?
Namwar Rizvi
There are lot of confusions surrounding the terms ECM  (Enterprise Content Management System). Just Google it and you will find thousands of definitions but IMHO they all will confuse you further Being a SharePoint technologist, you must have a fairly good idea about these terms and what they actually mean to any organization. To understand the ECM concept, some fundamental points needs to be understood: An information is any thing i.e. Emails, Tasks, Files (Physical or electronic), Contact [read].
Posted: Thu, Aug 5th '10
SharePoint 2010 Administration Toolkit V1 is released
Namwar Rizvi
Microsoft has released the SharePoint 2010 Administration Toolkit V1. This toolkit enables administrators to : better manage User Profiles data, reduce security vulnerabilities, establish two way connection of SharePoint with any CMIS compliant repository Load test SharePoint Foundation I need more information before I can decide….. Detailed documentation is available at: SharePoint Foundation 2010: http://technet.microsoft.com/en-us/library/cc508986.aspx SharePoint Server 2010: http:/ [read].
Posted: Mon, Aug 2nd '10
Powershell script to enable Sandbox solution on Domain Controller
Namwar Rizvi
If your SharePoint 2010 development machine is also a domain controller then by default Sandbox solutions are disabled on it. To enable it, you need to run the following powershell script: $acl = Get-Acl HKLM:\System\CurrentControlSet\Control\ComputerName $person = [System.Security.Principal.NTAccount]“Users” $access = [System.Security.AccessControl.RegistryRights]::FullControl $inheritance = [System.Security.AccessControl.InheritanceFlags]“ContainerInherit,ObjectInherit” $propagation = [read].
Posted: Mon, Jul 26th '10
How to edit source in SharePoint 2010 Content Editor Web Part (CEWP)?
Namwar Rizvi
If you are like me and wondering what happened to Edit Source option of Content Editor Web Part i.e. CEWP in SharePoint 2010 then don’t worry, it has moved to Ribbon. Here is how you will edit source Click in the empty area of CEWP Under Editing Tools, click HTML and then Edit HTML Source as shown below. [read].
Posted: Mon, Jul 19th '10
SharePoint 2010 Certification Details
Namwar Rizvi
For those of you who are waiting for SharePoint 2010 certifications, here are the links to find all the details about them: Developers: Exam 70-573: TS: Microsoft SharePoint 2010, Application Development Exam 70-576: PRO: Designing and Developing Microsoft SharePoint 2010 Applications Administrators: Exam 70-667: TS: Microsoft SharePoint 2010, Configuring Exam 70-668: PRO: Microsoft SharePoint 2010, Administrator [read].
Posted: Thu, Jul 1st '10
How to generate a valid SharePoint FileName
Namwar Rizvi
SharePoint imposes several restrictions for the filenames. To get the details of all these restrictions, please check this support article from Microsoft. I have created a utility function to convert a given string to a valid SharePoint filename. This function is valid for SharePoint 2003, 2007 and 2010. Here you go public string ConvertToValidSharePointFileName(string originalFileName) { char[] InvalidFilenameCharacters = new[] {'\\', '/', ':', '*', '?', '"', '', '|', '#', '{', '}', '%', '~' [read].
Posted: Thu, Jun 17th '10
How to solve never ending “Sleeping for 10 seconds” upgrade message of SharePoint
Namwar Rizvi
While performing upgrade, sometime SharePoint got stuck and continously log message “Sleeping for 10 seconds…” in Upgrade.Log . To solve this issue, just perform following two steps End the task psconfig.exe,if it is running,  from task manager. From command prompt, execute the following command psconfig -cmd upgrade -inplace b2b -wait -force Wait to complete the upgrade. Once done, just browse your SharePoint site as usual, it will be back again:) [read].
Posted: Sun, Jun 13th '10
How to find Microsoft.SharePoint.ApplicationPages.dll and some other assemblies
Namwar Rizvi
You may be wondering where to find Microsoft.SharePoint.ApplicationPages.dll , if you are creating a new SharePoint application page? But don’t worry, it resides in _app_bin folder of your SharePoint site’s virtual directory. Assuming your IIS inetpub is at C then the exact path of Microsoft.SharePoint.ApplicationPages.dll is C:\Inetpub\wwwroot\wss\VirtualDirectories\\_app_bin\Microsoft.SharePoint.ApplicationPages.dll Here is the full list of assemblies at _app_bin folder: Microsoft [read].
Posted: Sat, Jun 12th '10
How to create a general purpose Search Results ticker in SharePoint by jQuery
Namwar Rizvi
Business Problem Display SharePoint search results as a scrolling ticker. Solution: SharePoint has two very powerful web parts Search Core Results WebPart and Content Editor WebPart . By combining these two web parts along with some jQuery and jCarousel Lite plug-in we can achieve desired results very quickly. The technique described here is very generic and can be used in CQWP and other web parts too. What we are doing is quite simple. We use jCarousel plugin for jQuery to scroll the elemen [read].
Posted: Fri, May 21st '10
Welcome to SharePoint 2010 – Join Virtual Launch Events
Namwar Rizvi
Microsoft is launching SharePoint 2010 today. It will be one of the biggest releases of SharePoint up till now.  Join the virtual launch event of SharePoint 2010 at http://sharepoint2010launch-virtual.wikispaces.com/ [read].
Posted: Tue, May 11th '10
Solution for Zero Byte SharePoint 2010 Log files
Namwar Rizvi
If your SharePoint 2010 Log files are of  zero byte i.e. SharePoint is unable to record the Log information then perform the following steps to resolve it Make sure the login account of “Windows SharePoint Services Tracing V4” is member of Local Administrators group. Make sure you have restarted the “Windows SharePoint Services Tracing V4” service after performing step 1. [read].
Posted: Sun, Apr 4th '10
How to solve Missing Server Side Dependencies – 8d6034c4-a416-e535-281a-6b714894e1aa Error?
Namwar Rizvi
After installing SharePoint 2010 Beta, you may encounter “Missing Server Side Dependencies – 8d6034c4-a416-e535-281a-6b714894e1aa” error in SharePoint Cental Administration. It is a very weird error and there is no logical reason behind it:) Microsoft may fix it in the final release of SP2010. Until then here is the solution: Navigate to SharePoint Central Administration Page Click General Application Settings on left hand side Quick Launch bar Under Search, click Farm-Wide S [read].
Posted: Sun, Apr 4th '10
Access Denied for SharePoint Site Owner
Namwar Rizvi
There are times when SharePoint can even deny the Site Owner to access his/her site. There are numerous reasons behind this issue but I just want to give you the solution. So here it is: Step 1: Run following stsadm command after replacing place holders, mentioned in , by actual values: stsadm -o siteowner -url -ownerlogin  Step 2: Run following stsadm command after replacing place holders, mentioned in , by actual values: stsadm -o siteowner -url -ownerlogin Thats it. Now access the si [read].
Posted: Wed, Feb 24th '10
How to debug Email Event Receiver
Namwar Rizvi
Normally when you debug an event receiver in SharePoint, you attach your debugger with w3wp.exe process. But email received event is not processed by this process. Instead, you need to attach your debugger with OWSTIMER.exe process. This is the “Windows SharePoint Services Timer” service. If this process is not listed in your processes list then click on “Show processes from all users” to display all processes similar to following: [read].
Posted: Thu, Jan 14th '10
How to dynamically construct the SharePoint site relative url in JavaScript
Namwar Rizvi
There are times when you want to dynamically construct a SharePoint site relative Urls e.g. if you are calling a SharePoint webservice from JQuery etc. then you will need to call it in context of your required site. Most people try to slice and dice the URL of the current page and try to find the SharePoint site from it. This is not a very clean way of doing it. The more easy and clean way is the way SharePoint itself does which is using the JavaScript variable called L_Menu_BaseUrl This variab [read].
Posted: Fri, Jan 1st '10



Blogs
S.S. Ahmed
Eric Alexander
Reza Alirezaei
Owen Allen
Paul Andrew
Axceler Blog
Tariq Ayad
William Baer
Todd Baginski
Jose Barreto
Alexander Bautz
Becky Bertram
Urs Bertschy
Simon Binaryjam
Darrin Bishop
Chrissy Blanco
Todd Bleeker
Michael Blumenthal
Robert Bogue
Christian Buckley
Gary Bushey
Sean Cantellay
Joe Capka
Mauro Cardarelli
Todd Carter
Eric Charran
Liam Cleary
Communardo Techblog
Renaud Comte
Andrew Connell
William Cornwill
Matthew Cosier
Penny Coventry
Paul Culmsee
Stephen Cummins
Marek Czarzbon
Jeff Dalton
Gabriele Del Giovine
Tim Dobrinski
Stacy Draper
Zlatan Dzinic
Erika Ehrli
Enterprise Search
eusp2010
Christopher Even
Lars Fastrup
Mike Fitzmaurice
Torsten Flegel
Rob Foster
Bob Fox
Toni Frankola
Bjorn Furuknap
Amar Galla
Paul Galvin
Mike Gannotti
Rob Garrett
Sebastian Gerling
Get the Point
Stefan Gossner
Brian Gough
Michael Greth
Matthias Groenert
Daniele Guarneri
Portals & Integration
Mike Hamilton
Spencer Harbar
Richard Harbridge
Marcus Hass
René Hézser
Sascha Henning
Susan Henry
Mike Herrity
Tim Heuer
Ben Hickman
Ed Hild
Thomas Hildebrandt
Scot Hillier
Kevin Hoffman
John Holiday
Greg Hughes
Christophe Humbert
Dave Hunter
Randall Isenhour
Becky Isserman
Barry Jinks
Chris Johnson
Kit Kai
Mattias Karlsson
Paul Keijzers
George Khalil
Noorez Khamis
Todd Klindt
Steffen Krause
Westin Kriebel
Larry Kuhn
Chandima Kulathilake
Andre Lage
Gary Lapointe
Daniel Larson
Eric Legault
Dan Lewis
Paul Liebrand
Bryant Likes
David Lim
Locatech
Angus Logan
Serge Luca
Gregory MacBeth
Igor Macori
Ricardo Magalh
Sahil Malik
Giuseppe Marchi
Waldek Mastykarz
Jean-Francois Mathieu
Andrew May
Ali Mazaheri
Matthew McDermott
Daniel McPherson
Jason Medero
Oscar Medina
Alexander Meijers
Robin Meure
Ryan Miller
Bob Mixon
Agnes Molnar
Adam Morgan
Ian Morish
Mart Muller
Amanda Murphy
Arno Nel
Mads Nissen
Chris O'Brien
Michael O'Donovan
Joel Oleson
Henry Ong
Doug Ortiz
Mike Oryszak
Paul Papanek Stork
Joris Peolmans
Shane Perran
Pieter Pieter
Steve Pietrek
Maurice Prather
Stuart Preston
Romeo Pruno
Chris Quick
Shereen Qumsieh
Dux Raymond
Tom Resing
Keith Richie
Namwar Rizvi
Tom Rizzo
Eli Robillard
Lance Robinson
Patrick Rogers
Eugene Rosenfeld
Zach Rosenfield
Ishai Sagi
Paul Schaeflein
Arnt Schoning
Brendon Schwartz
Carlos Segura Sanz
Philippe Sentenac
Arpan Shah
Itay Shakury
End User SharePoint
To The SharePoint
SharePoint and Tech Blog
SharePoint Blues
Sharepoint Design Team
Sharepoint Developer
SharePoint Magazine
SharePoint Product Team
Sharepoint Solutions
SharePointHosting Blog
Steve Sheppard
Eric Shupps
Bill Simser
Scott Singleton
Patrick Sledz
Heather Solomon
Thomas Sondergaard
Clare Stone
Nick Swan
Marwan Tarek
Jeremy Thake
Jan Tielen
Tools for Collaboration
Torsten Hufsky
UK SharePoint Team
Understanding SharePoint
Dan Usher
Serge van den Oever
Cornelius van Dyk
Xavier Vanneste
Geoff Varosky
Pierre Vivier-Merle
Natalya Voskresenskaya
JD Wade
Kris Wagner
Mike Walsh
Doug Ware
Michael Watson
Bart Wessels
Phil Wicklund
Wictor Wilen
Ivan Wilson
Woody Windischman
Daniel Winter
Andrew Woodward
Shane Young
Mohamed Zaki
Tobias Zimmer


SharePoint Resources


Inside the Index and Search Engines: Microsoft Office SharePoint Server 2007 (PRO-Developer) by Patrick Tisseghem


Advanced Microsoft Content Management Server MCMS: Working with the Publishing API, Placeholders, Search, Web Services, RSS, and Sharepoint Integration by Lim Mei Ying


Professional Microsoft Search: SharePoint 2007 and Search Server 2008 (Wrox Professional Guides) by Tom Rizzo


Google Sites & Chrome For Dummies (For Dummies (Computer/Tech)) by Ryan Teeter


SharePoint 2007 User's Guide: Learning Microsoft's Collaboration and Productivity Platform by Seth Bates


Microsoft Office SharePoint Server 2007 Best Practices by Ben Curry


Microsoft® Office SharePoint® Designer 2007 Step by Step by Penelope Coventry


Essential SharePoint 2007: A Practical Guide for Users, Administrators and Developers by Jeff Webb


Professional Microsoft Office SharePoint Designer 2007 (Wrox Programmer to Programmer) by Woodrow W. Windischman


Beginning SharePoint 2007: Building Team Solutions with MOSS 2007 (Programmer to Programmer) by Amanda Murphy


Microsoft® Windows® SharePoint® Services 3.0 Step by Step (Step By Step (Microsoft)) by Olga Londer


Microsoft SharePoint 2007 Unleashed by Michael Noel


Microsoft SharePoint 2007 For Dummies (For Dummies (Computer/Tech)) by Vanessa L. Williams


The SharePoint Shepherd's Guide for End Users by Robert Bogue


The Microsoft SharePoint Step by Step Kit: Microsoft Windows SharePoint Services 3.0 Step by Step and Microsoft Office SharePoint Designer 2007 (Bpg-Other) by Olga Londer


SharePoint for Project Management: How to Create a Project Management Information System (PMIS) with SharePoint by Dux Sy


Beginning SharePoint 2007 Administration: Windows SharePoint Services 3.0 and Microsoft Office SharePoint Server 2007 by Göran Husman


Professional SharePoint 2007 Development (Programmer to Programmer) by John Holliday


Inside Microsoft Windows SharePoint Services 3.0 (Pro Developer) by Ted Pattison; Daniel Larson


Microsoft® Office SharePoint® Server 2007 Administrator's Companion by Bill English


Professional SharePoint 2007 Design (Wrox Professional Guides) by Jacob J. Sanford


Inside Microsoft Office SharePoint Server 2007 by P. Tisseghem


Real World SharePoint 2007: Indispensable Experiences From 16 MOSS and WSS MVPs (Programmer to Programmer) by Robert Bogue


Mastering Windows SharePoint Services 3.0 by C. A. Callahan


Pro SharePoint Solution Development: Combining .NET, SharePoint and Office 2007 (Expert's Voice in Sharepoint) by Ed Hild


Seamless Teamwork: Using Microsoft® SharePoint® Technologies to Collaborate, Innovate, and Drive Business in New Ways (BP-Other) by Michael Sampson


Professional SharePoint 2007 Web Content Management Development: Building Publishing Sites with Office SharePoint Server 2007 (Wrox Programmer to Programmer) by Andrew Connell


Building Web Applications with Microsoft® Office SharePoint® Designer 2007 Step by Step (Step By Step (Microsoft)) by John Jansen


Microsoft Office SharePoint Designer 2007 Bible by Vikram Kartik


SharePoint 2007: The Definitive Guide by James Pyles


Microsoft SharePoint 2003 For Dummies (For Dummies (Computer/Tech)) by Vanessa L. Williams


Office and SharePoint 2007 User's Guide: Integrating SharePoint with Excel, Outlook, Access and Word (Expert's Voice) by Michael Antonovich


Building Content Type Solutions in SharePoint 2007 by David Gerhardt


Microsoft Windows SharePoint Services Step by Step (Step By Step (Microsoft)) by Olga Londer


MCTS: Microsoft Office SharePoint Server 2007 Configuration Study Guide: Exam 70-630 by James Pyles


Inside SharePoint Administration by Steve Caravajal


Sams Teach Yourself Microsoft SharePoint 2003 in 10 Minutes by Colin Spence


Microsoft Windows SharePoint Services 3.0 Quick Source Guide by Quick Source


Microsoft SharePoint Products and Technologies Administrator's Pocket Consultant by Ben Curry


SharePoint 2007 Development Recipes: A Problem-Solution Approach (Expert's Voice in Sharepoint) by Mark Gerow


Essential SharePoint 2007 by Scott Jamison


Professional Microsoft SharePoint 2007 Workflow Programming by Dr. Shahram Khosravi





About - Blog Submission - FAQ