<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>SOS Wordpress</title>
	
	<link>http://www.soswp.com</link>
	<description>Save our blogs</description>
	<lastBuildDate>Wed, 10 Mar 2010 18:16: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>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/SosWordpress" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="soswordpress" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>How to modify users contact info using a simple function</title>
		<link>http://www.soswp.com/en/2010/03/how-to-modify-users-contact-info-using-a-simple-function/</link>
		<comments>http://www.soswp.com/en/2010/03/how-to-modify-users-contact-info-using-a-simple-function/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 18:13:57 +0000</pubDate>
		<dc:creator>Fulippo</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[contact methods]]></category>
		<category><![CDATA[filters]]></category>
		<category><![CDATA[hooks]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.soswp.com/?p=79</guid>
		<description><![CDATA[Learn how to add and remove fields from users profile using a simple PHP function]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;margin-bottom:10px">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.soswp.com%2Fen%2F2010%2F03%2Fhow-to-modify-users-contact-info-using-a-simple-function%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.soswp.com%2Fen%2F2010%2F03%2Fhow-to-modify-users-contact-info-using-a-simple-function%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>One of the greatest feature of WordPress, on the side of code, is the way filters and hooks make you life really easy when you try to modify default behaviours. </p>
<p>In this tutorial we assume you are already comfortable with hooks and filters. If not so take a look at the codex to learn more about the hooks/fillters logic.</p>
<p>WordPress users contact details usually looks as shown in picture:</p>
<p><img src="http://www.soswp.com/wp-content/uploads/contact_methods.png" alt="" title="contact_methods" width="580" height="280" class="alignnone size-full wp-image-81" /></p>
<p>As default, we only have few fields: E-mail, website, AIM, Yahoo IM and Jabber / Google Talk. So how can we add more fields (or remove some unused ones) to fit our needs?</p>
<p>The solution is the <em>user_contactmethods</em> hook. By assigning a custom callback function to this hook (in the functions.php file of our theme for example) we will be able to manipulate all above fields (except for e-mail field)</p>
<p>So, for example, if you want to add more fields just put these lines of code inside functions.php:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> my_contactmethods<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$contactmethods</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
	<span style="color: #000088;">$contactmethods</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'my_other_website'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'My Other Website'</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$contactmethods</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'my_phone_number'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'My Phone Number'</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$contactmethods</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'my_skype'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'My Skype Contact'</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$contactmethods</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'my_credit_card'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'My Credit Card Number ;)'</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">return</span> <span style="color: #000088;">$contactmethods</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'user_contactmethods'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'my_contactmethods'</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">10</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>All available fields are enclosed inside an array, called $contactmethods, so, by using a callback function, you can easily add or remove any field you want.</p>
<p>In the example above we add 4 fields which will be available, through user_metadata, to every user.</p>
<p>If you just want to remove some unused field, do as follow:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> my_contactmethods<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$contactmethods</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
	<span style="color: #990000;">unset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$contactmethods</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'aim'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">unset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$contactmethods</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'yim'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">unset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$contactmethods</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'jabber'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">return</span> <span style="color: #000088;">$contactmethods</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'user_contactmethods'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'my_contactmethods'</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">10</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Using <em>unset</em> will remove the contact methods from the form.</p>
<p>Code is poetry ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.soswp.com/en/2010/03/how-to-modify-users-contact-info-using-a-simple-function/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Add TweetMeme button to your blog</title>
		<link>http://www.soswp.com/en/2010/03/add-tweetmeme-button-to-your-blog/</link>
		<comments>http://www.soswp.com/en/2010/03/add-tweetmeme-button-to-your-blog/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 17:42:40 +0000</pubDate>
		<dc:creator>Fulippo</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[tweetmeme]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.soswp.com/?p=72</guid>
		<description><![CDATA[
			
				
			
		
TweetMeme is a service which aggregates all the popular links on Twitter to determine which links are popular. TweetMeme categorises these links into Categories, Subcategories and Channels, making it easy to filter out the noise to find what you&#8217;re interested in.
So, how to use this service to help your visitors and share your posts? As [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;margin-bottom:10px">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.soswp.com%2Fen%2F2010%2F03%2Fadd-tweetmeme-button-to-your-blog%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.soswp.com%2Fen%2F2010%2F03%2Fadd-tweetmeme-button-to-your-blog%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<blockquote><p><a href="http://tweetmeme.com/">TweetMeme</a> is a service which aggregates all the popular links on Twitter to determine which links are popular. TweetMeme categorises these links into Categories, Subcategories and Channels, making it easy to filter out the noise to find what you&#8217;re interested in.</p></blockquote>
<p>So, how to use this service to help your visitors and share your posts? As always, when you need something about WordPress there is already a ready plugin: <a href="http://wordpress.org/extend/plugins/tweetmeme/">http://wordpress.org/extend/plugins/tweetmeme/</a></p>
<p>To use the plugin you just need to upload it in the <em>Plugins</em> directory of your WordPress installation, activate it and go to the preferences page to set it to work properly.</p>
<p>If you want to style the button to fit your blog&#8217;s design you can easily do it through the css id given to the button. Once activated the button will have an id <em>tweetmeme_button</em></p>
<p>That&#8217;s all. Enjoy your TweetMeme button</p>
]]></content:encoded>
			<wfw:commentRss>http://www.soswp.com/en/2010/03/add-tweetmeme-button-to-your-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add a simple contact form using the easy-contact plugin</title>
		<link>http://www.soswp.com/en/2010/03/how-to-add-a-simple-contact-form-with-easy-contact-form/</link>
		<comments>http://www.soswp.com/en/2010/03/how-to-add-a-simple-contact-form-with-easy-contact-form/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 09:01:23 +0000</pubDate>
		<dc:creator>Fulippo</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[contact]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.soswp.com/?p=61</guid>
		<description><![CDATA[
			
				
			
		
If you want to add a simple and easy to use contact form to your blog, easy-contact is the choice for you.
Thanks to easy-contact and shortcodes you just have to type &#8220;[easy-contact]&#8221; (without quotes) anywhere in your posts/pages to display the contact form.
Easy-contact is not very sofisticated and lacks some features other similar plugins have [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;margin-bottom:10px">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.soswp.com%2Fen%2F2010%2F03%2Fhow-to-add-a-simple-contact-form-with-easy-contact-form%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.soswp.com%2Fen%2F2010%2F03%2Fhow-to-add-a-simple-contact-form-with-easy-contact-form%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>If you want to add a simple and easy to use contact form to your blog, easy-contact is the choice for you.<br />
Thanks to easy-contact and shortcodes you just have to type &#8220;[easy-contact]&#8221; (without quotes) anywhere in your posts/pages to display the contact form.</p>
<p>Easy-contact is not very sofisticated and lacks some features other similar plugins have (multilanguage support for example) but it will<br />
be the right choice if you don&#8217;t need any advanced features from you contact form.</p>
<p>Installing the easy-contact plugin is, as WordPress customary, very easy: just put the plugin files into the <em>plugins</em> directory of<br />
you WordPress installation and activate the plugin from the admin panel.</p>
<p>An option page named &#8220;Contact&#8221; will be added under the Settings menu allowing you to set some basic preferences.</p>
<p>To display the form you will have to put the shortcode &#8220;[easy-contact]&#8221; (without quotes) inside the page/post where you want it to be displayed.</p>
<p>Remember that you may need some css work to make the displayed form suit your theme because it comes with no particular styles embedded.</p>
<p>Enjoy</p>
]]></content:encoded>
			<wfw:commentRss>http://www.soswp.com/en/2010/03/how-to-add-a-simple-contact-form-with-easy-contact-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to modify excerpt’s length</title>
		<link>http://www.soswp.com/en/2010/02/how-to-modify-excerpt-length/</link>
		<comments>http://www.soswp.com/en/2010/02/how-to-modify-excerpt-length/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 00:19:21 +0000</pubDate>
		<dc:creator>Fulippo</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[excerpt]]></category>
		<category><![CDATA[functions.php]]></category>

		<guid isPermaLink="false">http://www.soswp.com/?p=53</guid>
		<description><![CDATA[Learn how to modify WordPress default excerpt's length with a simple php function.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;margin-bottom:10px">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.soswp.com%2Fen%2F2010%2F02%2Fhow-to-modify-excerpt-length%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.soswp.com%2Fen%2F2010%2F02%2Fhow-to-modify-excerpt-length%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Fast and easy: to modify excerpt lenght you just have to put the following lines inside the <em>functions.php</em> file inside your theme:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">    <span style="color: #000000; font-weight: bold;">function</span> modify_excerpt_length<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
        <span style="color: #b1b100;">return</span> <span style="color: #cc66cc;">20</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// Modify this</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
    add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'excerpt_length'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'modify_excerpt_length'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Reference:<br />
<a href="http://codex.wordpress.org/Function_Reference/add_filter" title="Codex">Codex: Add Filter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.soswp.com/en/2010/02/how-to-modify-excerpt-length/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to optimize WordPress for search engines (first steps)</title>
		<link>http://www.soswp.com/en/2010/02/how-to-optimize-wordpress-for-search-engines/</link>
		<comments>http://www.soswp.com/en/2010/02/how-to-optimize-wordpress-for-search-engines/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 16:22:33 +0000</pubDate>
		<dc:creator>Fulippo</dc:creator>
				<category><![CDATA[Newbie]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.soswp.com/?p=39</guid>
		<description><![CDATA[
			
				
			
		
SEO (Search Engine Optimization) is really easy on WordPress. The platform itself has many advantages in terms of optimization even if using a basic installation with default theme active.
To improve the overall results you may need to install some extra plugins. Among these the 2 must have plugins are: All in One SEO pack and [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;margin-bottom:10px">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.soswp.com%2Fen%2F2010%2F02%2Fhow-to-optimize-wordpress-for-search-engines%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.soswp.com%2Fen%2F2010%2F02%2Fhow-to-optimize-wordpress-for-search-engines%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>SEO (Search Engine Optimization) is really easy on WordPress. The platform itself has many advantages in terms of optimization even if using a basic installation with default theme active.</p>
<p>To improve the overall results you may need to install some extra plugins. Among these the 2 must have plugins are: <a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">All in One SEO pack</a> and <a href="http://wordpress.org/extend/plugins/google-sitemap-generator/">Google Sitemap Generator</a>. Here&#8217;s what they do in detail:</p>
<table width="100%">
<tr>
<th>Plugin</th>
<th>Description</th>
</tr>
<tr>
<td><a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">All in One SEO</a></td>
<td><a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">AIOSEO</a> (for friends) is a very powerful plugin that can help you customize some important setting WordPress doesn&#8217;t take care of. Among the most importants: title keywords order, canonical URLs, custom meta description and keywords per page, homepage custom title and description</td>
</tr>
<tr>
<td><a href="http://wordpress.org/extend/plugins/google-sitemap-generator/">Google Sitemap Generator</a></td>
<td>Automagically generates an XML sitemap based on your posts and pages. It automatically updates the sitemap on post/page creation. Very useful to notify Google when a new post has been published</td>
</tr>
</table>
<p>Remember to always install and activate these two plugins to get the best out of WordPress and search engines</p>
]]></content:encoded>
			<wfw:commentRss>http://www.soswp.com/en/2010/02/how-to-optimize-wordpress-for-search-engines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First steps with WordPress: quick installation guide</title>
		<link>http://www.soswp.com/en/2010/02/installing-wordpress-tutorial/</link>
		<comments>http://www.soswp.com/en/2010/02/installing-wordpress-tutorial/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 13:24:48 +0000</pubDate>
		<dc:creator>Fulippo</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[wordpress installation]]></category>
		<category><![CDATA[wordpress support]]></category>

		<guid isPermaLink="false">http://www.soswp.com/?p=1</guid>
		<description><![CDATA[
			
				
			
		
The very first step to enter the WordPress world is, of course, the installation. It is not that difficult: you only need some basic concepts, some data and a little bit of patience. We will guide you in a step by step installation to help you enter the fantastic world of WordPress.
What do we need?
In [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;margin-bottom:10px">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.soswp.com%2Fen%2F2010%2F02%2Finstalling-wordpress-tutorial%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.soswp.com%2Fen%2F2010%2F02%2Finstalling-wordpress-tutorial%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>The very first step to enter the WordPress world is, of course, the installation. It is not that difficult: you only need some basic concepts, some data and a little bit of patience. We will guide you in a step by step installation to help you enter the fantastic world of WordPress.</p>
<p><strong>What do we need?</strong></p>
<p>In order to install WordPress we will need few technical information (database name, database username and password, table prefix) and some general information regarding the blog you are going to create (blog name, administrator e-mail address).</p>
<p>Is that all? Not really. Before starting the installation process we must have already created a working MySQL database. This is a typical installation mistake that may prevent someone from correctly installing WordPress.</p>
<p><strong>So, how to create a MySQL database?</strong></p>
<p>There are many ways to create a MySQL database. The most common way is to use phpMyAdmin (a web based tool to administer MySQL databases). We assume you have phpMyAdmin already installed and working (the installation of phpMyAdmin is not the purpose of this tutorial). Once you have access to phpMyAdmin you only have to insert the database name into the text field named &#8220;Create New Database&#8221; (shown in picture). That&#8217;s all you have created your MySQL database.</p>
<p><strong>Ready to go!</strong></p>
<p>Copy all WordPress files into the root directory of your you web space and then go to the corresponding URL using you web browser.</p>
<p>You should see a screen like this:</p>
<p><img class="alignnone size-full wp-image-10" title="0" src="http://www.soswp.com/wp-content/uploads/0.png" alt="" width="440" height="112" /></p>
<p>This is the WordPress installer interface. Click on &#8220;Create a Configuration File&#8221; to go to the next step:</p>
<p><img class="alignnone size-full wp-image-14" title="1" src="http://www.soswp.com/wp-content/uploads/1.png" alt="" width="440" height="268" /></p>
<p>Click the &#8220;Let&#8217;s go&#8221; button to begin the real installation process:</p>
<p><img class="alignnone size-full wp-image-15" title="2" src="http://www.soswp.com/wp-content/uploads/21-e1267112667780.png" alt="" width="440" height="311" /></p>
<p>Insert all requested data:</p>
<p>1. Database name (previously created)<br />
2. Database username (the username used to connect to the server)<br />
3. Database password<br />
4. Database server host (tipically &#8220;localhost&#8221;)<br />
5. Database table prefix (if you use more web apps in your database may be helpful else leave it unchanged)</p>
<p>Now, if the installation directory on the server is not writeable (for security reason) you the following screen may appear:</p>
<p><img class="alignnone size-full wp-image-15" title="3" src="http://www.soswp.com/wp-content/uploads/3.png" alt="" width="440" /></p>
<p>If you see this screen you have to manually create a file called wp-config.php inside you installation directory and then paste the text inside the box.</p>
<p>If everything&#8217;s fine (or if your directory is writeable) you should see this screen:</p>
<p><img class="alignnone size-full wp-image-15" title="4" src="http://www.soswp.com/wp-content/uploads/4.png" alt="" width="440" /></p>
<p>We&#8217;re almost there. All is configured and we are ready to go. Insert the name for your blog inside the field called &#8220;Blog name&#8221; (you can change it later) and your e-mail address (use a valid e-mail address to receive automatic mail from your WordPress).</p>
<p>Remember to leave the checkbox &#8220;Allow my blog to appear in search engines&#8221; thicked only if you wish to allow search engines to immediately access your blog (this settings can be changed later also).</p>
<p>You&#8217;re done:</p>
<p><img class="alignnone size-full wp-image-15" title="4" src="http://www.soswp.com/wp-content/uploads/6.png" alt="" width="440" /></p>
<p>Really easy, isn&#8217;t it?</p>
<p>Have fun with your brand new blog and remember you can always contact us to request professional WordPress support</p>
]]></content:encoded>
			<wfw:commentRss>http://www.soswp.com/en/2010/02/installing-wordpress-tutorial/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
