<?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>Help 2 Design &#187; wordpress</title>
	<atom:link href="http://help2design.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://help2design.com</link>
	<description>We help you to design the web!</description>
	<lastBuildDate>Sun, 27 Mar 2011 17:22:46 +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>Latest Picasa Photos -WordPress Plugin</title>
		<link>http://help2design.com/wordpress/latest-picasa-photos-wordpress-plugin/</link>
		<comments>http://help2design.com/wordpress/latest-picasa-photos-wordpress-plugin/#comments</comments>
		<pubDate>Fri, 08 Oct 2010 10:27:03 +0000</pubDate>
		<dc:creator>Harsha</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[latest picasa]]></category>
		<category><![CDATA[picasa]]></category>
		<category><![CDATA[picasa api]]></category>
		<category><![CDATA[slideshow]]></category>

		<guid isPermaLink="false">http://help2design.com/?p=164</guid>
		<description><![CDATA[Plugin to display latest photos from your Picasa  web album as slideshow. Download Plugin: Latest Picasa Photos To insert inside any post or page:  Create a page/ post Insert [latest&#124;picasa] where yoiu want the slide show to appear. To use in your theme, Use following code: &#60;?php if(function_exists('latest_picasa_photos')) latest_picasa_photos(); ?&#62; This Plugin does not use [...]]]></description>
			<content:encoded><![CDATA[<p>Plugin to display latest photos from your Picasa  web album as slideshow.</p>
<p><a href="http://help2design.com/wp-content/uploads/2010/10/latest_picasa_photos1.zip">Download Plugin: Latest Picasa Photos</a></p>
<p>To insert inside any post or page:  Create a page/ post</p>
<p>Insert <em>[latest|picasa] </em>where yoiu want the slide show to appear.</p>
<p>To use in your theme, Use following code:</p>
<p><em>&lt;?php if(function_exists('latest_picasa_photos')) latest_picasa_photos(); ?&gt; </em></p>
<p>This Plugin does not use default slideshow provided by Picasa, instead it imports photos through API. There will not be Picaa logo in the slideshow. You can configure the album to be used from your picasa account.</p>
<p>You can define width and height of photo slideshow under menu Latest Picasa</p>
<p><em><br />
</em></p>
]]></content:encoded>
			<wfw:commentRss>http://help2design.com/wordpress/latest-picasa-photos-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ways to make your wordpress load faster</title>
		<link>http://help2design.com/wordpress/20-ways-to-make-your-wordpress-load-faster/</link>
		<comments>http://help2design.com/wordpress/20-ways-to-make-your-wordpress-load-faster/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 14:55:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://help2design.com/?p=128</guid>
		<description><![CDATA[Everyone wants to speed up their web  pages. There are many ways to decrease the load time of your wordpress website. That includes caching your query results, pages and script outputs, minimizing number of files associated with each page, compressing files etc. There are some steps that you can follow for your wordpress based blog/website. [...]]]></description>
			<content:encoded><![CDATA[<p>Everyone wants to speed up their web  pages. There are many ways to decrease the load time of your wordpress website. That includes caching your query results, pages and script outputs, minimizing number of files associated with each page, compressing files etc. There are some steps that you can follow for your wordpress based blog/website. Try these suggestions if you feel your wordpress is slow.</p>
<ul>
<li><strong>Analyze current load time: </strong>There are many free tools available for analysing the speed of your website. You can use firefox plugins like <a href="http://developer.yahoo.com/yslow/" target="_blank">YSlow</a> (Integrated with firebug)from Yahoo or <a href="http://code.google.com/speed/page-speed/">Pagespeed</a> from Google. That  gives you complete detail of Page load time, external references etc  and suggest you on the optimization. You can also use online tools like <a href="http://tools.pingdom.com">Pingdom</a></li>
<li><strong>APC</strong>: "Alternative php cache" caches php queries.</li>
<li><strong>Mysql Query cache</strong>: http://wordpress.org/extend/plugins/db-cache-reloaded/ Caches outputs of mysql queries. So, reduces load on mysql and cpu.</li>
<li><strong>Page cache plugins</strong>:  wp-cache and <strong>wp-supercache</strong> are plugins that stores static html  versions of generated wordpress pages. When a visitor requests a page, it delivers cached files instead of calling all  php functions and executing database queries again hence minimizing the load time a lot. ached files should be delivered. Wp-Supercache is one of the best wordpress plugins out there.</li>
<li><strong>CDN</strong>: Content delivery networks are used to serve static contents of the websites without using the server bandwidth. It will impact on the speed as well. There are many CDN services available out there including popular  Amazon Cludefront http://aws.amazon.com/cloudfront/ and free Coral CDN http://www.coralcdn.org. You can use Free CDN plugin to enable this.</li>
<li><strong>Minify: </strong>Minification is the process of removing all unnecessary characters from source code, without changing its functionality. These unnecessary characters usually include white space characters, new line characters, comments and sometimes block delimiters; which are used to add readability to the code, but are not required for it to execute.</li>
<li><strong>Optimise your theme</strong>: Your theme might be responsible for slowing down your website. Try to minimize your database operations and optimize your code by reducing function calls.</li>
<li><strong>Use less plugins: </strong>Use a plugin if you are sure you need it. Some plugins consume more resource than even wordpress core. So, if you feel your website is slow, review the plugins you used. Dont install any plugins that are not used.</li>
<li><strong>Check your server configuration: </strong>Make sure your web host is optimized for wordpress.</li>
<li><strong>Replace php queries with static html codes: </strong>There are many function calls that are made in your theme just to produce something that is already known to you. You can just avoid that and use static html codes instead. For ex: <strong><br />
</strong></li>
<li><strong>Host your images in flicker/picasa: </strong>There are many free image hosting website available. You can use one to reduce load on your server. There are many plugins to help you do this including constructing a photo gallery.</li>
<li><strong>Height and Width tags for images: </strong>Make sure you use these tags for your images. This will speed up page generation in the browser.</li>
<li>CSS sprites</li>
<li>Use scripts in separate files</li>
<li>Css in the top, js in the bottom</li>
<li>Disable unused plugins</li>
<li>if (function_exists</li>
<li><strong>Optimize DB: </strong>Optimize your database table periodically. You can use command for this or use tools like phpmyadmin. There are plugins available to do this, just google for!</li>
<li>Reduce Image Size</li>
<li>Restrict content in page -Use excerpt, page navi, split comments per page</li>
</ul>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">
<h1 class="title">Alternative PHP Cache</h1>
</div>
]]></content:encoded>
			<wfw:commentRss>http://help2design.com/wordpress/20-ways-to-make-your-wordpress-load-faster/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Change wordpress image thumbnail size and regenerate thumbnails</title>
		<link>http://help2design.com/wordpress/how-to-change-wordpress-image-thumbnail-size-and-regenerate-thumbnails/</link>
		<comments>http://help2design.com/wordpress/how-to-change-wordpress-image-thumbnail-size-and-regenerate-thumbnails/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 06:05:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[image dimentions]]></category>
		<category><![CDATA[image size]]></category>
		<category><![CDATA[media settings]]></category>
		<category><![CDATA[regenerate thumbnails]]></category>
		<category><![CDATA[wordpress image settings]]></category>
		<category><![CDATA[wordpress thumbnails]]></category>

		<guid isPermaLink="false">http://help2design.com/?p=115</guid>
		<description><![CDATA[It is very easy to change the wordpress default thumbnail size at any time. Login to your wordpress and go to Settings-&#62;media Here you can change the width and height as you required. If you tick the option "Crop thumbnail to exact dimensions (normally thumbnails are proportional)" then the thumbnail size will be exact same [...]]]></description>
			<content:encoded><![CDATA[<p>It is very easy to change the wordpress default thumbnail size at any time. Login to your wordpress and go to</p>
<p><strong>Settings-&gt;media</strong></p>
<p style="text-align: left;">
<div id="attachment_116" class="wp-caption aligncenter" style="width: 581px"><a href="http://help2design.com/wp-content/uploads/2010/01/Wordpress_thumbnail_settings.jpg"><img class="size-full wp-image-116  " title="Wordpress thumbnail settings" src="http://help2design.com/wp-content/uploads/2010/01/Wordpress_thumbnail_settings.jpg" alt="Wordpress thumbnail settings" width="571" height="320" /></a><p class="wp-caption-text">Wordpress thumbnail settings page</p></div>
<p>Here you can change the width and height as you required. If you tick the option "Crop thumbnail to exact dimensions (normally thumbnails are  proportional)" then the thumbnail size will be exact same as you specified. It will be a cropped image. If you remove this tick, WordPress will take either width or height to generate the thumbnail.</p>
<p style="text-align: left;">Now, if there are many articles already posted with lot of images and you want to regenerate all the thumbnails. Is there any easy solution?</p>
<p style="text-align: left;">Yes. There is a smart plugin called "Regenerate Thumbnails". Regenerate Thumbnails allows you to regenerate the thumbnails for all of  your image attachments. This is very handy if you've changed any of  your thumbnail dimensions (via Settings -&gt; Media) after previously  uploading images.</p>
<p style="text-align: left;"><a href="http://wordpress.org/extend/plugins/regenerate-thumbnails/" target="_blank">Click here to download</a></p>
<p style="text-align: left;">After installing this plugin got to its setting page and click regenerate thumbnails. It will regenerate thumbnails of all the images uploaded previously.</p>
]]></content:encoded>
			<wfw:commentRss>http://help2design.com/wordpress/how-to-change-wordpress-image-thumbnail-size-and-regenerate-thumbnails/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Plugin MM Forms giving 404 page not found error while submitting</title>
		<link>http://help2design.com/wordpress/plugin-mm-forms-giving-404-page-not-found-error-while-submitting/</link>
		<comments>http://help2design.com/wordpress/plugin-mm-forms-giving-404-page-not-found-error-while-submitting/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 06:34:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[404 error]]></category>
		<category><![CDATA[cannot submit]]></category>
		<category><![CDATA[mm forms]]></category>
		<category><![CDATA[sorry not found]]></category>
		<category><![CDATA[while submit]]></category>

		<guid isPermaLink="false">http://help2design.com/?p=86</guid>
		<description><![CDATA[Plugin MM Forms giving 404 page not found error while submitting any forms. This error occurs only because you have changed the name "your-name" to "name". Now go to MM-forms settings and change Name to you-name as given below. &#60;p&#62;&#60;label&#62;Name (required)&#60;br /&#62; [text* your-name] &#60;/label&#62;&#60;/p&#62;]]></description>
			<content:encoded><![CDATA[<p>Plugin MM Forms giving 404 page not found error while submitting any forms. This error occurs only because you have changed the name "your-name" to "name". Now go to MM-forms settings and change Name to you-name as given below.</p>
<p>&lt;p&gt;&lt;label&gt;Name (required)&lt;br /&gt;<br />
[text* your-name] &lt;/label&gt;&lt;/p&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://help2design.com/wordpress/plugin-mm-forms-giving-404-page-not-found-error-while-submitting/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Solution: Firefox crashes when uploading Image in WordPress</title>
		<link>http://help2design.com/news/firefox-crashes-when-uploading-image-in-wordpress/</link>
		<comments>http://help2design.com/news/firefox-crashes-when-uploading-image-in-wordpress/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 20:03:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[crash]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[google gears]]></category>
		<category><![CDATA[image upload]]></category>
		<category><![CDATA[picture]]></category>

		<guid isPermaLink="false">http://help2design.com/?p=74</guid>
		<description><![CDATA[Many wordpress users are facing the problem of browser crash when uploading image(or any other attachment like video, document, audio etc) in wordpress. This happens when you click "Add an image" button in wordpress near "Upload/insert" Crash window will be like this: It says "We 're sorry. Firefox had a problem and crashed. We'll try [...]]]></description>
			<content:encoded><![CDATA[<p>Many wordpress users are facing the problem of browser crash when uploading image(or any other attachment like video, document, audio etc) in wordpress. This happens when you click "Add an image" button in wordpress near "Upload/insert"</p>
<p><img class="alignnone size-full wp-image-75" title="upload" src="http://help2design.com/wp-content/uploads/2009/06/upload.jpg" alt="upload" width="303" height="141" /></p>
<p>Crash window will be like this:</p>
<p><img class="alignnone size-full wp-image-77" title="crash" src="http://help2design.com/wp-content/uploads/2009/06/crash.jpg" alt="crash" width="378" height="387" /></p>
<p>It says "We 're sorry. Firefox had a problem and crashed. We'll try to restore your tabs and windows when it restarts"</p>
<p>If you are facing this problem, try disabling Google Gears. Go to Tools-&gt; Add-ons, select Extensions.  Look for Google Gears in the list and click disable. Try uploading the image after the restart.</p>
]]></content:encoded>
			<wfw:commentRss>http://help2design.com/news/firefox-crashes-when-uploading-image-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Your attempt to edit this post has failed: WordPress Fix</title>
		<link>http://help2design.com/wordpress/your-attempt-to-edit-this-post-has-failed-wordpress-fix/</link>
		<comments>http://help2design.com/wordpress/your-attempt-to-edit-this-post-has-failed-wordpress-fix/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 12:29:53 +0000</pubDate>
		<dc:creator>Ranjith</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Cannot create page]]></category>
		<category><![CDATA[edit this post has failed]]></category>
		<category><![CDATA[wordpress error]]></category>
		<category><![CDATA[Wordpress fix]]></category>
		<category><![CDATA[Your attempt Fix]]></category>

		<guid isPermaLink="false">http://help2design.com/?p=69</guid>
		<description><![CDATA[WordPress error: Your attempt to edit this post: "abc" has failed. Please try again. Have encounter this error in wordpress? If yes then here is the solution. Here is the plugin which does the following things. /* Plugin Name: Your attempt Fix Version: 1.0 Plugin URI: http://www.wordpress.org Description: Fixes for &#34;Your attempt to edit this [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress error: Your attempt to edit this post: "abc" has failed. Please try again.</p>
<p>Have encounter this error in wordpress? If yes then here is the solution.</p>
<p>Here is the plugin which does the following things.<span id="more-69"></span></p>
<pre class="php"><span style="color: #808080; font-style: italic;">/*
Plugin Name: Your attempt Fix
Version: 1.0
Plugin URI: http://www.wordpress.org
Description: Fixes for &quot;Your attempt to edit this post&quot; bug in wordpress admin panel
Author URI: http://help2design.com
*/</span>
<span style="color: #000000; font-weight: bold;">function</span> wp_27_adminpost_fix<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
wp_deregister_script<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'autosave'</span><span style="color: #66cc66;">&#41;</span>;
wp_deregister_script<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'post'</span><span style="color: #66cc66;">&#41;</span>;
wp_deregister_script<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'word-count'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&#125;</span>
add_action<span style="color: #66cc66;">&#40;</span> <span style="color: #ff0000;">'wp_print_scripts'</span>, <span style="color: #ff0000;">'wp_27_adminpost_fix'</span> <span style="color: #66cc66;">&#41;</span>;
&nbsp;</pre>
<p><a href="http://help2design.com/plugins/wppagefix.zip">Click here</a> to Download this plugin. Activate the plugin and try to crete new pages. It will work fine!</p>
<p><a href="http://dhyeyatech.com/">WordPress development company in Bangalore</a></p>
]]></content:encoded>
			<wfw:commentRss>http://help2design.com/wordpress/your-attempt-to-edit-this-post-has-failed-wordpress-fix/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to setup wordpress on localhost?</title>
		<link>http://help2design.com/wordpress/how-to-setup-wordpress-on-localhost/</link>
		<comments>http://help2design.com/wordpress/how-to-setup-wordpress-on-localhost/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 12:13:47 +0000</pubDate>
		<dc:creator>Ranjith</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[create database]]></category>
		<category><![CDATA[localhost]]></category>
		<category><![CDATA[offline]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://help2design.com/?p=62</guid>
		<description><![CDATA[This is very simple using XAMPP. First download the xampp from http://www.apachefriends.org/en/xampp.html Extract the file and double click the exe. This will install Mysql and Apache servers. Once the installation is complete, you will find XAMPP under Start / Programs / XAMPP. You can use the XAMPP Control Panel to start/stop all servers. Start Mysql [...]]]></description>
			<content:encoded><![CDATA[<p>This is very simple using XAMPP.</p>
<ol>
<li>First download the xampp from <a href="http://www.apachefriends.org/en/xampp.html" target="_blank">http://www.apachefriends.org/en/xampp.html</a></li>
<li>Extract the file and double click the exe. This will install Mysql and Apache servers.</li>
<li>Once the installation is complete, you will find XAMPP under Start / Programs / XAMPP. You can use the XAMPP Control Panel to start/stop all servers. Start Mysql and Apache servers.</li>
<li>Now open any browser(IE or Mozilla) and enter the address as http://localhost/ <span id="more-62"></span></li>
<li>Select your Language</li>
<li>Now click phpMyAdmin</li>
<li>Create a new database for your wordpress website. Under MySQL provide the new database name for example "wpdatabase" and select "utf8_unicode_ci", click create.</li>
<li>Download the latest wordpress codes from <a href="http://wordpress.org" target="_blank">wordpress.org</a></li>
<li>Extract and copy folder "wordpress" to C:/Program Files/XAMPP/htdocs/</li>
<li>Open the file wp-config-sample.php in notepad.</li>
<li>Fill the details as below<br />
define('DB_NAME', 'wpdatabase'); // The name of the database<br />
define('DB_USER', 'root'); // Your MySQL username<br />
define('DB_PASSWORD', ''); // password<br />
define('DB_HOST', 'localhost');</li>
<li>Now open http://localhost/wordpress, provide the website name and email ID and click next.</li>
<li>Login using obtained password and admin as username.</li>
<li>View your first local wordpress website by browsing http://localhost/wordpress</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://help2design.com/wordpress/how-to-setup-wordpress-on-localhost/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Orange 3c -free WordPress theme</title>
		<link>http://help2design.com/wordpress/wordpress-themes/orange-3c-free-wordpress-theme/</link>
		<comments>http://help2design.com/wordpress/wordpress-themes/orange-3c-free-wordpress-theme/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 16:06:42 +0000</pubDate>
		<dc:creator>perla</dc:creator>
				<category><![CDATA[Wordpress Themes]]></category>

		<guid isPermaLink="false">http://help2design.com/wordpress-themes/orange-3c-free-wordpress-theme/</guid>
		<description><![CDATA[Orange 3c is a 3-column WordPress theme with two widget-ready sidebars, custom templates and a banner switcher. Theme is distributed under GPL, You are free to modify and use it.]]></description>
			<content:encoded><![CDATA[<p>Orange 3c is a 3-column WordPress theme with two widget-ready sidebars, custom templates and a banner switcher. Theme is distributed under GPL, You are free to modify and use it.</p>
]]></content:encoded>
			<wfw:commentRss>http://help2design.com/wordpress/wordpress-themes/orange-3c-free-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

