<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>XinSpace</title>
	<link>http://xinspace.com</link>
	<description>SharePoint, Drupal and Other Random Notes</description>
	<lastBuildDate>Sat, 12 Mar 2011 04:59:23 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Enable/Allow ping with Windows Firewall in Windows 2008 Server</title>
		<description><![CDATA[run the following command 
netsh firewall set icmpsetting 8 enable
]]></description>
		<link>http://xinspace.com/enableallow-ping-with-windows-firewall-in-windows-2008-server/</link>
			</item>
	<item>
		<title>SharePoint Template Code</title>
		<description><![CDATA[GLOBAL#0 = Global template (1033)
STS#0 = Team Site (1033)
STS#1 = Blank Site (1033)
STS#2 = Document Workspace (1033)
MPS#0 = Basic Meeting Workspace (1033)
MPS#1 = Blank Meeting Workspace (1033)
MPS#2 = Decision Meeting Workspace (1033)
MPS#3 = Social Meeting Workspace (1033)
MPS#4 = Multipage Meeting Workspace (1033)
CENTRALADMIN#0 = Central Admin Site (1033)
WIKI#0 = Wiki Site (1033)
BLOG#0 = Blog (1033)
BDR#0 = [...]]]></description>
		<link>http://xinspace.com/sharepoint-template-code/</link>
			</item>
	<item>
		<title>Exception from HRESULT: 0&#215;80020006 (DISP_E_UNKNOWNNAME</title>
		<description><![CDATA[In my ASP.NET/C# code, I used DirectoryServices to manage a remote IIS website. However, when a method Site.Invoke is called, this exception got thrown. 
This is a permission problem. The account running ASP.NET code on IIS doesn&#8217;t have permission to access remote server. So ASP.NET Impersonation has to be used to solve the issue.
]]></description>
		<link>http://xinspace.com/exception-from-hresult-0x80020006-disp_e_unknownname/</link>
			</item>
	<item>
		<title>There is a duplicate ‘system.web.extensions/scripting/scriptResourceHandler’ section defined</title>
		<description><![CDATA[We moved an ASP.NET 3.5 application from IIS Server 6.5 yo 7.5 and then this error starts to show. 
Solution: Change the associated application pool&#8217;s ASP.NET framework version from 4.0 to 2.0. 
]]></description>
		<link>http://xinspace.com/there-is-a-duplicate-%e2%80%98system-web-extensionsscriptingscriptresourcehandler%e2%80%99-section-defined/</link>
			</item>
	<item>
		<title>locate: command not found</title>
		<description><![CDATA[yum install mlocate
]]></description>
		<link>http://xinspace.com/locate-command-not-found/</link>
			</item>
	<item>
		<title>diff: command not found</title>
		<description><![CDATA[yum install diffutils.i386
]]></description>
		<link>http://xinspace.com/diff-command-not-found/</link>
			</item>
	<item>
		<title>error: pcre.h: No such file or directory</title>
		<description><![CDATA[yum -y install pcre-devel
]]></description>
		<link>http://xinspace.com/error-pcreh-no-such-file-or-directory/</link>
			</item>
	<item>
		<title>phpize: command not found in CENTOS</title>
		<description><![CDATA[yum install php-devel.i386
]]></description>
		<link>http://xinspace.com/phpize-command-not-found-in-centos/</link>
			</item>
	<item>
		<title>ntpdate step-systime: Operation not permitted in a XEN VPS</title>
		<description><![CDATA[echo 1 &#62; /proc/sys/xen/independent_wallclock
ntpdate -b pool.ntp.org
Should detaching from the wallclock resolve this issue, you can make this change permanent by adding the following line to your &#8220;/etc/sysctl.conf&#8221; file:
xen.independent_wallclock=1
Thanks to Danny@linode
]]></description>
		<link>http://xinspace.com/ntpdate-step-systime-operation-not-permitted-in-a-xen-vps/</link>
			</item>
	<item>
		<title>drupal views 2 theming: access other fields value in your field template</title>
		<description><![CDATA[if you need access other fields in your field template, you can access them by
&#60;?
echo $row-&#62;{$view-&#62;field['FIELD_ID']-&#62;field_alias};
?&#62;
You will be able to add some logic to your template like
&#60;?
if($row-&#62;{$view-&#62;field[field_B_value]-&#62;field_alias})
{
echo $output  ;
}
else
{
echo &#8220;B is not available&#8221;;
}
?&#62;
Note the &#8216;FIELD_ID&#8217; can be something different depending on the field type. it can be &#8220;field_B_nid&#8221; (if it is node reference), or &#8220;field_B_value&#8221; [...]]]></description>
		<link>http://xinspace.com/drupal-views-theming-access-other-fields-value-in-your-field-template/</link>
			</item>
</channel>
</rss>

