<?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>WPNoise.com</title>
	<atom:link href="http://wpnoise.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpnoise.com</link>
	<description>WordPress Blog Setup and Installation Services. WordPress Resources, Hacks, Tips &#38; Articles..</description>
	<lastBuildDate>Wed, 17 Feb 2010 12:32:07 +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>LiteSpeed WebServer on Slicehost VPS</title>
		<link>http://wpnoise.com/howto-configure-good-vps-hosting/</link>
		<comments>http://wpnoise.com/howto-configure-good-vps-hosting/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 17:42:15 +0000</pubDate>
		<dc:creator>Peter Slabosz</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[litespeed]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[slicehost]]></category>
		<category><![CDATA[VPS]]></category>
		<category><![CDATA[webserver]]></category>

		<guid isPermaLink="false">http://wpnoise.com/?p=390</guid>
		<description><![CDATA[What is VPS ?
A virtual private server (VPS, also referred to as Virtual Dedicated Server or VDS) is a method of splitting a server. Each virtual server can run its own full-fledged operating system, and each server can be independently rebooted.
The practice of partitioning a single server so that it appears as multiple servers has [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What is VPS ?</strong></p>
<p>A virtual private server (VPS, also referred to as Virtual Dedicated Server or VDS) is a method of splitting a server. Each virtual server can run its own full-fledged operating system, and each server can be independently rebooted.</p>
<p>The practice of partitioning a single server so that it appears as multiple servers has long been common practice in mainframe computers, but has seen a resurgence lately with the development of virtualization software and technologies for other architectures.</p>
<p><strong>What are the benefits of using VPS ?</strong></p>
<p>It is faster that shared hosting, so putting this to simple words your websites will work &#038; load faster with VPS. You will have full control of your system plus many other benefits.</p>
<p><strong>My hosting history</strong></p>
<p>I start with cheap shared hosting but after sometime I moved all my sites to VPS. I was testing many companies for long time but from almost 2 years I am using <a href="https://manage.slicehost.com/customers/new?referrer=1459990145">slicehost</a> and I am pretty happy with them.</p>
<p>In this post I try to show you howto setup good VPS hosting server and use it for your websites. It was written by my friend <a href="http://creativeflux.co.uk/">Dru</a> who helped me setup my VPS and I think it will be a good howto for all of you.</p>
<p><strong>Basic Details:</strong></p>
<ul>
<li>VPS Hosting Company: <a href="https://manage.slicehost.com/customers/new?referrer=1459990145">Slicehost</a></li>
<li>WebServer: <a href="http://litespeedtech.com/">LiteSpeed</a></li>
</ul>
<p>When I am starting new project, website I need to create couple of things:</p>
<h4>1. <strong>Create user</strong></h4>
<p><strong>a.)</strong> create a user using webmin</p>
<p>- Click on System in the sidebar, then on users and groups<br />
- Click on create new user<br />
- for the username ALWAYS use the domain name for the name of the user. So in this case:   example.org do the same for the group (choose new group and name it the same way &#8211; THIS IS VERY IMPORTANT)<br />
- then click save</p>
<p>When you create the user in webmin there should be a field where you can set the group, that will let you pick the www-data group before you create the user. </p>
<p><strong>b.)</strong> shell method (i prefered this method)</p>
<p>I use this one: adduser username &#8211;ingroup www-data &#8211;force-badname</p>
<p>where username = whatever you want the user to be called, ie</p>
<p>adduser example.org &#8211;ingroup www-data &#8211;force-badname</p>
<h4>2. <strong>Create LiteSpeed folders</strong></h4>
<p>Now you need to FTP in (don&#8217;t use ssh or sftp it has to be ftp). (use the server ip, the username will be whatever you called the user and the password will be whatever you configured)</p>
<p>Once you&#8217;ve done that create the following folders:   <strong>config   public_html  cgi-bin</strong></p>
<h4>3. <strong>New site in LiteSpeed</strong></h4>
<p>Login to litespeed  http://your_IP/index.php (user: **** password: ****)</p>
<p>Go to configuration, then virtualhost templates.<br />
Click on PHP_SuEXEC</p>
<p>Where it says Member Virtual Hosts click the add link to the right of it, then fill in the following:</p>
<p>- virtualhost name &#8211; should be the domain name (example.org)<br />
- domain name &#8211; should be the same as the above<br />
- aliases &#8211; should be the same as the above except with www. at the start (www.example.org)<br />
- virtualhost root &#8211; Leave Blank</p>
<p>Save, and then go to actions and graceful restart to restart the webserver.</p>
<p>FTP your files into the public_html folder and you should be able to access them in your browser.</p>
<h4>4. <strong>Importing Databases</strong></h4>
<p> when you move website between hostings</p>
<p>First create a blank database with phpmyadmin.</p>
<p>Then in the commandline, navigate to the folder where the sql file is. Then do this command:</p>
<p>mysql -u user -p user_dbname < file.sql</p>
<p>where dbname = name of the blank database<br />
where file.sql = the SQL file you're importing.</p>
<p>It will ask you for the root password and then in a few seconds it'll be done.</p>
<h4>5. <strong>BONUS TIPS &#038; TRICKS</strong></h4>
<p><strong>a.) How to move files when migrating to new server ?</strong></p>
<p>On old server <a href="http://lantech.geekvenue.net/chucktips/jason/chuck/994016279/index_html">backup files with tar</a>, you use one command line to backup all files to one tar or tar.gz file.</p>
<p>Put this file in public_html folder on this server. Next  go to new server and:</p>
<p>wget link_to_the_gzip_file_on_the_old_server</p>
<p>Next untar the files to proper place and that is it.</p>
<p><strong>b.) Problem with file permissions</strong></p>
<p>Sometimes when i move files from one server to another i got problems with file permissions on new server. To fix I use this method:</p>
<p>cd /home/example.org</p>
<p>and then do</p>
<p>chown -R example.org:www-data public_html</p>
<p>and then</p>
<p>chmod 770 -R public_html.</p>
<p><strong>c.) MySQL problem with coding, default charset</strong></p>
<p>Sometimes i got problem (<a href="http://www.marteydodoo.com/2005/08/02/wordpress-utf-8-charset-woes/">Wordpress UTF-8 Charset Woes</a>) with coding in sql base, there was strange coding problems in text and i need to fix that. I use this solution:</p>
<p>$ mysql &#8211;user=frog -p &#8211;execute=&#8221;DROP DATABASE dbname;<br />
CREATE DATABASE dbname CHARACTER SET utf8 COLLATE utf8_general_ci;&#8221;</p>
<p>$ mysql &#8211;user=frog &#8211;max_allowed_packet=16M -p &#8211;default-character-set=utf8 dbname < dump_utf8.sql </p>
<p>and it works for me..</p>
<p>To find more about this one look here: Convert latin1 to UTF-8 in MySQL</p>
<p><strong>So good luck</strong> with great hosting <strong><a href="https://manage.slicehost.com/customers/new?referrer=1459990145">Slicehost</a></strong> and webserver <strong>LiteSpeed</strong>, for me it works really great for almost 2 years now!</p>

	Tags: <a href="http://wpnoise.com/tag/litespeed/" title="litespeed" rel="tag">litespeed</a>, <a href="http://wpnoise.com/tag/mysql/" title="mysql" rel="tag">mysql</a>, <a href="http://wpnoise.com/tag/slicehost/" title="slicehost" rel="tag">slicehost</a>, <a href="http://wpnoise.com/tag/vps/" title="VPS" rel="tag">VPS</a>, <a href="http://wpnoise.com/tag/webserver/" title="webserver" rel="tag">webserver</a><br />
]]></content:encoded>
			<wfw:commentRss>http://wpnoise.com/howto-configure-good-vps-hosting/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>10 Tips How To Fix Wordpress Blank Page</title>
		<link>http://wpnoise.com/10-tips-how-to-fix-wordpress-blank-page/</link>
		<comments>http://wpnoise.com/10-tips-how-to-fix-wordpress-blank-page/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 20:12:38 +0000</pubDate>
		<dc:creator>Peter Slabosz</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[blank page]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://wpnoise.com/?p=368</guid>
		<description><![CDATA[I got some WordPress problems with two websites that I lead with blank WordPress site that they show. Finally it works for me and now I want to share with you some tips about WP blank page problems. I have this CSS gallery that was offline since some time&#8230; what I mean wp-admin pages works [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" src="http://wpnoise.com/wp-content/uploads/2009/11/wordpress-logo-notext-bg.png" alt="wordpress logo notext bg 10 Tips How To Fix Wordpress Blank Page" title="wordpress-logo-notext-bg" width="176" height="145" class="alignnone size-full wp-image-384" />I got some WordPress problems with two websites that I lead with <strong>blank WordPress site</strong> that they show. Finally it works for me and now I want to share with you some tips about <strong>WP blank page</strong> problems. I have this <a href="http://www.cssbloom.com/">CSS gallery</a> that was offline since some time&#8230; what I mean wp-admin pages works fine but front page was blank. This bug was after i migrate to another hosting company. Finally I found time to fix that bug. All off that was on Google and some of those things was my original ideas and some of theme are people comments to this post.</p>
<p>When you see <strong>blank page with your WordPress</strong> blog you can use my tips to find bug and fix that annoying problem.</p>
<h4>1. Turn off all plugins</h4>
<p>If you have access to your admin panel you do it from there but if don&#8217;t you can always &#8216;ftp&#8217; your website and move all your plugins to other directory so there will be no plugins active.</p>
<h4>2. Change theme to another one (refresh/check)</h4>
<p>Remember to turn off cache plugins if you use them, clear your cache.</p>
<h4>3. Creates or/and update .htaccess file</h4>
<p>You can browse it by linux console for example. If you don&#8217;t know how to use &#8217;ssh&#8217; try to read a little bit on google about it. You can use free Putty software to ssh your files on server.</p>
<h4>4. Edit and save post, permalinks&#8230;. stuff like that</h4>
<p>Update your permalink structure. Just click update in WordPress, don&#8217;t change it to other structure, this can be really bad for SEO.</p>
<h4>5. Update to newest version of WordPress</h4>
<h4>6. Check <a href="http://www.phpdebutant.com/forum/7/How_do_I_check_the_version_of_PHP.htm">what PHP version you have</a></h4>
<p>@Mittineague said: For PHP errors, I find the easiest way to trouble-shoot when developing a plugin is to make a direct HTTP request for the file. eg domain.com/blog_dir/wp-content/plugins/pluginfile.php<br />
This way will show syntax errors and other PHP error messages.<br />
When the file is OK PHP-wise, you will then see errors like<br />
[WordPress-function name here] not found.<br />
For incompatibility problems though, deactivating and reactivating is the best way, especially now that WordPress “sand boxes” and will show a “could not be activated” message.<br />
And don’t learn the hard way. Back-up, back-up, back-up!</p>
<h4>7. Check this out:</h4>
<p>WordPress should compress articles (gzip) if browsers ask for them&#8230; in my situation this fix my blank page error</p>
<h4>8. Check error logs</h4>
<p>To find something interesting about your problem try to look for http error log and you will see there which file causes errors.</p>
<h4>9. wp-config.php</h4>
<p>Edit wp-config.php file (which is WordPress main configuration file) and look for blank lines in the end, sometimes text editors add this line and it can broke WordPress installation.</p>
<h4>10. Delete all Akismet spam comments</h4>
<p>You can read more about it: <a href="http://blog.boullosa.org/en/2008/05/solucao-para-painel-de-administracao-do-wordpress-em-branco/">Solution for Wordpress blank admin page</a></p>
<p>Point 7 helps me with my <a href="http://www.cssbloom.com/">CSS gallery</a>. </p>
<p>In the meantime I generate problems with <a href="http://silentbits.com/">SilenBits</a> and it was blank too&#8230;.I&#8217;ve solved the problem using this fix: <em>Change theme to another one (refresh/check)</em></p>
<p>So good luck and no WordPress blank pages for you !</p>

	Tags: <a href="http://wpnoise.com/tag/blank-page/" title="blank page" rel="tag">blank page</a>, <a href="http://wpnoise.com/tag/fix/" title="fix" rel="tag">fix</a>, <a href="http://wpnoise.com/tag/howto/" title="howto" rel="tag">howto</a>, <a href="http://wpnoise.com/tag/tips/" title="tips" rel="tag">tips</a>, <a href="http://wpnoise.com/tag/wordpress/" title="Wordpress" rel="tag">Wordpress</a><br />
]]></content:encoded>
			<wfw:commentRss>http://wpnoise.com/10-tips-how-to-fix-wordpress-blank-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Latest Post</title>
		<link>http://wpnoise.com/latest-posts/</link>
		<comments>http://wpnoise.com/latest-posts/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 19:05:37 +0000</pubDate>
		<dc:creator>Peter Slabosz</dc:creator>
				<category><![CDATA[Minipost]]></category>
		<category><![CDATA[minipost]]></category>

		<guid isPermaLink="false">http://wpnoise.com/?p=335</guid>
		<description><![CDATA[
Blog: LiteSpeed WebServer on Slicehost VPS


	Tags: minipost
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" src="http://wpnoise.com/wp-content/uploads/2009/10/Draft.png" alt="Draft Latest Post" title="Draft" width="48" height="48" class="alignnone size-full wp-image-352" />
<ul>
<li><b>Blog</b>: <a href="http://wpnoise.com/howto-configure-good-vps-hosting/">LiteSpeed WebServer on Slicehost VPS</a></li>
</ul>

	Tags: <a href="http://wpnoise.com/tag/minipost/" title="minipost" rel="tag">minipost</a><br />
]]></content:encoded>
			<wfw:commentRss>http://wpnoise.com/latest-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPDesignBlog</title>
		<link>http://wpnoise.com/wpdesignblog/</link>
		<comments>http://wpnoise.com/wpdesignblog/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 18:02:45 +0000</pubDate>
		<dc:creator>Peter Slabosz</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://wpnoise.com/?p=183</guid>
		<description><![CDATA[WPDesignBlog is blog about WordPress themes, plugins &#038; hacks... all that concentrates on WordPress. Based on free WordPress theme with small modifications.]]></description>
			<content:encoded><![CDATA[<p>WPDesignBlog is blog about WordPress themes, plugins &#038; hacks&#8230; all that concentrates on WordPress. This blog supplies visitors with more specialized information about creating your own blogs using WordPress. You can find many tips and solutions to numerous problems that will improve your blogging skills and facilitate the creation of your own original projects.It is based on free WordPress theme with small modifications.</p>
<p><strong>WordPress Theme:</strong> </p>
<ul>
<li>You can find theme that we use on this site on <a href="http://web-kreation.com/">Web-kreation</a> portal.</li>
</ul>
<p><strong>Features:</strong></p>
<ul>
<li>Customized free WordPress theme</li>
<li>125&#215;125 ads support</li>
<li>Hosting on our VPS server</li>
<li>Using free WordPress plugins</li>
<li>RSS using FeedBurner</li>
<li>Google Analytics Statistics</li>
</ul>
<p>Website is up2date with WordPress version and all plugins are in newest versions.</p>
No tags for this post.]]></content:encoded>
			<wfw:commentRss>http://wpnoise.com/wpdesignblog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSSBloom</title>
		<link>http://wpnoise.com/cssbloom/</link>
		<comments>http://wpnoise.com/cssbloom/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 17:52:09 +0000</pubDate>
		<dc:creator>Peter Slabosz</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[featured]]></category>

		<guid isPermaLink="false">http://wpnoise.com/?p=178</guid>
		<description><![CDATA[CSS Bloom is a gallery website showing the best CSS based designs used by Blog's and Online Portfolio's. This site has unique WordPress theme special for this CSS Gallery and shows that WordPress can be used as CSS Gallery script also.]]></description>
			<content:encoded><![CDATA[<p>CSS Bloom is a gallery website showing the best CSS based designs used by Blogs and Online Portfolios. By providing links and previews of the best designs, we aim to provide our viewers with inspiration for their websites. This site has a unique WordPress theme (chosen specially for this CSS Gallery) and shows that WordPress can also be used as CSS Gallery script .</p>
<p><strong>Blog Stats:</strong></p>
<ul>
<li>1,366 posts</li>
<li>491 comments</li>
<li>27 categories and 5 tags</li>
</ul>
<p><strong>Spam:</strong></p>
<ul>
<li>Akismet has protected your site from 22,475 spam comments</li>
</ul>
<p><strong>Features:</strong></p>
<ul>
<li>Customized free WordPress theme</li>
<li>Hosting on our VPS server</li>
<li>Using free WordPress plugins</li>
<li>RSS using FeedBurner</li>
<li>Adsense Implementation</li>
<li>Google Analytics Statistics</li>
</ul>
<p>Website is up2date with WordPress version and all plugins are in newest versions.</p>

	Tags: <a href="http://wpnoise.com/tag/featured/" title="featured" rel="tag">featured</a><br />
]]></content:encoded>
			<wfw:commentRss>http://wpnoise.com/cssbloom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SilentBits</title>
		<link>http://wpnoise.com/silentbits/</link>
		<comments>http://wpnoise.com/silentbits/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 17:42:57 +0000</pubDate>
		<dc:creator>Peter Slabosz</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[featured]]></category>

		<guid isPermaLink="false">http://wpnoise.com/?p=174</guid>
		<description><![CDATA[SilentBits is my personal blog focused on WordPress and all other aspects of online life. Theme was based on free K2 WordPress theme plus special header created by designer special for my weblog.]]></description>
			<content:encoded><![CDATA[<p>SilentBits is my personal blog focusing on WordPress and all other aspects of online life. The chosen theme is based on free K2 WordPress theme that was accompanied by a special header( individually designed  for my weblog). As you can see this theme is rather big, many plugins are installed and it is really hard to find new template for my blog. This is the fourth version of my blog theme, previous three were also based on free WordPress themes (all information about it is available on this site).</p>
<p><strong>WordPress Theme:</strong></p>
<ul>
<li>Original K2 WordPress theme can be found on <a href="http://www.johntp.com/">JohnTP blog</a></li>
</ul>
<p><strong>Blog Stats:</strong></p>
<ul>
<li>439 posts</li>
<li>1,635 comments</li>
<li>39 categories and 377 tags</li>
</ul>
<p><strong>Spam:</strong></p>
<ul>
<li>Akismet has protected your site from 116,897 spam comments</li>
</ul>
<p><strong>Features:</strong></p>
<ul>
<li>Customized free WordPress theme</li>
<li>Hosting on our VPS server</li>
<li>Using free WordPress plugins</li>
<li>RSS using FeedBurner</li>
<li>Adsense Implementation</li>
<li>Google Analytics Statistics</li>
</ul>
<p>Website is up2date with WordPress version and all plugins are in newest versions.</p>

	Tags: <a href="http://wpnoise.com/tag/featured/" title="featured" rel="tag">featured</a><br />
]]></content:encoded>
			<wfw:commentRss>http://wpnoise.com/silentbits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vista Styles</title>
		<link>http://wpnoise.com/vista-styles/</link>
		<comments>http://wpnoise.com/vista-styles/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 17:31:39 +0000</pubDate>
		<dc:creator>Peter Slabosz</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://wpnoise.com/?p=167</guid>
		<description><![CDATA[Another big website with good traffic based totally on WordPress plus simple plugins. WordPress theme design specialy for this VistaStyles project with some customization made by me.]]></description>
			<content:encoded><![CDATA[<p>Another big website with good traffic based  completely on WordPress using simple plugins. VistaStyles is a place where you can switch your Windows XP default desktop to new Vista look. Blog gathers the best styles, icons, wallpapers and all customized stuff that helps you modify your desktop to Vista. WordPress theme was designed individually for this VistaStyles project with my own customization.</p>
<p><strong>Blog Stats:</strong></p>
<ul>
<li>967 posts</li>
<li>3,386 comments</li>
<li>52 categories</li>
</ul>
<p><strong>Spam:</strong></p>
<ul>
<li>Akismet has protected your site from 65,203 spam comments</li>
</ul>
<p><strong>Features:</strong></p>
<ul>
<li>Customized free WordPress theme</li>
<li>Hosting on our VPS server</li>
<li>Using free WordPress plugins</li>
<li>RSS using FeedBurner</li>
<li>Adsense Implementation</li>
<li>Google Analytics Statistics</li>
</ul>
<p>Website is up2date with WordPress version and all plugins are in newest versions.</p>
No tags for this post.]]></content:encoded>
			<wfw:commentRss>http://wpnoise.com/vista-styles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GUIStyles Portal</title>
		<link>http://wpnoise.com/guistyles-portal/</link>
		<comments>http://wpnoise.com/guistyles-portal/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 12:52:37 +0000</pubDate>
		<dc:creator>Peter Slabosz</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[featured]]></category>

		<guid isPermaLink="false">http://wpnoise.com/?p=55</guid>
		<description><![CDATA[GUIStyles Portal is huge website with many visitors everyday. It focused on customize operating systems with nice wallpapers, icons, themes and all that you can dream off on your computer desktop.]]></description>
			<content:encoded><![CDATA[<p>GUIStyles Portal is a huge website with many daily visitors . It focuses on customizing operating systems with nice wallpapers, icons, themes and all that you can dream of on your computer desktop. Because this site provides very high daily traffic,  you can observe how our hosting server works, the site is 24h online and it is pretty fast. We optimize all websites using many techniques, plugins, themes, css files.. we are considering everything to provide our websites with the best performance possible.</p>
<p><strong>WordPress Theme:</strong></p>
<ul>
<li>You can find original WordPress theme searching : <a href="http://www.aqua-soft.org/forum/">Aqua-Soft Forums</a></li>
</ul>
<p><strong>Blog Stats:</strong></p>
<ul>
<li>4,528 posts </li>
<li>1,644 comments</li>
<li>76 categories</li>
</ul>
<p><strong>Spam:</strong></p>
<ul>
<li>Akismet has protected your site from 40,998 spam comments</li>
</ul>
<p><strong>Features:</strong></p>
<ul>
<li>Customized free WordPress theme</li>
<li>Hosting on our VPS server</li>
<li>Using free WordPress plugins</li>
<li>RSS using FeedBurner</li>
<li>Adsense Implementation</li>
<li>Google Analytics Statistics</li>
</ul>
<p>Website is up2date with WordPress version and all plugins are in newest versions.</p>

	Tags: <a href="http://wpnoise.com/tag/featured/" title="featured" rel="tag">featured</a><br />
]]></content:encoded>
			<wfw:commentRss>http://wpnoise.com/guistyles-portal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iTunes Skins</title>
		<link>http://wpnoise.com/itunes-skins/</link>
		<comments>http://wpnoise.com/itunes-skins/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 12:15:43 +0000</pubDate>
		<dc:creator>Peter Slabosz</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[featured]]></category>

		<guid isPermaLink="false">http://wpnoise.com/?p=48</guid>
		<description><![CDATA[iTunes Skins was build in the end of 2008 using WordPress and free to use WordPress Theme called TigerPress. As you can see we customize it a little bit to fit our taste.]]></description>
			<content:encoded><![CDATA[<p>iTunes Skins was build at the end of 2008 using WordPress and free to use WordPress Theme called TigerPress. We chose the best Apple related themes on the market which was Tigerpress relased by Smashing Magazine website. As you can see we customized it a bit to fit our taste.</p>
<p><strong>WordPress Theme:</strong></p>
<ul>
<li>You can find it and see the original version: <a href="http://www.smashingmagazine.com/2008/07/28/tigerpress-a-free-wordpress-theme/">Tigerpress: A Free Wordpress Theme</a></li>
</ul>
<p>Looking at actual iTunes Skins portal you can see how we changed it, how many plugins we implemented to make it more appealing for visitors.</p>
<p><strong>Wordpress Theme Tweaks:</strong></p>
<ul>
<li><a href="http://wpnoise.com/wordpress-footer-addons/">Upgrade WordPress footer with special addons</a></li>
</ul>
<p><strong>Features:</strong></p>
<ul>
<li>Based on free WordPress theme</li>
<li>Hosting on our VPS server</li>
<li>Using free WordPress plugins</li>
<li>RSS using FeedBurner</li>
<li>Adsense Implementation</li>
<li>Google Analytics Statistics</li>
</ul>
<p>Website is up2date with WordPress version and all plugins are in newest versions.</p>

	Tags: <a href="http://wpnoise.com/tag/featured/" title="featured" rel="tag">featured</a><br />
]]></content:encoded>
			<wfw:commentRss>http://wpnoise.com/itunes-skins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrade WordPress footer with special addons</title>
		<link>http://wpnoise.com/wordpress-footer-addons/</link>
		<comments>http://wpnoise.com/wordpress-footer-addons/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 10:58:29 +0000</pubDate>
		<dc:creator>Peter Slabosz</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[footer]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://wpnoise.com/?p=11</guid>
		<description><![CDATA[In my first post on my own portfolio I would like to show you how to upgrade any free WordPress theme to premium one. What we will do is change a little bit your footer to make it more pro. 
We want to reach something like this.

You can see live preview here: Ideal WordPress Footer [...]]]></description>
			<content:encoded><![CDATA[<p>In my first post on my own portfolio I would like to show you how to upgrade any free WordPress theme to premium one. What we will do is change a little bit your footer to make it more pro. </p>
<p>We want to reach something like this.</p>
<p><a href="http://silentbits.com/silentbits/wp-content/uploads/2009/09/big_preview1.jpg"><img src='http://silentbits.com/silentbits/wp-content/uploads/2009/09/footer2.jpg' alt='wordpress-footer' title="Upgrade WordPress footer with special addons" /></a></p>
<p>You can see live preview here: <a href="http://itunes-skins.com/itunes-9-dark-grid-mod/">Ideal WordPress Footer</a> and you can decide whether you want to have something like this on your blog. </p>
<p>Basically we have 3 parts for this project:</p>
<ul>
<li>&#8216;Sharing is sexy&#8217; plugin</li>
<li>Author page</li>
<li>Related post with thumbnails</li>
</ul>
<p>It&#8217;s simple to apply on your own blog but if you have any questions let me know. This soultions works for me so it must work for you as well.</p>
<p><strong></strong><br />
<strong></strong></p>
<h4>&#8216;Sharing is sexy&#8217;</h4>
<p><strong></strong></p>
<p><img src='http://silentbits.com/silentbits/wp-content/uploads/2009/09/sharing_is_sexy1.jpg' alt='sharing_is_sexy1.jpg' title="Upgrade WordPress footer with special addons" /></p>
<p>This is very simple to install and the effect in my opinion is amazing.</p>
<p>First you need to go to this location: <a href="http://sexybookmarks.net/documentation/usage-installation">sexybookmarks</a> and click &#8216;Download&#8217; button. This is a simple WordPress plugin that you need to upload to your WordPress server and activate using admin panel.</p>
<p>Next you setup your networks and other options using WordPress admin panel. &#8216;Sharing is sexy&#8217; functionality will appear automatically, you can choose if you want to see it on homepage or only in posts, pages.</p>
<p>If you want to put your bookmarks manually use this code in your theme:</p>
<p><code>&lt;?php if(function_exists(&#039;selfserv_sexy&#039;)) { selfserv_sexy(); } ?&gt;<!--formatted--></code></p>
<p>and setup this one using plugin admin page:</p>
<p><em>Menu Location (in relevance to content):<br />
Above Content |  Below Content  | <strong>Manual Mode</strong></em></p>
<p>It will work, trust me.</p>
<p><strong></strong><br />
<strong></strong></p>
<h4>Author page</h4>
<p><img src='http://silentbits.com/silentbits/wp-content/uploads/2009/09/author-psdtuts.jpg' alt='author-psdtuts.jpg' title="Upgrade WordPress footer with special addons" /></p>
<p>This is also pretty cool and looks very nice on blogs. To setup this one I use this link: <a href="http://gabediaz.com/blog/displaying-author-pic-and-bio-in-your-wordpress-post/">Displaying Author Pic and Bio in Your Wordpress Post the Non-Gravatar Way</a> but I made some modifications.</p>
<p>I use static text message &#8216;<em>about me</em>&#8216; and put it direct to my WordPress theme code. It means that I took css code from link above and use this php code in my actual theme:</p>
<p><code>&lt;div class=&quot;authbio&quot;&gt;<br />
&lt;img src=&quot;your_photo_url/images/sample.jpg&quot; alt=&quot;&quot; class=&quot;alignleft&quot;/&gt;<br />
Put static text in wordpress theme with html tags like &lt;strong&gt; etc...<br />
&lt;/div&gt;<br />
<!--formatted--></code></p>
<p>CSS code that i&#8217;ve added to my theme style.css is:</p>
<p><code>.authbio{<br />
color: #666;<br />
font-weight: normal;<br />
background: #fff;<br />
border: 1px solid #ccc;<br />
width: 420px;<br />
height:60px;<br />
padding: 8px;<br />
margin-bottom:5px;<br />
}</code></p>
<p>and this one for image:</p>
<p><code>img.alignleft {<br />
    float:left;<br />
    background-color: #fff;<br />
    border:1px solid #ccc;<br />
    padding: 4px;<br />
    margin: 0 7px 2px 0;<br />
    display: inline;<br />
}</code></p>
<p>After small CSS changes it looks like this:</p>
<p><img src='http://silentbits.com/silentbits/wp-content/uploads/2009/09/about.jpg' alt='about.jpg' title="Upgrade WordPress footer with special addons" /></p>
<p><strong></strong><br />
<strong></strong></p>
<h4>Related post with thumbnails</h4>
<p><img src='http://silentbits.com/silentbits/wp-content/uploads/2009/09/yarpp-thumbails-result.jpg' alt='yarpp-thumbails-result.jpg' title="Upgrade WordPress footer with special addons" /></p>
<p>We need plugin that will match related posts and add preview images to them.</p>
<p>First step is download and active this plugin: <a href="http://mitcho.com/code/yarpp/">YARPP</a> and then use tips from this article:<br />
<a href="http://buildinternet.com/2009/07/display-thumbnails-for-related-posts-in-wordpress/">Display Thumbnails For Related Posts in Wordpress</a>.</p>
<p>You need to add this php code to your theme:</p>
<p><code>&lt;?php if (function_exists(&#039;related_posts&#039;)){ ?&gt;<br />
      &lt;?php related_posts();?&gt;<br />
&lt;?php }?&gt;  <!--formatted--></code></p>
<p>Download Related Post Template File from link above and put it to plugins directory and add propere CSS code to your style.css</p>
<p><code>/* Related Posts */<br />
ol.related-posts {clear:both; text-align:center; margin:10px 0px 0px 0px; padding:0;}<br />
ol.related-posts li{width:120px; float:left; display:inline; margin-right:15px;; padding:0;}<br />
    ol.related-posts img{clear:both; padding:5px; background:#F7F7F7; border:1px solid #DDD;}<br />
    ol.related-posts a{clear:both; display:block; border:none; text-decoration:none;}<br />
    ol.related-posts li{font-size:12px;}  </code></p>
<p>Then all you need to do is activate new tempalte with plugin admin page.</p>
<p>If you have problems let me know, I can help you .. it is pretty easy to implement using link above. Remember that you need to manually add post thumbnails to your posts using custom fields after you setup everything.</p>
<p>You can read more about this website update and tweaking footer and other WordPress stuff :</p>
<ul>
<li><a href="http://itunes-skins.com/itunes-skins-web-site-update/">iTunes Skins – Web site update Part I</a></li>
<li><a href="http://itunes-skins.com/itunes-skins-web-site-update-part-ii/">iTunes Skins – Web site update Part II</a></li>
</ul>
<p>Good luck and hope to see some implementation of my ideas in future.</p>

	Tags: <a href="http://wpnoise.com/tag/footer/" title="footer" rel="tag">footer</a>, <a href="http://wpnoise.com/tag/hacks/" title="hacks" rel="tag">hacks</a>, <a href="http://wpnoise.com/tag/wordpress/" title="Wordpress" rel="tag">Wordpress</a><br />
]]></content:encoded>
			<wfw:commentRss>http://wpnoise.com/wordpress-footer-addons/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
