<?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>Pacecode Blog &#187; php developers</title>
	<atom:link href="http://www.pacecode.com/blog/category/php-developers/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pacecode.com/blog</link>
	<description>Tips,Ideas, Free scripts and more...</description>
	<lastBuildDate>Sat, 24 Apr 2010 16:39:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Problem with transparent image resizing? &#8211; PHP</title>
		<link>http://www.pacecode.com/blog/2008/12/03/problem-with-transparent-image-resizing/</link>
		<comments>http://www.pacecode.com/blog/2008/12/03/problem-with-transparent-image-resizing/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 17:33:24 +0000</pubDate>
		<dc:creator>Raja MM</dc:creator>
				<category><![CDATA[Javascripts]]></category>
		<category><![CDATA[php developers]]></category>
		<category><![CDATA[php scripts]]></category>
		<category><![CDATA[web 2.0]]></category>
		<category><![CDATA[animated image resize]]></category>
		<category><![CDATA[image resizing using php]]></category>
		<category><![CDATA[imagecreatetruecolor]]></category>
		<category><![CDATA[on the fly image resize]]></category>
		<category><![CDATA[open source image resize script]]></category>
		<category><![CDATA[transparent image resize]]></category>

		<guid isPermaLink="false">http://www.pacecode.com/blog/?p=88</guid>
		<description><![CDATA[You will get black background if you resize a transparent image. To fix it, You need set alpha channel imagecolorallocatealpha to 127. With imagecolorallocatealpha, it will allocate a color for an image.
Usage:
int imagecolorallocatealpha ( resource image, int red, int green, int blue, int alpha)
From PHP manual:
imagecolorallocatealpha() behaves identically to imagecolorallocate() with the addition of the [...]]]></description>
			<content:encoded><![CDATA[<p>You will get black background if you resize a transparent image. To fix it, You need set alpha channel imagecolorallocatealpha to 127. With imagecolorallocatealpha, it will allocate a color for an image.</p>
<p><strong>Usage:</strong><br />
int imagecolorallocatealpha ( resource image, int red, int green, int blue, int alpha)</p>
<p><strong>From PHP manual:</strong><br />
imagecolorallocatealpha() behaves identically to imagecolorallocate() with the addition of the transparency parameter alpha which may have a value between 0 and 127. 0 indicates completely opaque while 127<br />
indicates completely transparent. Returns FALSE if the allocation failed.</p>
<p>Before using it, you must set to false the blending mode for an image and set true the flag to save full alpha channel information.</p>
<p><strong>Example:</strong></p>
<p>&lt;?</p>
<p>$newImg = imagecreatetruecolor($nWidth, $nHeight);</p>
<p>imagealphablending($newImg, false);</p>
<p>imagesavealpha($newImg,true);</p>
<p>$transparent = imagecolorallocatealpha($newImg, 255, 255, 255, 127);</p>
<p>imagefilledrectangle($newImg, 0, 0, $nWidth, $nHeight, $transparent);</p>
<p>imagecopyresampled($newImg, $im, 0, 0, 0, 0, $nWidth, $nHeight, $imgInfo[0], $imgInfo[1]);</p>
<p>?&gt;</p>
<p><strong>Another way to fix this issue:</strong></p>
<p><strong>phpThumb() </strong>- Resize images on the fly</p>
<p><strong>Description: </strong>phpThumb() uses the GD library  to create thumbnails from images (JPEG, PNG, GIF, BMP, etc) on the fly. The output size is configurable (can be larger or smaller than the source), and the source may be the entire image or only a portion of the original image.</p>
<p><strong>Download:</strong> <a href="http://phpthumb.sourceforge.net/phpThumb.zip">Download</a></p>
<p><strong>Site:</strong> <a href="http://phpthumb.sourceforge.net/" title="phpThumb - a php thumbnail generator" rel="mediabox[800 600]">phpThumb()</a></p>
<p><strong>Demo:</strong> <a href="http://phpthumb.sourceforge.net/demo/demo/phpThumb.demo.demo.php" title="phpThumb Demo" rel="mediabox[800 600]">Demo</a></p>
<p><strong>Installation: </strong></p>
<p>1. unzip the folder and upload the content into the server<br />
2. give the correct path of the phpThumb.php and image path as per the following syntax</p>
<p><strong>Resize Syntax:</strong><br />
&lt;img src=&#8221;../phpThumb.php?src=images/watermark.png&amp;bg=FFFFFF&amp;f=png&#8221; alt=&#8221;"&gt;<br />
&lt;img src=&#8221;../phpThumb.php?src=images/watermark.png&amp;bg=FFFFFF&amp;f=gif&#8221; alt=&#8221;"&gt;<br />
&lt;img src=&#8221;../phpThumb.php?src=images/watermark.png&amp;bg=FFFFFF&amp;f=jpeg&#8221; alt=&#8221;"&gt;</p>
<p>where the bg=FFFFFF represents the bg color of your transparent image.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Share this post</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F12%2F03%2Fproblem-with-transparent-image-resizing%2F&amp;submitHeadline=Problem+with+transparent+image+resizing%3F+%26%238211%3B+PHP&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F12%2F03%2Fproblem-with-transparent-image-resizing%2F&amp;title=Problem+with+transparent+image+resizing%3F+%26%238211%3B+PHP" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F12%2F03%2Fproblem-with-transparent-image-resizing%2F&amp;title=Problem+with+transparent+image+resizing%3F+%26%238211%3B+PHP" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F12%2F03%2Fproblem-with-transparent-image-resizing%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F12%2F03%2Fproblem-with-transparent-image-resizing%2F&amp;title=Problem+with+transparent+image+resizing%3F+%26%238211%3B+PHP" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F12%2F03%2Fproblem-with-transparent-image-resizing%2F&amp;bm_description=Problem+with+transparent+image+resizing%3F+%26%238211%3B+PHP" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F12%2F03%2Fproblem-with-transparent-image-resizing%2F&amp;T=Problem+with+transparent+image+resizing%3F+%26%238211%3B+PHP" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F12%2F03%2Fproblem-with-transparent-image-resizing%2F&amp;title=Problem+with+transparent+image+resizing%3F+%26%238211%3B+PHP" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F12%2F03%2Fproblem-with-transparent-image-resizing%2F&amp;title=Problem+with+transparent+image+resizing%3F+%26%238211%3B+PHP" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F12%2F03%2Fproblem-with-transparent-image-resizing%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F12%2F03%2Fproblem-with-transparent-image-resizing%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Problem+with+transparent+image+resizing%3F+%26%238211%3B+PHP+@+http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F12%2F03%2Fproblem-with-transparent-image-resizing%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F12%2F03%2Fproblem-with-transparent-image-resizing%2F&amp;t=Problem+with+transparent+image+resizing%3F+%26%238211%3B+PHP" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.pacecode.com/blog/2008/12/03/problem-with-transparent-image-resizing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ADDING ADDITIONAL IMAGES IN THE PRODUCT DETAILS PAGES -Virtuemart tips</title>
		<link>http://www.pacecode.com/blog/2008/09/24/36/</link>
		<comments>http://www.pacecode.com/blog/2008/09/24/36/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 18:26:46 +0000</pubDate>
		<dc:creator>Raja MM</dc:creator>
				<category><![CDATA[joomla]]></category>
		<category><![CDATA[php developers]]></category>
		<category><![CDATA[php scripts]]></category>
		<category><![CDATA[virtuemart]]></category>
		<category><![CDATA[adding more images product details]]></category>
		<category><![CDATA[additional image in virtuemart product details page]]></category>
		<category><![CDATA[additonal image in virtuemart]]></category>
		<category><![CDATA[joomla component tips]]></category>
		<category><![CDATA[joomla virtuemart]]></category>
		<category><![CDATA[learn virtuemart at simple steps]]></category>
		<category><![CDATA[pace code tips]]></category>
		<category><![CDATA[virtuemart freelancer]]></category>
		<category><![CDATA[virtuemart in simple steps]]></category>
		<category><![CDATA[virtuemart media tutorials]]></category>
		<category><![CDATA[virtuemart tips and tutorials]]></category>

		<guid isPermaLink="false">http://www.pacecode.com/blog/?p=36</guid>
		<description><![CDATA[If you are new to the virtue mart shopping cart software, the following steps will help you to add additional product images in Product details page.
Assumptions:
You are using,

 Joomla 1.5 or Joomla 1.0.x
 Virtue Mart 1.1.0 stable.

Steps to add additional images in Product details page:

 Go  to  virtue mart  admin panel
 Choose “choose extended layout” [...]]]></description>
			<content:encoded><![CDATA[<h3><span style="color: #008000;">If you are new to the virtue mart shopping cart software, the following steps will help you to add additional product images in Product details page.</span></h3>
<p><span style="color: #008000;"><strong>Assumptions:</strong></span><br />
<strong>You are using,</strong></p>
<ul>
<li> Joomla 1.5 or Joomla 1.0.x</li>
<li> Virtue Mart 1.1.0 stable.</li>
</ul>
<p><strong>Steps to add additional images in Product details page:</strong></p>
<ol>
<li> Go  to  virtue mart  admin panel</li>
<li> Choose “choose extended layout” &lt;helps easy navigation&gt;</li>
<li> List out your products.</li>
<li> Click on media button. A new popup will be opened.</li>
<li> Click the new button to add additional images</li>
<li> Choose additional image s as option, give appropriate height and width for the image</li>
<li> Click on save button. That’s all</li>
</ol>
<p><span style="color: #ff0000;">I  am not sure about, it will work for lower version of virtue mart also. <strong>Please check and gimme a feed back to this post.</strong></span></p>
<h3><span style="color: #008000;">The following pictures help you for easy understanding.</span></h3>
<p style="text-align: center;"><a href="http://img252.imageshack.us/img252/5393/96303502hm7.jpg"><img class="aligncenter" style="border: 0pt none;" src="http://img252.imageshack.us/img252/5393/96303502hm7.th.jpg" border="0" alt="ImageShack" width="150" height="100" /></a></p>
<p style="text-align: center;"><a href="http://img401.imageshack.us/my.php?image=33755863in6.png"><img src="http://img401.imageshack.us/img401/3189/33755863in6.th.png" border="0" alt="ImageShack" /></a></p>
<p style="text-align: center;"><a href="http://img262.imageshack.us/img262/3530/44779627bp8.jpg"><img src="http://img262.imageshack.us/img262/3530/44779627bp8.th.jpg" border="0" alt="ImageShack" /></a></p>
<p style="text-align: center;"><a href="http://img262.imageshack.us/my.php?image=21892749ys4.png"><img src="http://img262.imageshack.us/img262/3910/21892749ys4.th.png" border="0" alt="ImageShack" /></a></p>
<p style="text-align: center;"><a href="http://img262.imageshack.us/my.php?image=43552668ex0.jpg"><img src="http://img262.imageshack.us/img262/7594/43552668ex0.th.jpg" border="0" alt="ImageShack" /></a></p>
<p style="text-align: center;"><a href="http://img262.imageshack.us/my.php?image=10331432sk2.png"><img src="http://img262.imageshack.us/img262/7963/10331432sk2.th.png" border="0" alt="ImageShack" /></a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Share this post</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F24%2F36%2F&amp;submitHeadline=ADDING+ADDITIONAL+IMAGES+IN+THE+PRODUCT+DETAILS+PAGES+-Virtuemart+tips&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F24%2F36%2F&amp;title=ADDING+ADDITIONAL+IMAGES+IN+THE+PRODUCT+DETAILS+PAGES+-Virtuemart+tips" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F24%2F36%2F&amp;title=ADDING+ADDITIONAL+IMAGES+IN+THE+PRODUCT+DETAILS+PAGES+-Virtuemart+tips" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F24%2F36%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F24%2F36%2F&amp;title=ADDING+ADDITIONAL+IMAGES+IN+THE+PRODUCT+DETAILS+PAGES+-Virtuemart+tips" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F24%2F36%2F&amp;bm_description=ADDING+ADDITIONAL+IMAGES+IN+THE+PRODUCT+DETAILS+PAGES+-Virtuemart+tips" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F24%2F36%2F&amp;T=ADDING+ADDITIONAL+IMAGES+IN+THE+PRODUCT+DETAILS+PAGES+-Virtuemart+tips" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F24%2F36%2F&amp;title=ADDING+ADDITIONAL+IMAGES+IN+THE+PRODUCT+DETAILS+PAGES+-Virtuemart+tips" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F24%2F36%2F&amp;title=ADDING+ADDITIONAL+IMAGES+IN+THE+PRODUCT+DETAILS+PAGES+-Virtuemart+tips" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F24%2F36%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F24%2F36%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+ADDING+ADDITIONAL+IMAGES+IN+THE+PRODUCT+DETAILS+PAGES+-Virtuemart+tips+@+http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F24%2F36%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F24%2F36%2F&amp;t=ADDING+ADDITIONAL+IMAGES+IN+THE+PRODUCT+DETAILS+PAGES+-Virtuemart+tips" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.pacecode.com/blog/2008/09/24/36/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Problem with Wordpress admin-login? or Forgot your Wordpress admin password?</title>
		<link>http://www.pacecode.com/blog/2008/09/23/problem-with-wordpress-admin-login-or-forgot-your-wordpress-admin-password/</link>
		<comments>http://www.pacecode.com/blog/2008/09/23/problem-with-wordpress-admin-login-or-forgot-your-wordpress-admin-password/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 16:59:09 +0000</pubDate>
		<dc:creator>Raja MM</dc:creator>
				<category><![CDATA[php developers]]></category>
		<category><![CDATA[php scripts]]></category>
		<category><![CDATA[web 2.0]]></category>
		<category><![CDATA[forgot wordpress password]]></category>
		<category><![CDATA[reset wordpress admin login]]></category>
		<category><![CDATA[updating wordpress admin password]]></category>
		<category><![CDATA[wordpress admin problem]]></category>
		<category><![CDATA[wordpress admin redirection error]]></category>
		<category><![CDATA[wordpress login error]]></category>
		<category><![CDATA[wordpress md5 password]]></category>

		<guid isPermaLink="false">http://www.pacecode.com/blog/?p=15</guid>
		<description><![CDATA[Reset your local wordpress password easily
While building my theme I installed wordpress with lots of sample data and I realized.
I forgot my password and couldn&#8217;t recover it even with a &#8220;forgot password&#8221; link. So after
playing around for 30 mins, I reset my password. This is how.
Wordpress admin login error happen for two following reason:

User may [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #008000;"><strong>Reset your local wordpress password easily</strong></span></p>
<p>While building my theme I installed wordpress with lots of sample data and I realized.</p>
<div id="attachment_25" class="wp-caption alignleft" style="width: 310px"><a href="http://localhost/xampp/fresh-wp/wp-content/uploads/2008/09/phpmyadmin.png" rel="lightbox"><img class="size-medium wp-image-25" title="phpmyadmin" src="http://www.pacecode.com/blog/wp-content/uploads/2008/09/phpmyadmin-300x214.png" alt="mysql picture" width="300" height="214" /></a><p class="wp-caption-text">mysql picture</p></div>
<p>I forgot my password and couldn&#8217;t recover it even with a &#8220;forgot password&#8221; link. So after</p>
<p>playing around for 30 mins, I reset my password. This is how.</p>
<p>Wordpress admin login error happen for two following reason:</p>
<ol>
<li>User may forgot the admin password</li>
<li>User might have entered wrong site url in setting tab</li>
</ol>
<p>go to your mysql administrator (usually called as phpmyadmin)</p>
<ul>
<li>select your wordpress database</li>
<li>run the following update query with your password as in bracket using sql tab</li>
</ul>
<p>SELECT &#8216;wordpress&#8217; //this should be your database name<br />
UPDATE `wp_users` SET `user_pass` = MD5( &#8216;password&#8217; ) WHERE `ID` =1 LIMIT 1 ;</p>
<p>where password is your new password. Your password is reset, for the admin acount.</p>
<p>For admin side login problem, there might be another reason. You might have given wrong site</p>
<p>url. This can be update by the following query</p>
<p>UPDATE `wp_options` SET `option_value` = &#8216;You site url&#8217; WHERE `wp_options`.`option_id` =1</p>
<p>LIMIT 1 ;</p>
<p>It will update your site url in the wp_options table and it will solve your login error.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Share this post</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F23%2Fproblem-with-wordpress-admin-login-or-forgot-your-wordpress-admin-password%2F&amp;submitHeadline=Problem+with+Wordpress+admin-login%3F+or+Forgot+your+Wordpress+admin+password%3F&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F23%2Fproblem-with-wordpress-admin-login-or-forgot-your-wordpress-admin-password%2F&amp;title=Problem+with+Wordpress+admin-login%3F+or+Forgot+your+Wordpress+admin+password%3F" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F23%2Fproblem-with-wordpress-admin-login-or-forgot-your-wordpress-admin-password%2F&amp;title=Problem+with+Wordpress+admin-login%3F+or+Forgot+your+Wordpress+admin+password%3F" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F23%2Fproblem-with-wordpress-admin-login-or-forgot-your-wordpress-admin-password%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F23%2Fproblem-with-wordpress-admin-login-or-forgot-your-wordpress-admin-password%2F&amp;title=Problem+with+Wordpress+admin-login%3F+or+Forgot+your+Wordpress+admin+password%3F" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F23%2Fproblem-with-wordpress-admin-login-or-forgot-your-wordpress-admin-password%2F&amp;bm_description=Problem+with+Wordpress+admin-login%3F+or+Forgot+your+Wordpress+admin+password%3F" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F23%2Fproblem-with-wordpress-admin-login-or-forgot-your-wordpress-admin-password%2F&amp;T=Problem+with+Wordpress+admin-login%3F+or+Forgot+your+Wordpress+admin+password%3F" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F23%2Fproblem-with-wordpress-admin-login-or-forgot-your-wordpress-admin-password%2F&amp;title=Problem+with+Wordpress+admin-login%3F+or+Forgot+your+Wordpress+admin+password%3F" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F23%2Fproblem-with-wordpress-admin-login-or-forgot-your-wordpress-admin-password%2F&amp;title=Problem+with+Wordpress+admin-login%3F+or+Forgot+your+Wordpress+admin+password%3F" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F23%2Fproblem-with-wordpress-admin-login-or-forgot-your-wordpress-admin-password%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F23%2Fproblem-with-wordpress-admin-login-or-forgot-your-wordpress-admin-password%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Problem+with+Wordpress+admin-login%3F+or+Forgot+your+Wordpress+admin+password%3F+@+http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F23%2Fproblem-with-wordpress-admin-login-or-forgot-your-wordpress-admin-password%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F23%2Fproblem-with-wordpress-admin-login-or-forgot-your-wordpress-admin-password%2F&amp;t=Problem+with+Wordpress+admin-login%3F+or+Forgot+your+Wordpress+admin+password%3F" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.pacecode.com/blog/2008/09/23/problem-with-wordpress-admin-login-or-forgot-your-wordpress-admin-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Part of Page refresh using AJAX with timed delay</title>
		<link>http://www.pacecode.com/blog/2008/09/21/part-of-page-refresh-using-ajax-with-timed-delay/</link>
		<comments>http://www.pacecode.com/blog/2008/09/21/part-of-page-refresh-using-ajax-with-timed-delay/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 16:55:09 +0000</pubDate>
		<dc:creator>Raja MM</dc:creator>
				<category><![CDATA[page refresh]]></category>
		<category><![CDATA[php developers]]></category>
		<category><![CDATA[php scripts]]></category>
		<category><![CDATA[web 2.0]]></category>
		<category><![CDATA[auto page refresh using javascript]]></category>
		<category><![CDATA[javascript helpers zone]]></category>
		<category><![CDATA[javascript latest script]]></category>
		<category><![CDATA[javascript page refresh]]></category>
		<category><![CDATA[js page refresh]]></category>
		<category><![CDATA[page refresh using javascript]]></category>
		<category><![CDATA[page refresh with time delay]]></category>

		<guid isPermaLink="false">http://www.pacecode.com/blog/?p=9</guid>
		<description><![CDATA[
&#60;head&#62;
&#60;script type=&#8221;text/javascript&#8221;&#62;
function makAx() // this function to activate XMLHttpRequest Object
{
try
{
xm = new ActiveXObject(&#8220;Msxml2.XMLHTTP&#8221;);
return true;
}
catch (e)
{
try
{
xm = new ActiveXObject(&#8220;Microsoft.XMLHTTP&#8221;);
return true;
}
catch (e2)
{
xm = false;
}
}
if (!xm &#38;&#38; typeof XMLHttpRequest != ‘undefined’)
{
xm = new XMLHttpRequest();
return true;
}
}
function showImages()
{
if(makAx())   //  XMLHttpRequest checked here
{
url = &#8220;external-page-for-db-query.php&#8221;;   // this file will contains your db query
callavail();
}
}
function callavail()
{
xm.open(&#8220;GET&#8221;,url,true); // This [...]]]></description>
			<content:encoded><![CDATA[<div class="post-entry">
<p>&lt;head&gt;<br />
&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
function makAx() // this function to activate XMLHttpRequest Object<br />
{<br />
try<br />
{<br />
xm = new ActiveXObject(&#8220;Msxml2.XMLHTTP&#8221;);<br />
return true;<br />
}<br />
catch (e)<br />
{<br />
try<br />
{<br />
xm = new ActiveXObject(&#8220;Microsoft.XMLHTTP&#8221;);<br />
return true;<br />
}<br />
catch (e2)<br />
{<br />
xm = false;<br />
}<br />
}<br />
if (!xm &amp;&amp; typeof XMLHttpRequest != ‘undefined’)<br />
{<br />
xm = new XMLHttpRequest();<br />
return true;<br />
}<br />
}<br />
function showImages()<br />
{<br />
if(makAx())   //  XMLHttpRequest checked here<br />
{<br />
url = &#8220;external-page-for-db-query.php&#8221;;   // this file will contains your db query<br />
callavail();<br />
}<br />
}<br />
function callavail()<br />
{<br />
xm.open(&#8220;GET&#8221;,url,true); // This is ajax functionality. It may have true(for synchronous request) or false(for asynchronous request)<br />
xm.onreadystatechange = cavail;<br />
xm.send(null);<br />
}<br />
function cavail()<br />
{<br />
if(xm.readyState == 4) // If ready state reached<br />
{<br />
var response = xm.responseText;<br />
var str = document.getElementById(&#8220;showResult&#8221;);  // result of &#8220;external-page-for-db-query.php&#8221; will come here<br />
str.innerHTML = response;<br />
setTimeout(&#8220;showImages()&#8221;,1000); // here 1000 represents one second for time delay. showImage() function will be called with the specified time delay<br />
}<br />
}<br />
&lt;/script&gt;<br />
&lt;/head&gt;</p>
<p>&lt;body&gt;<br />
&lt;div id=&#8221;showResult&#8221;&gt;&lt;/div&gt; &lt;!–page result will be displayed here–&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p></div>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Share this post</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F21%2Fpart-of-page-refresh-using-ajax-with-timed-delay%2F&amp;submitHeadline=Part+of+Page+refresh+using+AJAX+with+timed+delay&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F21%2Fpart-of-page-refresh-using-ajax-with-timed-delay%2F&amp;title=Part+of+Page+refresh+using+AJAX+with+timed+delay" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F21%2Fpart-of-page-refresh-using-ajax-with-timed-delay%2F&amp;title=Part+of+Page+refresh+using+AJAX+with+timed+delay" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F21%2Fpart-of-page-refresh-using-ajax-with-timed-delay%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F21%2Fpart-of-page-refresh-using-ajax-with-timed-delay%2F&amp;title=Part+of+Page+refresh+using+AJAX+with+timed+delay" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F21%2Fpart-of-page-refresh-using-ajax-with-timed-delay%2F&amp;bm_description=Part+of+Page+refresh+using+AJAX+with+timed+delay" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F21%2Fpart-of-page-refresh-using-ajax-with-timed-delay%2F&amp;T=Part+of+Page+refresh+using+AJAX+with+timed+delay" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F21%2Fpart-of-page-refresh-using-ajax-with-timed-delay%2F&amp;title=Part+of+Page+refresh+using+AJAX+with+timed+delay" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F21%2Fpart-of-page-refresh-using-ajax-with-timed-delay%2F&amp;title=Part+of+Page+refresh+using+AJAX+with+timed+delay" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F21%2Fpart-of-page-refresh-using-ajax-with-timed-delay%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F21%2Fpart-of-page-refresh-using-ajax-with-timed-delay%2F" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Part+of+Page+refresh+using+AJAX+with+timed+delay+@+http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F21%2Fpart-of-page-refresh-using-ajax-with-timed-delay%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.pacecode.com%2Fblog%2F2008%2F09%2F21%2Fpart-of-page-refresh-using-ajax-with-timed-delay%2F&amp;t=Part+of+Page+refresh+using+AJAX+with+timed+delay" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.pacecode.com/blog/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.pacecode.com/blog/2008/09/21/part-of-page-refresh-using-ajax-with-timed-delay/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
