<?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>Pixel Insert</title>
	<atom:link href="http://pixert.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://pixert.com</link>
	<description>DESIGN . DEVELOP . PUBLISH</description>
	<lastBuildDate>Sun, 07 Feb 2010 05:08:00 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Add Get Shortlink in P2</title>
		<link>http://pixert.com/how-to-add-get-shortlink-in-p2/</link>
		<comments>http://pixert.com/how-to-add-get-shortlink-in-p2/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 05:02:01 +0000</pubDate>
		<dc:creator>katemag</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://pixert.com/?p=732</guid>
		<description><![CDATA[What&#8217;s P2 and wp.me?
 P2 is a theme from Automattic (WP mothership) team that transforms a mild-mannered blog into a super-blog with features like inline comments on the homepage, a posting form right on the homepage, inline editing of posts and comments, real-time updates so new posts and comments come in without reloading, and much [...]]]></description>
			<content:encoded><![CDATA[<p>What&#8217;s P2 and wp.me?<br />
<a href="http://p2theme.com/"> P2</a> is a theme from Automattic (WP mothership) team that transforms a mild-mannered blog into a super-blog with features like inline comments on the homepage, a posting form right on the homepage, inline editing of posts and comments, real-time updates so new posts and comments come in without reloading, and much more (as written on P2&#8217;s website <img src='http://pixert.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> )</p>
<p><a href="http://en.blog.wordpress.com/2009/08/14/shorten/">wp.me</a> is a shortURL service from Automattic. <a title="Matt Mullenweg" href="http://ma.tt">Matt</a>, father of WordPress said &#8220;it’s a short link, about 70% smaller than the permalink for this post. WP.me is the only two-letter .me domain in the world.Every blog and post on WordPress.com has a WP.me URL now. These are all exposed in the  using rel=shortlink. It doesn’t work for any URL in the world, just WP.com-hosted ones. The links are permanent, they will work as long as WordPress.com is around.WP.me is spam-free, because we are constantly monitoring and removing spam from WP.com&#8221;</p>
<p>Automattic added Get Shortlink to WordPress,where is it exactly? Matt also said a “Get Shortlink” button next to your permalink when you edit or write a post, and when you click it you’ll get a popup with the beautiful link already highlighted for your copy and pasting pleasure.</p>
<p>Back to P2 idea, i found that P2 is a great theme to communicate between team members or company employees, It has in-front UI for add/edit posts, reply comments, however no Get Shorlink?</p>
<p>I had an idea to add wp.me or Get Shortlink to P2 theme in early January. No wp.me shortlink tool in that theme at the time (or still ?) I spent some amount of time for a fun modification</p>
<p>First, install <a href="http://wordpress.org/extend/plugins/stats/">WordPress.com Stats</a> plugin or known as wp stats plugin<br />
After that, lets get our hands dirty with code</p>
<p>1. Open entry.php and add</p>
<blockquote><p>if ( function_exists(&#8216;get_shortlink&#8217;) ) : ?&gt; | &lt;a href=&#8221;" rel=&#8221;shortlink&#8221;&gt;Shortlink&lt;/a&gt;else : endif;<a class="shortlink" rel="shortlink"></a></p></blockquote>
<p>Add it below</p>
<blockquote><p>if ( current_user_can(&#8216;edit_post&#8217;, get_the_id() ) ) :</p></blockquote>
<p>This means you <strong>only use that when you logged i</strong>n.<br />
<strong>Why did I add Shortlink only for logged in users? because we are going to show Shortlink in same area with Edit Post, when you click Edit it will pop-up editor box under content in P2.</strong></p>
<p>2. Add a function to show Shortlink in AJAX way<br />
Open inc folder, edit ajax.php. Find line 5, where the class P2Ajax is. Add below function inside class P2Ajax {</p>
<blockquote><p>function get_shortlink_ajax() {<br />
check_ajax_referer(&#8216;ajaxnonce&#8217;,'_inline_edit&#8217;);<br />
if ( function_exists(&#8216;get_shortlink&#8217;) ) :<br />
$post_id = $_GET['post_ID'];<br />
$post_id = substr( $post_id, strpos( $post_id, &#8216;-&#8217; ) + 1 );<br />
echo get_shortlink($post_id);<br />
else :<br />
endif;<br />
}</p></blockquote>
<p>3. Last step is the most difficult step. I added a function for AJAX but it wont work with step 3.<br />
Still in same folder, that&#8217;s inc folder, now open p2.js<br />
Go to line 406, where you see this code</p>
<blockquote><p>case &#8220;post&#8221; :<br />
var thisPostEditArea;<br />
if (inlineEditPosts != 0 &amp;&amp; isUserLoggedIn) {<br />
thisPostEditArea = $(element).children(&#8216;div.editarea&#8217;);<br />
thisPostEditArea.editable(ajaxUrl, {event: &#8216;edit&#8217;,loadurl: ajaxUrl + &#8216;?action=prologue_load_post&amp;_inline_edit=&#8217; + nonce,<br />
id: &#8216;post_ID&#8217;, name: &#8216;content&#8217;, type: &#8216;autogrow&#8217;, cssclass: &#8216;textedit&#8217;,rows: &#8216;3&#8242;,<br />
indicator : &#8221;, loadtext: p2txt.loading,<br />
cancel: p2txt.cancel, submit: p2txt.save, tooltip   : &#8221;, width: &#8216;90%&#8217;, onblur: &#8216;ignore&#8217;,<br />
submitdata: {action:&#8217;prologue_inline_save&#8217;, _inline_edit: nonce}});</p>
<p>$(element).find(&#8216;a.post-edit-link&#8217;).click(function() {<br />
thisPostEditArea.trigger(&#8220;edit&#8221;);<br />
return false;<br />
});<br />
}</p></blockquote>
<p>Add below code after above lines,</p>
<blockquote><p>var thisShortLinkArea;<br />
if (inlineEditPosts != 0 &amp;&amp; isUserLoggedIn) {<br />
thisShortLinkArea = $(element).children(&#8216;div.editarea&#8217;);<br />
thisShortLinkArea.editable(ajaxUrl, {event: &#8217;shortlink&#8217;,loadurl: ajaxUrl + &#8216;?action=prologue_load_post&amp;_inline_edit=&#8217; + nonce,<br />
id: &#8216;post_ID&#8217;, name: &#8217;shortlink&#8217;, type: &#8216;autogrow&#8217;, cssclass: &#8216;textedit&#8217;,rows: &#8216;3&#8242;,<br />
indicator : &#8221;, loadtext: p2txt.loading,<br />
cancel: p2txt.cancel, tooltip   : &#8221;, width: &#8216;90%&#8217;, onblur: &#8216;ignore&#8217;});<br />
$(element).find(&#8216;a.shortlink&#8217;).click(function() {<br />
thisShortLinkArea.trigger(&#8220;shortlink&#8221;);<br />
return false;<br />
});<br />
}</p></blockquote>
<p><strong>Go to line 488, change </strong></p>
<p><strong> </strong></p>
<blockquote><p>if ((inlineEditPosts || inlineEditComments ) &amp;&amp; isUserLoggedIn) {</p></blockquote>
<p>to</p>
<blockquote><p>if ((inlineEditPosts || inlineShortLink || inlineEditComments ) &amp;&amp; isUserLoggedIn) {</p></blockquote>
<p>Go to line 558, where you see this code</p>
<blockquote><p>if (inlineEditPosts &amp;&amp; isUserLoggedIn) {<br />
$(&#8216;div.editarea&#8217;).editable(ajaxUrl, {event: &#8217;shortlink&#8217;, loadurl: ajaxUrl + &#8216;?action=prologue_load_post&amp;_inline_edit=&#8217; + nonce,<br />
id: &#8216;post_ID&#8217;, name: &#8217;shortlink&#8217;, type: &#8216;autogrow&#8217;, cssclass: &#8216;textedit&#8217;, rows: &#8216;3&#8242;,<br />
indicator : &#8216;/&gt;&#8217;, loadtext: p2txt.loading, cancel: p2txt.cancel,tooltip   : &#8221;, width: &#8216;90%&#8217;, onblur: &#8216;ignore&#8217;,});<br />
$(&#8216;#main a.shortlink&#8217;).click(function() {<br />
$(this).parents(&#8216;li&#8217;).children(&#8216;div.editarea&#8217;).trigger(&#8220;shortlink&#8221;);<br />
return false;<br />
});<br />
}</p></blockquote>
<p>Add below code after above lines</p>
<blockquote><p>if (inlineEditComments &amp;&amp; isUserLoggedIn) {<br />
$(&#8216;div.comment-edit&#8217;).editable(ajaxUrl, {event: &#8216;edit&#8217;,loadurl: ajaxUrl + &#8216;?action=prologue_load_comment&amp;_inline_edit=&#8217; + nonce,<br />
id: &#8216;comment_ID&#8217;,name: &#8216;comment_content&#8217;, type    : &#8216;autogrow&#8217;, cssclass: &#8216;textedit&#8217;, rows: &#8216;3&#8242;,<br />
indicator : &#8216;&gt;&#8217;, loadtext: p2txt.loading, cancel: p2txt.cancel, submit: p2txt.save,<br />
tooltip: &#8221;,  width: &#8216;90%&#8217;, submitdata: {action:&#8217;prologue_inline_comment_save&#8217;, _inline_edit: nonce} } );<br />
$(&#8216;a.comment-edit-link&#8217;).click(function() {<br />
$(this).parents(&#8216;h4&#8242;).next(&#8216;div.comment-edit&#8217;).trigger(&#8220;edit&#8221;);<br />
return false;<br />
});<br />
}</p></blockquote>
<p>Open folder js, edit p2.js.<br />
Go to line 472</p>
<blockquote><p>var thisPostEditArea;<br />
if (inlineEditPosts != 0 &amp;&amp; isUserLoggedIn) {<br />
thisPostEditArea = $(element).children(&#8216;div.editarea&#8217;);<br />
thisPostEditArea.editable(ajaxUrl, {event: &#8216;edit&#8217;, loadurl: ajaxUrl + &#8216;&amp;action=get_post&amp;_inline_edit=&#8217; + nonce,<br />
id: &#8216;post_ID&#8217;, name: &#8216;content&#8217;, type: &#8216;autogrow&#8217;, cssclass: &#8216;textedit&#8217;,rows: &#8216;3&#8242;,<br />
indicator : &#8221;, loadtext: p2txt.loading,<br />
cancel: p2txt.cancel, submit: p2txt.save, tooltip   : &#8221;, width: &#8216;90%&#8217;, onblur: &#8216;ignore&#8217;,<br />
submitdata: {action:&#8217;save_post&#8217;, _inline_edit: nonce}});<br />
jQuery(element).find(&#8216;a.post-edit-link&#8217;).click(function() {<br />
thisPostEditArea.trigger(&#8216;edit&#8217;);<br />
return false;<br />
});<br />
}</p></blockquote>
<p>Add below code after above lines,</p>
<blockquote><p>var thisShortLinkArea;<br />
if (inlineEditPosts != 0 &amp;&amp; isUserLoggedIn) {<br />
thisShortLinkArea = $(element).children(&#8216;div.editarea&#8217;);<br />
thisShortLinkArea.editable(ajaxUrl, {event: &#8217;shortlink&#8217;, loadurl: ajaxUrl + &#8216;&amp;action=get_shortlink_ajax&amp;_inline_edit=&#8217; + nonce,<br />
id: &#8216;post_ID&#8217;, name: &#8217;shortlink&#8217;, type: &#8216;autogrow&#8217;, cssclass: &#8216;textedit&#8217;,rows: &#8216;3&#8242;,<br />
indicator : &#8221;, loadtext: p2txt.loading,<br />
cancel: p2txt.cancel, tooltip   : &#8221;, width: &#8216;90%&#8217;, onblur: &#8216;ignore&#8217;});<br />
jQuery(element).find(&#8216;a.shortlink&#8217;).click(function() {<br />
thisShortLinkArea.trigger(&#8217;shortlink&#8217;);<br />
return false;<br />
});<br />
}</p></blockquote>
<p>After that, go to line 614, where you see this code</p>
<blockquote><p>// Bind actions to comments and posts<br />
if (inlineEditPosts &amp;&amp; isUserLoggedIn) {<br />
$(&#8216;a.post-edit-link&#8217;).live( &#8216;click&#8217; , function() {<br />
$(&#8216;div.editarea&#8217;).editable(ajaxUrl, {event: &#8216;edit&#8217;, loadurl: ajaxUrl + &#8216;&amp;action=get_post&amp;_inline_edit=&#8217; + nonce,<br />
id: &#8216;post_ID&#8217;, name: &#8216;content&#8217;, type: &#8216;autogrow&#8217;, cssclass: &#8216;textedit&#8217;, rows: &#8216;3&#8242;,<br />
indicator : &#8221;, loadtext: p2txt.loading, cancel: p2txt.cancel,<br />
submit  : p2txt.save, tooltip   : &#8221;, width: &#8216;90%&#8217;, onblur: &#8216;ignore&#8217;,<br />
submitdata: {action:&#8217;save_post&#8217;, _inline_edit: nonce}});</p>
<p>$(this).parents(&#8216;li&#8217;).children(&#8216;div.editarea&#8217;).trigger(&#8220;edit&#8221;);<br />
return false;<br />
});<br />
}</p></blockquote>
<p>Add below code after above lines,</p>
<blockquote><p>if (inlineEditPosts &amp;&amp; isUserLoggedIn) {<br />
$(&#8216;a.shortlink&#8217;).live( &#8216;click&#8217; , function() {<br />
$(&#8216;div.editarea&#8217;).editable(ajaxUrl, {event: &#8217;shortlink&#8217;, loadurl: ajaxUrl + &#8216;&amp;action=get_shortlink_ajax&amp;_inline_edit=&#8217; + nonce,<br />
id: &#8216;post_ID&#8217;, name: &#8217;shortlink&#8217;, type: &#8216;autogrow&#8217;, cssclass: &#8216;textedit&#8217;, rows: &#8216;3&#8242;,<br />
indicator : &#8221;, loadtext: p2txt.loading, cancel: p2txt.cancel,<br />
tooltip   : &#8221;, width: &#8216;90%&#8217;, onblur: &#8216;ignore&#8217;});<br />
$(this).parents(&#8216;li&#8217;).children(&#8216;div.editarea&#8217;).trigger(&#8220;shortlink&#8221;);<br />
return false;<br />
});<br />
}</p></blockquote>
<p><a href="http://www.pixert.com/p2/">View P2 with Get Shortlink demo</a> (it also uses Private Only plugin)<br />
Username: user01<br />
Password: 123456</p>
]]></content:encoded>
			<wfw:commentRss>http://pixert.com/how-to-add-get-shortlink-in-p2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Private Only 1.6</title>
		<link>http://pixert.com/private-only-16/</link>
		<comments>http://pixert.com/private-only-16/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 16:01:24 +0000</pubDate>
		<dc:creator>katemag</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Portofolio]]></category>

		<guid isPermaLink="false">http://pixert.com/?p=718</guid>
		<description><![CDATA[I updated the Private Only plugin in early January. It uploaded to WordPress plugin repository same time.
What is Private Only plugin?
Private Only will redirect all users who aren&#8217;t logged in to the login form where they are shown a user-friendly message It also block Feeds&#8221;
It is compatible up to WordPress 2.9.1 with new features been [...]]]></description>
			<content:encoded><![CDATA[<p>I updated the Private Only plugin in early January. It uploaded to WordPress plugin repository same time.</p>
<p>What is Private Only plugin?<br />
Private Only will redirect all users who aren&#8217;t logged in to the login form where they are shown a user-friendly message It also block Feeds&#8221;</p>
<p>It is compatible up to WordPress 2.9.1 with new features been added to that version, blocked RSS Feed (which was leaked on early version, i fixed that) and Custom Login, you can change background page, login form, disable wordpress logo, button Log  In text color.</p>
<p>Download on <a title="Plugin Only 1.6" href="http://wordpress.org/extend/plugins/private-only/">wordpress.org plugin directory</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pixert.com/private-only-16/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Casamari</title>
		<link>http://pixert.com/casamari/</link>
		<comments>http://pixert.com/casamari/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 06:40:30 +0000</pubDate>
		<dc:creator>katemag</dc:creator>
				<category><![CDATA[Portofolio]]></category>

		<guid isPermaLink="false">http://pixert.com/?p=711</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://pixert.com/casamari/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Year Wallpaper from Pixert</title>
		<link>http://pixert.com/new-year-wallpaper-from-pixert/</link>
		<comments>http://pixert.com/new-year-wallpaper-from-pixert/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 12:12:47 +0000</pubDate>
		<dc:creator>katemag</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://pixert.com/?p=243</guid>
		<description><![CDATA[I made a wallpaper for your PC or Mac and iPhone. The wallpaper was inspired by Abduzeedo. 
Download for PC/Mac
1024&#215;768


1900&#215;1200


iPhone version


Wishing you all a joyous holiday season!
]]></description>
			<content:encoded><![CDATA[<p>I made a wallpaper for your PC or Mac and iPhone. The wallpaper was inspired by Abduzeedo. </p>
<p>Download for PC/Mac<br />
1024&#215;768<br />
<a href="http://pixert.com/wp-content/uploads/2009/12/bokehlight1024x768.jpg"><img src="http://pixert.com/wp-content/uploads/2009/12/bokehlight1024x768-300x189.jpg" alt="" title="New Year 2010 Wallpaper 1024x768" width="300" height="189" class="alignleft size-medium wp-image-244" /></a></p>
<div style="clear: both"></div>
<p>1900&#215;1200<br />
<a href="http://pixert.com/wp-content/uploads/2009/12/bokehlight1900x1200.jpg"><img src="http://pixert.com/wp-content/uploads/2009/12/bokehlight1900x1200-300x189.jpg" alt="" title="New Year 2010 Wallpaper 1900x1200" width="300" height="189" class="alignleft size-medium wp-image-245" /></a></p>
<div style="clear: both"></div>
<p>iPhone version<br />
<a href="http://pixert.com/wp-content/uploads/2009/12/bokehlightiphone.jpg"><img src="http://pixert.com/wp-content/uploads/2009/12/bokehlightiphone-200x300.jpg" alt="" title="New Year 2010 Wallpaper iPhone" width="200" height="300" class="alignleft size-medium wp-image-246" /></a></p>
<div style="clear: both"></div>
<p>Wishing you all a joyous holiday season!</p>
]]></content:encoded>
			<wfw:commentRss>http://pixert.com/new-year-wallpaper-from-pixert/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Silly Connection Timed Out on FileZilla</title>
		<link>http://pixert.com/silly-connection-timed-out-on-filezilla/</link>
		<comments>http://pixert.com/silly-connection-timed-out-on-filezilla/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 12:35:54 +0000</pubDate>
		<dc:creator>katemag</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://pixert.com/?p=236</guid>
		<description><![CDATA[I got this all the time when connection was slow and more than 100K files must be uploaded to servers. 
The error, Connection Timed Out popped up in the middle of upload process, sometime was after progress bar showed 100%.
No, it wasn&#8217;t the server caused the problem. That wasn&#8217;t Passive Connection problem, which also can [...]]]></description>
			<content:encoded><![CDATA[<p>I got this all the time when connection was slow and more than 100K files must be uploaded to servers. </p>
<p>The error, Connection Timed Out popped up in the middle of upload process, sometime was after progress bar showed 100%.</p>
<p>No, it wasn&#8217;t the server caused the problem. That wasn&#8217;t Passive Connection problem, which also can cause Connection Timed Out. This small problem can trick you. You think the server do it, but it isn&#8217;t when you are sure with your server.</p>
<p>It was FileZilla. The solution is simple. Open FileZilla > Edit > Settings > Timeout in seconds, default is 20, change it to higher value like 300 > OK</p>
<p>Simple. isn&#8217;t it?</p>
]]></content:encoded>
			<wfw:commentRss>http://pixert.com/silly-connection-timed-out-on-filezilla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix Internet Sharing with Win XP</title>
		<link>http://pixert.com/how-to-fix-internet-sharing-with-win-xp/</link>
		<comments>http://pixert.com/how-to-fix-internet-sharing-with-win-xp/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 14:55:48 +0000</pubDate>
		<dc:creator>katemag</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://pixert.com/?p=279</guid>
		<description><![CDATA[This is my last article for 2009. I have two computers connected to a router, they all shared same internet connection. One day, router blocked the internet without no warning.
I tried to re-setup ICS Wizard in router and main network adapters in router and client computers, Network Connections > right-clicked Local Area Connection, Properties > [...]]]></description>
			<content:encoded><![CDATA[<p>This is my last article for 2009. I have two computers connected to a router, they all shared same internet connection. One day, router blocked the internet without no warning.</p>
<p>I tried to re-setup ICS Wizard in router and main network adapters in router and client computers, Network Connections > right-clicked Local Area Connection, Properties > Internet Protocol > Properties, type the IP Address, Subnet Mask, Default Gateway. Note: only router has empty Default Gateway</p>
<p>FYI, Local Area Connection use local IP address, its Subnet Mask and local Default Gateway. You can use range 192.168.0.1 &#8211; 192.168.0.255 or 192.168.1.1-192.168.1.255.</p>
<p>Microsoft Documentations tells you to use range 192.168.0.1 &#8211; 192.168.0.255, because ICS Wizard likely to setup that range.<br />
You can read how to setup ICS or in short term, Internet Sharing <a href="http://support.microsoft.com/kb/306126">here</a>. My experience below could be used for both range of IPs</p>
<p>I won&#8217;t explain ICS Wizard again, because that isn&#8217;t subject of the article. This article for you who have problems with Internet Sharing, which you did setup and did work well before problem arise.</p>
<p>Re-setup didn&#8217;t help. I concluded it must be something unrelated with Network that may blocked the internet sharing. That&#8217;s virus or worm. I scanned all three computers using Avira AntiVir Personal. No virus or worm in scan results. Then I realized the Avira was going to be expired. I removed Avira from all computers. I did scan the computers, no need to worry about virus and worm. Of course, before you remove Avira, you should check quarantine folder, because some anti-virus could release them sometimes. Delete whatever in quarantine folder</p>
<p>I also did reset IE,  Internet Explorer controlled Internet Online/Offline behavior when no setup proxy in Firefox, Chrome, Opera or other browsers, even Yahoo Messenger affected by IE. Go to Tools on Menu bar > Internet Options > Advanced > Reset Internet Explorer Settings > Reset, follow instructions on the screen</p>
<p>Next, I ran a set of commands to clear and flush WinSock (run this on router and clients),<br />
netsh winsock reset<br />
netsh int ip reset reset.log<br />
netsh winsock reset catalog<br />
ipconfig /flushdns<br />
ipconfig /renew</p>
<p>Press enter after each command.</p>
<p>Reboot the computers and see if that makes a difference if not then it could either be a corrupt registry file or firewall problem (If that&#8217;s registry, i suggest to re-install Win XP. If that&#8217;s firewall, disable WinXP firewall)</p>
<p>After reboot, i did setup router and client computers IP Addresses, Subnet Masks and Default Gateways. Default Gateway IPs in clients must use Router IP Address (router doesn&#8217;t have Default Gateway)</p>
<p>Now, last but important setup DNS to router IP Address<br />
After everything okay, you can install Avira back again</p>
]]></content:encoded>
			<wfw:commentRss>http://pixert.com/how-to-fix-internet-sharing-with-win-xp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crafty Cart 2.0 Beta 1 : The Process</title>
		<link>http://pixert.com/crafty-cart-2-0-beta-the-process/</link>
		<comments>http://pixert.com/crafty-cart-2-0-beta-the-process/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 01:08:34 +0000</pubDate>
		<dc:creator>katemag</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://pixert.com/?p=211</guid>
		<description><![CDATA[Instinct asked me to update a famous WordPress theme, Crafty Cart.  They needed Crafty Cart to be compatible with the latest version of  WordPress and WP E-Commerce, new DropShop look and fixed other bugs on the theme.
It was a fun project and I learnt more about WP E-Commerce, in case you don’t know, WP E-Commerce made [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Instinct" href="http://www.instinct.co.nz">Instinct</a> asked me to update a famous WordPress theme, Crafty Cart.  They needed Crafty Cart to be compatible with the latest version of  WordPress and <a title="WP E-Commerce" href="http://www.instinct.co.nz/e-commerce/">WP E-Commerce</a>, new DropShop look and fixed other bugs on the theme.</p>
<p>It was a fun project and I learnt more about WP E-Commerce, in case you don’t know, <a title="WP E-Commerce" href="http://www.instinct.co.nz/e-commerce/">WP E-Commerce</a> made by <a title="Instinct" href="http://www.instinct.co.nz">Instinct</a>. I’ve been using WP E-Commerce for <a title="Pixert's Portfolio" href="http://pixert.com/portfolio/">clients</a>. It’s an easy to use e-commerce plugin for WordPress. I recommend you to use it for any e-commerce site with WordPress.</p>
<p>When I started the project, I realized the theme is already great. It looks like a quick and easy project, just look and update it, but in this case, i want to go through the theme, make sure it’s fit with what Dan asked.</p>
<p>I installed the theme on Fresh WordPress 2.8.2 installation with WP E-commerce 2.7.2. I found bugs on WP E-Commerce that day, reported it back to Dan Milward, then ran through all features in Crafy Cart. I was taking note of features need to be updated. I ran theme on three browsers, Safari 3, Firefox 3 and IE7. I wanted to make sure the theme works on 3 premium browsers. One bug related to browsers compatibility was headers, it was showing odd alphabets on Safari. Other bugs mostly minors.</p>
<p>New Drop Shop look was the most challenging. I was trying to change Drop Shop position from default (horizontal on footer) to vertical position on right side. Why did I do that? It because the default position blocked footer.  At the end of project, we liked the<a title="Drop Shop " href="http://pixert.com/wp-content/uploads/2009/12/ppcclight.png" target="_blank"> default position</a> . I also changed backgrounds for <a title="Light Drop Shop" href="http://pixert.com/wp-content/uploads/2009/12/ppcclight.png" target="_blank">light</a> and <a title="Dark Drop Shop" href="http://pixert.com/wp-content/uploads/2009/12/ppccdark.png" target="_blank">dark</a> Drop Shop, created two new stylesheet for them, these new styles are included with Craft Cart final product. Not just that, I also made a neat effect where there’s a link under Shopping Cart to show and hide drop shop to allows people see footer, this feature isn&#8217;t availabe for final product (feel free to contact me for Crafty Cart mods). <a title="Drop Shop" href="http://www.instinct.co.nz/shop/">Drop shop</a> is a shopping cart with neat effect on <a title="WP E-Commerce" href="http://www.instinct.co.nz/e-commerce/">WP E-Commerce</a>. It makes possible for your shoppers to drag and drop your goods onto it. When I delivered the Crafty Cart, it had 3 choices of Drop Shop positions, default, vertical (under sidebar), on fly. Only one make it to final product, that&#8217;s default</p>
<p><a href="http://pixert.com/wp-content/uploads/2009/12/ppcclight.png"><img class="alignnone size-full wp-image-216" title="Light Drop Shop (Full)" src="http://pixert.com/wp-content/uploads/2009/12/ppcclight.png" alt="Light Drop Shop (Full)" width="500" height="320" /></a></p>
<p>Besides Drop Shop, my task was to update <a title="Product Slider" href="http://pixert.com/wp-content/uploads/2009/12/pscc.png" target="_blank">Product Slider</a> to be compatible with Crafty Craft. Drop Shop and Product Slider are add-on modules for WP E-Commerce. You can buy it at <a title="Gold Cart Shop" href="http://www.instinct.co.nz/shop/">Instinct Gold Cart Shop<br />
</a> <br />
We also did update <a title="Comments Thread" href="http://pixert.com/wp-content/uploads/2009/12/cmcc.png" target="_blank">Crafty Cart comments</a>  to be compatible with WordPress 2.8 or above. Old Crafty Cart used Prior WordPress 2.8 comments functions</p>
<p>See screenshots below. Don&#8217;t forget to download <a title="Download Crafty Cart" href="http://www.instinct.co.nz/blog/2009/10/crafty-cart-2-0-beta/" target="_blank">Crafty Cart 2.0 Beta 1</a>. </p>
<div style="float: left; margin: 0 2px 5px 0;"><a href="http://pixert.com/wp-content/uploads/2009/12/ppcclight.png"><img class="alignnone size-full wp-image-217" title="Light Drop Shop (Thumbnail)" src="http://pixert.com/wp-content/uploads/2009/12/ppcclightthumb.png" alt="Light Drop Shop (Thumbnail)" width="250" height="150" /></a></div>
<div style="float: left; margin: 0 2px 5px 0;"><a href="http://pixert.com/wp-content/uploads/2009/12/ppccdark.png"><img class="alignnone size-full wp-image-215" title="Dark Drop Shop (Thumbnail)" src="http://pixert.com/wp-content/uploads/2009/12/ppccdarkthumb.png" alt="Dark Drop Shop (Thumbnail)" width="250" height="150" /></a></div>
<div style="float: left; margin: 0 2px 5px 0;"><a href="http://pixert.com/wp-content/uploads/2009/12/pscc.png"><img class="alignnone size-full wp-image-219" title="Product Slider (Thumbnail)" src="http://pixert.com/wp-content/uploads/2009/12/psccthumb.png" alt="Product Slider (Thumbnail)" width="250" height="183" /></a></div>
<div style="float: left; margin: 0 2px 5px 0;"><a href="http://pixert.com/wp-content/uploads/2009/12/cmcc.png"><img class="alignnone size-full wp-image-213" title="Comment Thread (Thumbnail)" src="http://pixert.com/wp-content/uploads/2009/12/cmccthumb.png" alt="Comment Thread (Thumbnail)" width="250" height="171" /></a></div>
<div style="clear: both"></div>
]]></content:encoded>
			<wfw:commentRss>http://pixert.com/crafty-cart-2-0-beta-the-process/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remote and Screen Sharing Windows Computer in Mac</title>
		<link>http://pixert.com/remote-and-screen-sharing-windows-computer-in-mac/</link>
		<comments>http://pixert.com/remote-and-screen-sharing-windows-computer-in-mac/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 11:58:26 +0000</pubDate>
		<dc:creator>katemag</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Mac OS]]></category>

		<guid isPermaLink="false">http://pixert.com/?p=266</guid>
		<description><![CDATA[Users whom migrated from Windows to Mac may want the ability to control and share their Windows screens wirelessly in an easy way. This is useful when you were a Windows user or most of work data are on your Windows computer
This how to will show you how to remote a Windows computer, screen sharing [...]]]></description>
			<content:encoded><![CDATA[<p>Users whom migrated from Windows to Mac may want the ability to control and share their Windows screens wirelessly in an easy way. This is useful when you were a Windows user or most of work data are on your Windows computer</p>
<p>This how to will show you how to remote a Windows computer, screen sharing it in Mac with WiFI connection or with Ethernet available</p>
<h3>Setup Remote Desktop Connection</h3>
<p>First thing you need a software to connect Mac with Windows, Remote Desktop Connection Client. <a title="Remote Desktop Connection Client" href="http://www.apple.com/downloads/macosx/networking_security/remotedesktopconnectionclient.html ">Download</a> the software from Apple site.</p>
<p><img  title="Remote Desktop Connection Client " src="http://pixert.com/wp-content/uploads/2009/10/rdcappledotcom.jpg" alt="Remote Desktop Connection Client " width="461" height="69" /></p>
<p>Install it like other software in Mac. Youâ€™ll see a Remote Desktop Connection  icon in Application folder.</p>
<p>Configure the built in Airport Express or Ethernet to have IP statics and are on the same network. Open Network Preferences, Choose Airport then click Advanced button, go to TCP/IP tab, set Configure Ipv4 to Manually, type IP address, subnet mask and router IP.</p>
<p><img title="Airport Setup" src="http://pixert.com/wp-content/uploads/2009/10/ipairport.jpg" alt="Airport Setup" width="414" height="236" /></p>
<p>Setup Ethernet same way with Airport Express</p>
<p><img title="Ethernet Setup" src="http://pixert.com/wp-content/uploads/2009/10/ipethernet.jpg" alt="Ethernet Setup" width="414" height="295" /></p>
<h3>Configure Remote Desktop Connection</h3>
<p>Before you can remote your Windows computer, configure the Remote Desktop Connection software to use themes, play sounds from Windows. The later feature is very cool, because you can play mp3 store in Windows to your Mac. Go to RDC menu, launch preferences.</p>
<p>Display Tab allows you to control how Windows look on Mac, you can get full screen size window, tick show desktop background like your windows, tick Windows themes will display your Windows themes on Mac</p>
<p><img title="Display Tab in Remote Desktop Connection Client" src="http://pixert.com/wp-content/uploads/2009/10/rdcscreen.jpg" alt="Display Tab in Remote Desktop Connection Client" width="267" height="359" /></p>
<p>Sound Tab provides three choices, tick On the Macintosh computer only will play your Windows sound on Mac. But when you tick On the Windows-based computer only, it will play the Sounds on Windows, no Sounds will be transfer to Mac. Or you can turn sound off, tick Do not play sound</p>
<p><img title="Sound Tab in Remote Desktop Connection Client" src="http://pixert.com/wp-content/uploads/2009/10/rdcsound.jpg" alt="Sound Tab in Remote Desktop Connection Client" width="366" height="141" /></p>
<h3>Remote and Screen Sharing Windows Computer</h3>
<p>Run the Remote Desktop Connection , youâ€™ll be presented with a simple interface, it will ask you Windows computer IP or name then click Connect button</p>
<p><img  title="Remote Desktop Connection Client Interface" src="http://pixert.com/wp-content/uploads/2009/10/rdcinterface.jpg" alt="Remote Desktop Connection Client Interface" width="421" height="171" /></p>
<p>A window popup ask you to insert Windows login. The username and password same with your Windows login. Match  Domain with Computer Name in Windows system properties. Click OK</p>
<p><img title="Remote Desktop Connection Client Login" src="http://pixert.com/wp-content/uploads/2009/10/rdclogin.jpg" alt="Remote Desktop Connection Client Login" width="367" height="218" /></p>
<p>After that, you will see Windows login usually apear on Windows, insert Windows username and password one more time. Voila you can remote your Windows computer now!</p>
<p><img title="Windows" src="http://pixert.com/wp-content/uploads/2009/10/windows.jpg" alt="Windows" width="518" height="349" /></p>
<h3>Conclusion</h3>
<p>Mac is powerful when it comes to networking even with Windows. Itâ€™s only a matter of minutes to setup, fast and easy access</p>
<p>Now, you can collaborate with someone else who use Windows or use it as transition from Windows to Mac.</p>
<p>Feel free to let us know what do you think about this. Is it a tool you find a particularly useful?</p>
]]></content:encoded>
			<wfw:commentRss>http://pixert.com/remote-and-screen-sharing-windows-computer-in-mac/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A hidden tricks on Mac&#039;s Safari browser</title>
		<link>http://pixert.com/a-hidden-tricks-on-macs-safari-browser/</link>
		<comments>http://pixert.com/a-hidden-tricks-on-macs-safari-browser/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 06:05:16 +0000</pubDate>
		<dc:creator>katemag</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Mac OS]]></category>

		<guid isPermaLink="false">http://pixert.com/?p=262</guid>
		<description><![CDATA[You probably know Safari can resume download. However, what if you must shutdown your macbook for unexpected reasons, like out of battery.
You turn macbook on after the battery is full, resume your download and find out that there&#8217;s no resume command when you open Safari.
It sucks when it&#8217;s happening in the middle of big files [...]]]></description>
			<content:encoded><![CDATA[<p>You probably know Safari can resume download. However, what if you must shutdown your macbook for unexpected reasons, like out of battery.</p>
<p>You turn macbook on after the battery is full, resume your download and find out that there&#8217;s no resume command when you open Safari.</p>
<p>It sucks when it&#8217;s happening in the middle of big files download.<br />
Don&#8217;t get angry too soon.<br />
Clear you download window but don&#8217;t reset Safari.<br />
You may not know Safari saved all downloads in download directory.<br />
Open download directory, find Safari icon with loading bar on it. That shows that file is Resume Download file from Safari. Click it twice, Safari download window pop up ..bingo! Your download back on</p>
]]></content:encoded>
			<wfw:commentRss>http://pixert.com/a-hidden-tricks-on-macs-safari-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Special Offer: WordPress Support</title>
		<link>http://pixert.com/special-offer-wordpress-support/</link>
		<comments>http://pixert.com/special-offer-wordpress-support/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 16:46:50 +0000</pubDate>
		<dc:creator>katemag</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://pixert.com/?p=200</guid>
		<description><![CDATA[Do you have problems with WordPress, WP Themes, WP Plugins or bbPress ? Don&#8217;t know how to solve it?
I&#8217;m offering Support
I handle Support via email or Skype.
Please add WP Support to email subject or say WP Support on Skype message,don&#8217;t forget to write your problems when you contact me.
]]></description>
			<content:encoded><![CDATA[<p>Do you have problems with WordPress, WP Themes, WP Plugins or bbPress ? Don&#8217;t know how to solve it?</p>
<p>I&#8217;m offering Support</p>
<p>I handle Support via <a title="WP Support" href="mailto:studio@pixert.com">email</a> or <a title="WP Support" href="http://pixert.com/contact/">Skype</a>.<br />
Please add <strong>WP Support to email subject</strong> or say <strong>WP Support on Skype message,don&#8217;t forget to write your problems</strong> when you contact me.</p>
]]></content:encoded>
			<wfw:commentRss>http://pixert.com/special-offer-wordpress-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
