Categories

Archives

StsAdm –o copyfarmappbincontent is available in CodePlex

English Remember about critics to “stsadm –o copyappbincontent” to deploy SharePoint resource in my previous post here. At the end of the post, I think that it should be “stsadm –o copyfarmappbincontent” instead. Why? Because the last will work in centralized deployment mode, same as solution deployment. But what’s the secret? Why the standard [...] [read more...]

Problem when installing WSP in Windows 7/Windows Server 2008

English I know that Microsoft has fabulous 40, a collection of 40 site templates in this link. I have played with all the templates, without any problem – but today when I tried to install it in my Windows 2008 server I was stuck in the wsp deployment. It seems that I couldn’t deploy the WSP. Then, [...] [read more...]

Howto: Use lambda expression in SharePoint – Working with SPWeb

English Before you continue reading this post, I hope you have read the basic task to start using lambda expression in SOM here. A.  Find any Event list in site. SPWeb spWeb = SPContext.Current.Web var lists = spWeb.Lists.OfType<SPList>().Where(              l => l.BaseTemplate == SPListTemplateType.Events);   foreach (SPList list in lists) [...] [read more...]

Howto: Configure personal regional setting

English When you are working in multi-sites environment you may sometimes confused with the timestamp given by the server. The timestamp (Created Date, Modified Date) is combination of several factors : a. Server TimeZone   , is physical server timezone configuration. b. Web Application TimeZone , is application level timezone configuration. c. Site   [...] [read more...]