<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Diary of an Entrepreneur Web Developer &#187; Technology</title>
	<atom:link href="http://www.cosmocentral.com/category/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cosmocentral.com</link>
	<description></description>
	<lastBuildDate>Thu, 03 Mar 2011 00:37:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>the page cannot be displayed because an internal server error has occurred &#8211; IIS7</title>
		<link>http://www.cosmocentral.com/2010/11/the-page-cannot-be-displayed-because-an-internal-server-error-has-occurred-iis7/</link>
		<comments>http://www.cosmocentral.com/2010/11/the-page-cannot-be-displayed-because-an-internal-server-error-has-occurred-iis7/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 16:48:24 +0000</pubDate>
		<dc:creator>manik</dc:creator>
				<category><![CDATA[Programming / Coding]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.cosmocentral.com/?p=784</guid>
		<description><![CDATA[If you get this error
the page cannot be displayed because an internal server error has occurred
most possible source of error would be something is wrong on your web.config settings.]]></description>
			<content:encoded><![CDATA[<p>If you get this error<br />
the page cannot be displayed because an internal server error has occurred<br />
most possible source of error would be something is wrong on your web.config settings.</p>
<p>here are two causes I found in two different instances that seem to have solved the problem.</p>
<p><strong>Case 1:</strong><br />
In case 1 i had to remove the configSections, httpModules, httpHandler nodes all together from the system.web node.</p>
<p><strong>Case 2:</strong><br />
In case 2 i didnt have the configSections, httpModules, httpHandler  nodes within the system.web node. However the defaultDocument within the  system.webServer was causing the problem.<br />
In this case i initially had it as<br />
&lt;defaultDocument&gt;<br />
&lt;files&gt;<br />
&lt;add value=&#8221;Default.aspx&#8221; /&gt;<br />
&lt;add value=&#8221;index.html&#8221; /&gt;<br />
&lt;/files&gt;<br />
&lt;/defaultDocument&gt;<br />
Apparently the IIS 7 was throwing that error because IIS7 already had those defined for the website.<br />
All i had to do is put a clear before adding any default document. I guess i could remove it all together as well.</p>
<p>___________</p>
<p>From webcosmo webmaster forum <a href="http://www.webcosmoforums.com/asp/24036-page-cannot-displayed-because-internal-server-error-has-occurred-iis7.html">http://www.webcosmoforums.com/asp/24036-page-cannot-displayed-because-internal-server-error-has-occurred-iis7.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cosmocentral.com/2010/11/the-page-cannot-be-displayed-because-an-internal-server-error-has-occurred-iis7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Know Which Version of Silverlight is Installed in Your Computer</title>
		<link>http://www.cosmocentral.com/2010/07/know-which-version-of-silverlight-is-installed-in-your-computer/</link>
		<comments>http://www.cosmocentral.com/2010/07/know-which-version-of-silverlight-is-installed-in-your-computer/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 18:40:16 +0000</pubDate>
		<dc:creator>manik</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Programming / Coding]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.cosmocentral.com/?p=712</guid>
		<description><![CDATA[To know which version of silver is installed in your computer simply go to this page]]></description>
			<content:encoded><![CDATA[<p>To know which version of silver is installed in your computer simply go to this page <a href="http://www.microsoft.com/getsilverlight/get-started/install/default.aspx">http://www.microsoft.com/getsilverlight/get-started/install/default.aspx</a></p>
<p>It will show you the version of silverlight installed in your computer or if not it will show you link to install it. </p>
<p>From Webcosmo Webmaster Forum <a href="http://www.webcosmoforums.com/asp/21219-know-version-silverlight-installed-your-computer.html">http://www.webcosmoforums.com/asp/21219-know-version-silverlight-installed-your-computer.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cosmocentral.com/2010/07/know-which-version-of-silverlight-is-installed-in-your-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Strip HTML Tags &#8211; MS SQL</title>
		<link>http://www.cosmocentral.com/2010/03/strip-html-tags-ms-sql/</link>
		<comments>http://www.cosmocentral.com/2010/03/strip-html-tags-ms-sql/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 18:02:08 +0000</pubDate>
		<dc:creator>manik</dc:creator>
				<category><![CDATA[Programming / Coding]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.cosmocentral.com/?p=642</guid>
		<description><![CDATA[UDF (user defined function) to strip off html tags from a string in MS SQL.]]></description>
			<content:encoded><![CDATA[<p>Here is a UDF (user defined function) to strip off html tags from a  string in MS SQL.</p>
<blockquote><p>CREATE FUNCTION [dbo].[StripHtmlTags]<br />
(<br />
&#8211; Add the parameters for the function here<br />
@HTMLText NVARCHAR(MAX)<br />
)<br />
RETURNS NVARCHAR(MAX)<br />
AS<br />
BEGIN</p>
<p>DECLARE @Start INT<br />
DECLARE @End INT<br />
DECLARE @Length INT</p>
<p>SET @Start = CHARINDEX(&#8216;&lt;&#8217;,@HTMLText)<br />
SET @End = CHARINDEX(&#8216;&gt;&#8217;,@HTMLText,CHARINDEX(&#8216;&lt;&#8217;,@HTMLText))<br />
SET @Length = (@End &#8211; @Start) + 1</p>
<p>WHILE @Start &gt; 0 AND @End &gt; 0 AND @Length &gt; 0<br />
BEGIN<br />
SET @HTMLText = STUFF(@HTMLText,@Start,@Length,&#8221;)<br />
SET @Start = CHARINDEX(&#8216;&lt;&#8217;,@HTMLText)<br />
SET @End = CHARINDEX(&#8216;&gt;&#8217;,@HTMLText,CHARINDEX(&#8216;&lt;&#8217;,@HTMLText))<br />
SET @Length = (@End &#8211; @Start) + 1<br />
END</p>
<p>RETURN LTRIM(RTRIM(@HTMLText))</p>
<p>END</p></blockquote>
<p><strong>Example Use:</strong></p>
<blockquote>
<pre dir="ltr">Execute StripHtmlTags('my &lt;b&gt;html filled&lt;/b&gt; string');
</pre>
</blockquote>
<p>Note: The use of MAX is allowed on MS SQL 2005 or newer versions of MS  SQL servers. To use it with MS SQL versions older then 2005 (e.g. 2000) replace the MAX with a number for example 1500.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cosmocentral.com/2010/03/strip-html-tags-ms-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add an additional ip address in windows server 2003 and 2008</title>
		<link>http://www.cosmocentral.com/2010/01/how-to-add-an-additional-ip-address-in-windows-server-2003-and-2008/</link>
		<comments>http://www.cosmocentral.com/2010/01/how-to-add-an-additional-ip-address-in-windows-server-2003-and-2008/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 19:46:44 +0000</pubDate>
		<dc:creator>manik</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.cosmocentral.com/?p=616</guid>
		<description><![CDATA[If you have a dedicated server and you need to add an additional ip address, first thing to do is request for the additional ip address from the hosting company. Often time they would not hook it with your server, they would just give it to you.]]></description>
			<content:encoded><![CDATA[<p>If you have a dedicated server and you need to add an additional ip address, first thing to do is request for the additional ip address from the hosting company. Often time they would not hook it with your server, they would just give it to you.</p>
<p><strong>So how you add the additional ip address to your windows server?</strong></p>
<p>These steps are for Windows Server 2003.</p>
<ul>
<li>Click on Start button</li>
<li>Open Cotnrol Panel</li>
<li>Open Network connections</li>
<li>Select Local Area Connection (for first Ethernet card)</li>
<li>Right Click and select Properties</li>
<li>Select Internet Protocol (TCP/IP)</li>
<li>Now click on Properties button</li>
<li>Click on Advanced tab</li>
<li>Now you need to add in an IP address section Enter IP details such as IP address, Subnetmask etc</li>
<li>Save the changes and go back to Windows server desktop</li>
</ul>
<p>These steps are for Windows Server 2008.</p>
<ul>
<li>Click on Start button</li>
<li>Open Cotnrol Panel</li>
<li>Click on Network and Sharing Center</li>
<li>Click on Manage Network Connections</li>
<li>Right Click on the active network icon  and select Properties</li>
<li>Select Internet Protocol Version (TCP/IP). There may be more then version. For me there are 4 and 6. Mine one is at 4.</li>
<li>Now click on Properties button</li>
<li>Click on Advanced tab</li>
<li>Now you need to add in an IP address section Enter IP details such as IP address, Subnetmask etc</li>
<li>Save the changes and go back to Windows server desktop</li>
</ul>
<p><strong>After that you need to verifty that new settings are working. This is how you do that:</strong></p>
<ul>
<li>Open command prompt</li>
<li>Click on Start button</li>
<li>Select Run</li>
<li>Type cmd and press enter</li>
<li>Type the following command at DOS prompt: ipconfig /all</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.cosmocentral.com/2010/01/how-to-add-an-additional-ip-address-in-windows-server-2003-and-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maximum Int Value MS SQL</title>
		<link>http://www.cosmocentral.com/2010/01/maximum-int-value-ms-sql/</link>
		<comments>http://www.cosmocentral.com/2010/01/maximum-int-value-ms-sql/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 14:37:24 +0000</pubDate>
		<dc:creator>manik</dc:creator>
				<category><![CDATA[Programming / Coding]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.cosmocentral.com/?p=612</guid>
		<description><![CDATA[When you design database tables care should be taken selecting the type of integer columns. If you predict there is chances to have big numbers on the integer column, consider bigint or int accordingly.]]></description>
			<content:encoded><![CDATA[<p>When you design database tables care should be taken selecting the type of integer columns. If you predict there is chances to have big numbers on the integer column, consider bigint or int accordingly. Of course there are performance issues involved to consider.</p>
<p>Here are the maximum int value in MS SQL server.</p>
<p><strong>bigInt</strong> -9223372036854775808 through 9223372036854775807 (8 bytes)<br />
<strong>int</strong> -2147483648 through 2147483647 (4 bytes)<br />
<strong>smallInt</strong> -32768 through 32767 (2 bytes)<br />
<strong>tinyInt</strong> 0 through 255 (1 byte)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cosmocentral.com/2010/01/maximum-int-value-ms-sql/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>payment_status value in Paypal Sandbox always pending</title>
		<link>http://www.cosmocentral.com/2009/07/payment_status-value-in-paypal-sandbox-always-pending/</link>
		<comments>http://www.cosmocentral.com/2009/07/payment_status-value-in-paypal-sandbox-always-pending/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 17:59:49 +0000</pubDate>
		<dc:creator>manik</dc:creator>
				<category><![CDATA[Programming / Coding]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[paypal developer]]></category>

		<guid isPermaLink="false">http://www.cosmocentral.com/?p=539</guid>
		<description><![CDATA[I was working with the Paypal sandbox to test a Paypal application for a client. I was using IPN for the payment notification from PayPal so I could update member record on database. While testing I was getting the payment_status value Pending. ]]></description>
			<content:encoded><![CDATA[<p>I was working with the Paypal sandbox to test a Paypal application for a client. I was using IPN for the payment notification from PayPal so I could update member record on database. While testing I was getting the payment_status value Pending.  I played with the sandbox account after I created it, so things might have got messed up. After searching these steps below seem to have solved the problem getting me payment_status value Completed.</p>
<p><span>1. Login to your Developer Central.</span></p>
<p><span>2. Click on Test Accounts tab on the left.</span> You should have created these test accounts for testing on Sandbox.</p>
<p><span>3. Find the column &#8216;Payment Review&#8217;.</span></p>
<p><span>4. Find the sandbox account you are using  and click on &#8220;Enabled&#8221; in the &#8216;Payment Review&#8217; column.</span></p>
<p><span>5. This should change to &#8220;Disabled&#8221; and now payments funded from your balance and credit card will complete instantly.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cosmocentral.com/2009/07/payment_status-value-in-paypal-sandbox-always-pending/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Google &amp; Twitter Drama: Winner is Twitter and Looser is FaceBook</title>
		<link>http://www.cosmocentral.com/2009/04/google-twitter-drama-winner-is-twitter-and-looser-is-facebook/</link>
		<comments>http://www.cosmocentral.com/2009/04/google-twitter-drama-winner-is-twitter-and-looser-is-facebook/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 03:29:02 +0000</pubDate>
		<dc:creator>manik</dc:creator>
				<category><![CDATA[Advertising / Marketing]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.cosmocentral.com/?p=489</guid>
		<description><![CDATA[There are a lot of rumor around regarding Google and Twitter. Some tech news websites are reporting Google buying Twitter, some reporting Google and Twitter partnering together. Its all started when Google created an account at Twitter.No matter what its a win-win situation for  Twitter.
Twitter gets the most out of this:

 Free news coverage from the rumor. This is a damn smart marketing trick. This &#8220;Rumor Game&#8221; worked pretty good getting Twitter a huge momentum.
 Solid income for Twitter if they partner with Google. Even if Twitter eventually gets no ...]]></description>
			<content:encoded><![CDATA[<div id="post_message_65640">There are a lot of rumor around regarding Google and Twitter. Some tech news websites are reporting Google buying Twitter, some reporting Google and Twitter partnering together. Its all started when Google created an account at Twitter.No matter what its a win-win situation for  Twitter.</p>
<p><strong>Twitter gets the most out of this:</strong></p>
<ul>
<li> Free news coverage from the rumor. This is a damn smart marketing trick. This &#8220;<strong>Rumor Game</strong>&#8221; worked pretty good getting Twitter a huge momentum.</li>
<li> Solid income for Twitter if they partner with Google. Even if Twitter eventually gets no deal with Google their income would increase several times more then what they earn now, just from the huge number of new users they would be getting.</li>
</ul>
<p>FaceBook had huge momentum last few years. People just loved it. Now with this <strong>Google Twitter Rumor Game</strong> Twitter can take away a big part of the spotlight. I would not even be surprised if Google and Twitter planned this whole thing against FaceBook.</p>
<p><strong>Marketing Lesson For Us:</strong></p>
<p>This is a very classic example how rumor can be utilized for marketing.</p></div>
<p><!-- / message --> <!-- sig --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cosmocentral.com/2009/04/google-twitter-drama-winner-is-twitter-and-looser-is-facebook/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Online Crime Becoming Big Issue</title>
		<link>http://www.cosmocentral.com/2009/03/online-crime-becoming-big-issue/</link>
		<comments>http://www.cosmocentral.com/2009/03/online-crime-becoming-big-issue/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 22:52:15 +0000</pubDate>
		<dc:creator>manik</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.cosmocentral.com/?p=468</guid>
		<description><![CDATA[With bad economy looming around the world cyber crime seem to be becoming a bigger problem. In 2008 online crime increased by 33% over the year before, 2007.
2008   $264.6 Million
2007   $239.1 Million
&#8230;&#8230;&#8230;.
2001   $18 Million
What a jump from 2001 to 2008.
The most common complaint of 2008 was non-delivery of promised merchandise, followed by auction fraud, credit card fraud and investment scams, according to the report.
Scammers in the United States comprised 66 percent of complaints referred to authorities, followed by Britain at 11 percent, Nigeria 7.5 percent, Canada 3 percent and ...]]></description>
			<content:encoded><![CDATA[<p>With bad economy looming around the world cyber crime seem to be becoming a bigger problem. In 2008 online crime increased by 33% over the year before, 2007.</p>
<p>2008   $264.6 Million<br />
2007   $239.1 Million<br />
&#8230;&#8230;&#8230;.<br />
2001   $18 Million</p>
<p>What a jump from 2001 to 2008.</p>
<p>The most common complaint of 2008 was non-delivery of promised merchandise, followed by auction fraud, credit card fraud and investment scams, according to the report.</p>
<p>Scammers in the United States comprised 66 percent of complaints referred to authorities, followed by Britain at 11 percent, Nigeria 7.5 percent, Canada 3 percent and China 1.6 percent. Within the United States, the bulk originated in California (16 percent), followed by New York and Florida.</p>
<p>This problem will become a serious issue in near future. Because of weak laws, or less application of laws online crime is a favorite to many. And this thing not gonna go down, with more money rolling in the internet worst to come yet. Authorities all over the world should start acting fast on this issue before it gets out of hand.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cosmocentral.com/2009/03/online-crime-becoming-big-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FireFox Would be Attacked More and More in Coming Days</title>
		<link>http://www.cosmocentral.com/2009/03/firefox-would-be-attacked-more-and-more-in-coming-days/</link>
		<comments>http://www.cosmocentral.com/2009/03/firefox-would-be-attacked-more-and-more-in-coming-days/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 00:03:44 +0000</pubDate>
		<dc:creator>manik</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.cosmocentral.com/?p=464</guid>
		<description><![CDATA[Recently FireFox been enjoying substantial growth in number of users. IE the opposite, just slipping more down by the percentage of users using it.
With the number of users growing for FireFox, there is another problem surfacing; attack.
When IE dominated more then 80% of the browser marketshare not much hackers care about FireFix, because there been less stake in it. Now that things are changing, hackers seem to be getting more and more interested in FireFox. Recently there was a unpatched flaw detected in  FireFox which is to be fixed next ...]]></description>
			<content:encoded><![CDATA[<p>Recently FireFox been enjoying substantial growth in number of users. IE the opposite, just slipping more down by the percentage of users using it.</p>
<p>With the number of users growing for FireFox, there is another problem surfacing; attack.</p>
<p>When IE dominated more then 80% of the browser marketshare not much hackers care about FireFix, because there been less stake in it. Now that things are changing, hackers seem to be getting more and more interested in FireFox. Recently there was a unpatched flaw detected in  FireFox which is to be fixed next week. I guess in coming days FireFox would enjoy much more attacks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cosmocentral.com/2009/03/firefox-would-be-attacked-more-and-more-in-coming-days/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Economic Recession, How Would Webmasters Survive?</title>
		<link>http://www.cosmocentral.com/2009/03/economic-recession-how-should-webmasters-survive/</link>
		<comments>http://www.cosmocentral.com/2009/03/economic-recession-how-should-webmasters-survive/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 00:41:32 +0000</pubDate>
		<dc:creator>manik</dc:creator>
				<category><![CDATA[Making Money]]></category>
		<category><![CDATA[My Business News]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.cosmocentral.com/?p=456</guid>
		<description><![CDATA[Bad economy seem to be effecting everybody in some ways, webmasters included. I used to earn enough money from the websites that gave me flexibility to run my sites covering costs for marketing, hosting etc.
Last two months incomes been down by 40%! One of the factors effected my income is change of hosting for my best earning site; it caused the site not working properly for about a month. Then bad economy added up.
How do you survive in bad economy? After giving some thought I went for the basics, cut ...]]></description>
			<content:encoded><![CDATA[<p>Bad economy seem to be effecting everybody in some ways, webmasters included. I used to earn enough money from the websites that gave me flexibility to run my sites covering costs for marketing, hosting etc.</p>
<p>Last two months incomes been down by 40%! One of the factors effected my income is change of hosting for my best earning site; it caused the site not working properly for about a month. Then bad economy added up.</p>
<p>How do you survive in bad economy? After giving some thought I went for the basics,<strong> cut down expenses</strong>. I minimized the marketing for sites that earn less. Then I have some employees I had to let go. Now I am earning close the expenses, although I am still covering some costs from my own pocket. Its time for duck now waiting to get things better.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cosmocentral.com/2009/03/economic-recession-how-should-webmasters-survive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

