<?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>ForTheLose.org - Wordpress tips and wordpress themes</title>
	
	<link>http://forthelose.org</link>
	<description>Wordpress Themes and Flash Animations</description>
	<lastBuildDate>Mon, 11 Jul 2011 06:01:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/forthelose" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="forthelose" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">forthelose</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>How to Send Newsletter via WP CMS?</title>
		<link>http://forthelose.org/how-to-send-newsletter-via-wp-cms</link>
		<comments>http://forthelose.org/how-to-send-newsletter-via-wp-cms#comments</comments>
		<pubDate>Sun, 10 Jul 2011 11:58:47 +0000</pubDate>
		<dc:creator>dina</dc:creator>
				<category><![CDATA[Giveaways]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Make Money]]></category>
		<category><![CDATA[make money]]></category>
		<category><![CDATA[newsletter]]></category>

		<guid isPermaLink="false">http://forthelose.org/?p=2561</guid>
		<description><![CDATA[WordPress can be a great tool to create a system for sending newsletters. A newsletter is an excellent source of information and readers' loyalty. The CMS allows you to create with this editor will not use force to send a specific software (often paying).

In this tutorial we will see how to use this WordPress CMS with Google FeedBurner, without using a plugin for WordPress newsletter dedicated.
Create a new and specific category
The first thing to do is create the specific category ...]]></description>
			<content:encoded><![CDATA[<p>WordPress can be a great tool to create a system for sending newsletters. A newsletter is an excellent source of information and readers' loyalty. The CMS allows you to create with this editor will not use force to send a specific software (often paying).</p>
<p><span id="more-2561"></span></p>
<p>In this tutorial we will see how to use this WordPress CMS with Google FeedBurner, without using a plugin for WordPress newsletter dedicated.</p>
<p><strong>Create a new and specific category</strong></p>
<p>The first thing to do is create the specific category that will help us to distribute via e-mail items. The process is very simple: just go into articles from admin&gt; categories and fill in the fields under "Add a new category, called in this case (for convenience)" Email Newsletter ".</p>
<p><em>Newsletter class</em></p>
<p>Condition: a key step in this process will be marked the ID of the category. How to get the ID of the category? Simple, just go on the list of categories (articles&gt; categories), place the mouse on its name you just created and find the ID from the status bar at the bottom.</p>
<p><em>Obtain the ID of the category</em></p>
<p>In this case, the ID of the category "Email Newsletter" is 10 (cat_id = 10).</p>
<p><strong>Make the invisible category</strong></p>
<p>The next step for the creation of our system to send newsletters in WordPress will exclude that category from the navigation menu public or footer, sidebar or other place of display in our chart WordPress theme. All this will serve to show the products contained herein only to users who register.</p>
<p>Open the sidebar.php file (the code for the modification of the categories is usually located here) and look for a block like this:</p>
<p>1 empty</p>
<p>&lt;? Php wp_list_categories ('&amp; = title_li &lt;h2&gt; Category &lt;/ h2&gt;');?&gt;</p>
<p>and replace it with this:</p>
<p>1 empty</p>
<p>&lt;? Php wp_list_categories ('exclude = 10 &amp; = title_li &lt;h2&gt; Category &lt;/ h2&gt;');?&gt;</p>
<p>As can be seen in the second string was added the attribute "exclude" category along with the ID that we had seen before (10). General condition: the code to be replaced may be in other template files, not necessarily in sidebar.php.</p>
<p><strong>Shut off the post from our class</strong></p>
<p>We've made invisible in our post "visual". However, it could be accessed "normally" via RSS feeds, engine results or other modes of description. Therefore, we must exclude them permanently.</p>
<p>To speed things up use a WordPress plugin known as the Advanced Category Excluder. Advanced Category Excluder can make this easier for all users.</p>
<p>In the settings of the plugin we are going to rule out a flag with all the sections that do not concern us except Single Post (as shown in the picture below). The sections may vary from theme to theme.</p>
<p><em>Sections exclude</em></p>
<p>Warning: You may need to make some changes to the file single.php (the control file of each post) in case your template had a navigation system as the main theme of WordPress, which allows you to navigate between articles thanks to the controls "next" and "previous".</p>
<p>In this case, open the file and paste this code:</p>
<p>1-3 empty</p>
<p>&lt;div class="navigation"&gt;</p>
<p>&lt;div class="alignleft"&gt; &lt;? php previous_post_link ('«% link', '% title', FALSE, '10 ')?&gt; &lt;/ div&gt;</p>
<p>&lt;div class="alignright"&gt; &lt;? php next_post_link (''% link ','% title ', FALSE, '10')?&gt; &lt;/ div&gt; &lt;/ div&gt;</p>
<p>Remember to always include your category ID (10) as shown in the string above.</p>
<p><strong>Create a feed in FeedBurner</strong></p>
<p>Now we must create our own RSS feed with Google FeedBurner, so you must register with the platform. Abstract: The category has created a feed address is automatically generated from the library inside of WordPress.</p>
<p><em>The feed address is to be calculated in two ways:</em></p>
<p>If you have set the permalink structure in WordPress SEO friendly way you have an address like this: http://www.tuositoweb.it/categorie/nome-categoria/feed/. To get just add the word "feed" to the desired root.</p>
<p>If you have not completed the previous step, your address will look like this http://www.tuositoweb.it/?feed=rss2&amp;cat=10 (10 is the ID of the class).</p>
<p>With our FeedBurner account is already active we are going to implement the address given to us by WordPress RSS in the box that says "Burn a feed right this instant. Type your blog or feed address here:</p>
<p><em>RSS feed address in Google FeedBurner</em></p>
<p>Clicking "Next" will start the actual configuration: The first thing will be to provide the name and address of the RSS.</p>
<p><em>Name and address of the RSS</em></p>
<p>The following are the various configuration step to perform.</p>
<p><em>Enable sending via e-mail</em></p>
<p>After configuring the switch, we should be sent via e-mail. What to do? Simple, click above on "My Feeds" link and select the feed that interests us. We will arrive in a management panel with several tabs: we will select "Publicize" and then from there click on "Email Subscriptions" and then "Activate".</p>
<p><em>Turn on the part of e-mail</em></p>
<p>By clicking on "Activate" will have access to the code to implement on your web pages that users will need to register. The code is provided so rough, but it can be customized to suit your needs.</p>
<p><em>Code form</em></p>
<p>The standard output is shown in the figure below. Box for user registration</p>
<p><strong>Recent changes in WordPress</strong></p>
<p>We're almost at the end. We need to make the last, small changes in the CMS WordPress: for each item we must allow the display of content in whole and not just the summary. To do this, you should go to Settings&gt; Reading and under "For Each article in a feed, show" select "Full text".</p>
<p><strong>Send a newsletter</strong></p>
<p>Now we have to program only the launch of our periodical information tool. To do this, then we go in the admin FeedBurner Publish&gt; Email Subscriptions&gt; Delivery Options.</p>
]]></content:encoded>
			<wfw:commentRss>http://forthelose.org/how-to-send-newsletter-via-wp-cms/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Manage Images of a Blog with WP Plugins?</title>
		<link>http://forthelose.org/how-to-manage-images-of-a-blog-with-wp-plugins</link>
		<comments>http://forthelose.org/how-to-manage-images-of-a-blog-with-wp-plugins#comments</comments>
		<pubDate>Fri, 08 Jul 2011 11:55:14 +0000</pubDate>
		<dc:creator>dina</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress Tips]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://forthelose.org/?p=2557</guid>
		<description><![CDATA[The images are part of a blog and often also make it a success. Manage images and photos on a blog platform, however, is not always easy and convenient, but with WordPress plugins and potential its star is hardly assured.

Management solutions are endless even though in this post we tried to present the best and most widely used by bloggers starting with ways to facilitate the upload, generators galleries, slideshows and much more.
1. jQuery Image Lazy Loader WP
Lazy Loader plugin ...]]></description>
			<content:encoded><![CDATA[<p>The images are part of a blog and often also make it a success. Manage images and photos on a blog platform, however, is not always easy and convenient, but with WordPress plugins and potential its star is hardly assured.</p>
<p><span id="more-2557"></span></p>
<p>Management solutions are endless even though in this post we tried to present the best and most widely used by bloggers starting with ways to facilitate the upload, generators galleries, slideshows and much more.</p>
<p><strong><em>1. jQuery Image Lazy Loader WP</em></strong></p>
<p>Lazy Loader plugin is perfect for those who upload many images on the pages of your blog because it is able to optimize this process.</p>
<p>In fact, you can prevent your browser to load all the images that are beyond the scrolling with the obvious advantage that pages load faster and users can navigate with no content loaded in the background and of which, perhaps, not have no interest.</p>
<p><strong><em>2. NextGen Gallery</em></strong></p>
<p>As happens so often I need a gallery of images to your blog without much obvious searching online, I recommend that this plugin is the best possible solution. As for viewing the gallery on the blog, you can choose from several options: inserting photos into a single post, add an entire album to a page, insert a gallery with lots of pages, or insert a slide show automatically.</p>
<p>For each of these modes you can add the lightbox effect magnification or the like.</p>
<p><strong><em>3. WP Photo Album</em></strong></p>
<p>This is a fast and practical solution to manage the pages of your blog a photo album. In addition to the simple creation of the album, makes it possible to manipulate photos by acting on their size by clicking thumbnails or between whole view.</p>
<p><strong><em>4. FlippingBook</em></strong></p>
<p>Here is an excellent and attractive way of presenting images on your site / blog. Once uploaded the photos, the plugin allows you to create an image gallery, without having to make big efforts.</p>
<p>You do not need any programming knowledge and just set a few fields and you're done. Only one warning: Before downloading and installing the plugin, you should read the license and terms of use.</p>
<p><strong><em>5. WordPress Content Slide</em></strong></p>
<p>Using WordPress Content Slide means to create a jQuery slideshows on your blog. It is a way to add eye-catching effects and a touch of class to your site without too much effort. Content Slide is also fully customizable.</p>
<p><strong><em>6. Cleaner WordPress Gallery Plugin</em></strong></p>
<p>Cleaner Gallery offers a very comprehensive and detailed management of your galleries on WordPress. Provide a valid XHTML solution and offers different types of Lightbox scripts. The plugin creates de valid XHTML code and uses only the images you want to resize. You can also intervene by controlling the display of images via CSS.</p>
<p><strong><em>7. Flexible Lightbox</em></strong></p>
<p>For those not familiar, the lightbox effect applied to images from the possibility to click on it and see it in the foreground on a white rectangular or square, without any additional pages or tabs open in your browser.</p>
<p>With this plugin, you can apply this special effect to your images. The beauty is that the plugin is really all alone, because when you go to upload a picture on the blog, you will see a link that with a single mouse click will allow you to apply the effect that image.</p>
]]></content:encoded>
			<wfw:commentRss>http://forthelose.org/how-to-manage-images-of-a-blog-with-wp-plugins/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Plugins Used to Publish Posts on Twitter</title>
		<link>http://forthelose.org/wordpress-plugins-used-to-publish-posts-on-twitter</link>
		<comments>http://forthelose.org/wordpress-plugins-used-to-publish-posts-on-twitter#comments</comments>
		<pubDate>Wed, 06 Jul 2011 11:52:41 +0000</pubDate>
		<dc:creator>dina</dc:creator>
				<category><![CDATA[FTL Freebies]]></category>
		<category><![CDATA[Make Money]]></category>
		<category><![CDATA[Our Work]]></category>
		<category><![CDATA[make money]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://forthelose.org/?p=2553</guid>
		<description><![CDATA[With today's article, we will be back after so long, to talk about CMS and social networks. In particular, given the importance of sharing our content on various social platforms, here is a list of Twitter plugin for WordPress. Specify a priori plugins of this type are over a hundred, but inside this post we would like to especially point out the ones that I think are the best and that allow quick and easy way to publish post WordPress ...]]></description>
			<content:encoded><![CDATA[<p>With today's article, we will be back after so long, to talk about CMS and social networks. In particular, given the importance of sharing our content on various social platforms, here is a list of Twitter plugin for WordPress. Specify a priori plugins of this type are over a hundred, but inside this post we would like to especially point out the ones that I think are the best and that allow quick and easy way to publish post WordPress directly on Twitter.</p>
<p><span id="more-2553"></span></p>
<p><strong>WP to Twitter</strong></p>
<p>This plugin allows automatic insertion of your post on Twitter, at the precise moment they are published. As soon as you installed and activated the plugin, you can display Admin area where you enter your personal access to Twitter and where select texts to be included in their tweets, once loaded a new post. In addition you can select a short URL auto service, so as not to exceed the maximum number of characters available. For more information, I refer you to a video on YouTube.</p>
<p><strong>Twitter Widget Pro</strong></p>
<p>It is really good for managing Twitter feed, you can mention @ username, # hashtag link analysis beyond that. Twitter Widget Pro is able to support the display of images of sections and additionally displays time and date of a tweet.</p>
<p><strong>TweetBacks for WordPress</strong></p>
<p>It has given the large number of conversations on Twitter, thanks for this good plugin, you can import a conversation for it as it is in the personal blog.</p>
<p><strong>Twitme</strong></p>
<p>This is a plugin that allows you to post in the post on Twitter: with a special filter, the user can ignore messages from specific categories.</p>
<p><strong>Twitter for WordPress</strong></p>
<p>This is plugin that allows the display of the latest "tweets" in your WordPress blog.</p>
<p><strong>Topsy Widgets</strong></p>
<p>It is a plugin that inserted using a button on your blog, you can view the number of times that each post was retweet.</p>
<p><em>Compare the best WordPress Twitter Plugins: Topsy and Tweetmeme</em></p>
<p>Tweetmeme is, perhaps, the most popular method to accomplish this, but Topsy now resolutely taking hold. But if you go in detail, what is the difference between the two types of button for Twitter?</p>
<p>Search engine journal has drafted an interesting chart that shows the potential advantages and disadvantages in using either.</p>
<p>Logically, for those who use WordPress, there are two plugins. We tried both and they are two plugins really easy to use and very complete for position and easily configure your buttons.</p>
]]></content:encoded>
			<wfw:commentRss>http://forthelose.org/wordpress-plugins-used-to-publish-posts-on-twitter/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create a WordPress Theme Suitable for iPhone?</title>
		<link>http://forthelose.org/how-to-create-a-wordpress-theme-suitable-for-iphone</link>
		<comments>http://forthelose.org/how-to-create-a-wordpress-theme-suitable-for-iphone#comments</comments>
		<pubDate>Sun, 03 Jul 2011 11:50:19 +0000</pubDate>
		<dc:creator>dina</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[animations on the web]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[wordpress mobile]]></category>

		<guid isPermaLink="false">http://forthelose.org/?p=2549</guid>
		<description><![CDATA[Share one of the problems that are facing web designer with more frequency in the development of themes for WordPress is the compatibility with different browsers.

And difficulties have increased in recent years with the increased popularity of smartphones and other mobile devices, due to low size and resolution of their screens does not allow an optimum vision websites.
To resolve this problem and to allow the largest possible number of visitors to browse unroped on our blog based on WordPress would ...]]></description>
			<content:encoded><![CDATA[<p>Share one of the problems that are facing web designer with more frequency in the development of themes for WordPress is the compatibility with different browsers.</p>
<p><span id="more-2549"></span></p>
<p>And difficulties have increased in recent years with the increased popularity of smartphones and other mobile devices, due to low size and resolution of their screens does not allow an optimum vision websites.</p>
<p>To resolve this problem and to allow the largest possible number of visitors to browse unroped on our blog based on WordPress would be advisable to develop a mobile version.</p>
<p>The easiest way to do it, especially for those who do not have the necessary technical knowledge, is to use the <strong>WpTouch plugin</strong>.</p>
<p>Once installed and configured the plugin allows visitors who use devices such as iPhone, iPod touch, Android, Palm Pre, Samsung, touch, and BlackBerry Storm/Torch displays the blog with a theme (in the style of an iPhone application) adapted to the screen size and easy to navigate.</p>
<p><em>Installation of the plugin</em></p>
<p>Go to the "plugins" section of the WordPress dashboard and click on "add new". In the search form, enter "WpTouch" look in the list and click on "install now". Now follow these instructions.</p>
<p>After installing the plugin, click on the heading "WpTouch" in section "settings" menu side dashboard of WordPress. In the options page "WpTouch" there are a large number of options that allow you to customize your theme in all the smallest details.</p>
<p>In this post you indicate which ones are most important for a basic setup of the theme.For other leave default settings.Under "General Settings" entries from the change are:</p>
<p><em>Site Title</em></p>
<p>Enter the name of your site.</p>
<p><em>Color-Style Options</em></p>
<p>Specify the blog theme and colors. "Classic" emulates a typical iPhone application. Other settings allow you to specify details such as the theme of icons, logo, website and inserting Adsense ad code.</p>
<p>When you have set the options you want to save your changes by clicking on the button "Save Options". If you wish to return to the initial settings, click on the "Restore Defaults" button.Now your blog is ready to be read even by major smartphone!</p>
<p>In addition we offer to review 4 pro WordPress plugins for iPhone integration:</p>
<p><strong>iPhone Webclip Manager</strong></p>
<p>This plugin allows you to quickly and easily create custom icons in style as you can see from the image above.</p>
<p><strong>Iphoneize my Feed</strong></p>
<p>Allows you to simply create an RSS feed about WordPress that is optimized for users who read via iPhone. Really quick and easy to configure.</p>
<p><strong>WordPress PDA iPhone</strong></p>
<p>As the first plugin in the list, this allows your WordPress blog to be visible and navigable from iPhone. When he realizes that the user has requested a web page from a Web browser, iPhone, create a simple theme on the fly, keeping, however, essential features of your theme.</p>
<p><strong>iPhone Mobile Admin</strong></p>
<p>If you want to manage your blog from your iPhone this is a plugin that allows you to navigate well the management control panel. This plugin for the WordPress admin UI is used for mobile devices like iPhone and iPod Touch.</p>
]]></content:encoded>
			<wfw:commentRss>http://forthelose.org/how-to-create-a-wordpress-theme-suitable-for-iphone/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Add Facebook Like Box to a WP Blog?</title>
		<link>http://forthelose.org/how-to-add-facebook-like-box-to-a-wp-blog</link>
		<comments>http://forthelose.org/how-to-add-facebook-like-box-to-a-wp-blog#comments</comments>
		<pubDate>Fri, 01 Jul 2011 11:48:11 +0000</pubDate>
		<dc:creator>dina</dc:creator>
				<category><![CDATA[Case Study]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[case study]]></category>
		<category><![CDATA[Facebook Like]]></category>

		<guid isPermaLink="false">http://forthelose.org/?p=2545</guid>
		<description><![CDATA[The potential of Facebook, the best-known and most popular social network in the world, have now become infinite, and certainly it is wrong to make them come together only in an exchange of messages between people, acquaintances or less. Even for those who work, especially on the web, Facebook has indeed provided numerous tools, such as listings that allow you to get in a short time, the increase in the number of customers for your business.

But if, instead, you have ...]]></description>
			<content:encoded><![CDATA[<p>The potential of Facebook, the best-known and most popular social network in the world, have now become infinite, and certainly it is wrong to make them come together only in an exchange of messages between people, acquaintances or less. Even for those who work, especially on the web, Facebook has indeed provided numerous tools, such as listings that allow you to get in a short time, the increase in the number of customers for your business.</p>
<p><span id="more-2545"></span></p>
<p>But if, instead, you have a blog or a website, either directly by you in content, and you want to make it known to as many people as possible, even in these cases, the popular social network of Mark Zuckerberg can arrange meeting offering solutions really adapted to your needs. In what way? For example, by exploiting the potential of your Fan page, profile page or previously made.</p>
<p>Within the scope of this guide, dedicated to the world of the internet but also to the world of web sites that use the WordPress platform, we will try to explain how it will be possible to insert inside your site the so called Like Box, the plug-ins made available by Facebook and linked to your Fan page, enabling various features.</p>
<p>An instrument, therefore, very useful, which is presented as a bounding box (the size can be chosen on the basis of stylistic requirements of your site), with the opportunity to click directly on the button "I like" taking so the Fan page, without having to log in directly to Facebook and search manually the above p.</p>
<p>Firstly, therefore, you must click on this link that will directly access the Facebook page from which you can enter various settings useful in order to get the code to implement in your WordPress website.</p>
<p>Let's see, at this point, the various options on which act on the basis of course to our needs. In the first field, Facebook Page URL, enter the URL of our Fan page linked to our website (if we have not yet created, we must necessarily create one before proceeding with this step).</p>
<p>The field Width, the width (in pixels) of our widgets, you must have a minimum size of 200 px.</p>
<p>You can also choose the background color of the Box, by selecting the appropriate option.</p>
<p>You then can select or deselect multiple options that allow us to display respectively or less users who adhere to our page (Show Faces); show the flow of the post (Show) or to show or not the bar over the box with the "find us on Facebook".</p>
<p>After you set your parameters, you just have to click on get code (Get Code). In this way, there will appear a window with the code plug-in Like Box copy and paste into your website.</p>
<p>If you have a website/blog using the WordPress platform, you just have to access the Widget page, determine the point at which to insert Facebook Like Box, copy the code and paste it into the previously retrieved as Html text widget space.</p>
]]></content:encoded>
			<wfw:commentRss>http://forthelose.org/how-to-add-facebook-like-box-to-a-wp-blog/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Security: Practical Tips</title>
		<link>http://forthelose.org/wordpress-security-practical-tips</link>
		<comments>http://forthelose.org/wordpress-security-practical-tips#comments</comments>
		<pubDate>Wed, 29 Jun 2011 11:42:14 +0000</pubDate>
		<dc:creator>dina</dc:creator>
				<category><![CDATA[Rid's Reviews]]></category>
		<category><![CDATA[Weekly Reviews]]></category>
		<category><![CDATA[Wordpress Tips]]></category>
		<category><![CDATA[wordpress security]]></category>

		<guid isPermaLink="false">http://forthelose.org/?p=2541</guid>
		<description><![CDATA[Today we see how to increase and improve the safety of WordPress. Security is one of the fundamental aspects of our CMS: you cannot ignore and must be on the agenda in our "to do list". In addition to traditional measures, we can adopt additional security measures by simple but effective lines of code. We see the steps to follow.

Protect your wp-config.php
The wp-config.php file is a cornerstone of our CMS: thanks to him we can make changes and technical improvements ...]]></description>
			<content:encoded><![CDATA[<p>Today we see how to increase and improve the safety of WordPress. Security is one of the fundamental aspects of our CMS: you cannot ignore and must be on the agenda in our "to do list". In addition to traditional measures, we can adopt additional security measures by simple but effective lines of code. We see the steps to follow.</p>
<p><span id="more-2541"></span></p>
<p><strong><em>Protect your wp-config.php</em></strong></p>
<p>The wp-config.php file is a cornerstone of our CMS: thanks to him we can make changes and technical improvements to our content management system.</p>
<p>The wp-config.php file is very important from the standpoint of safety: it is he that the database contains detailed information of our blog or site, details that an attacker could intercept and use for less than noble purposes.</p>
<p>To protect it we continue in this way: we open the file. Htaccess (usually always available and accessible) and paste this code:</p>
<ul>
<li>1-4 empty</li>
</ul>
<ul>
<li>&lt;Files Wp-config.php&gt;</li>
</ul>
<ul>
<li>Order allow, deny</li>
</ul>
<ul>
<li>Deny from all</li>
</ul>
<ul>
<li>&lt;/ Files&gt;</li>
</ul>
<p>In this way, set an access control simple and easy to manage.</p>
<p><strong><em>Block access to the folders WP</em></strong></p>
<p>The WordPress system folders (those with prefix wp-foldername) contains various information on our website or blog: to improve safety can be prohibited from indexing by search engines.</p>
<p>To do this we must open the robots.txt file (located in the root directory) and deploy this code:</p>
<ul>
<li>1 empty</li>
</ul>
<ul>
<li>2 Disallow: / wp-</li>
</ul>
<p>In this way all the files, folders and subfolders starting with "wp-" will not be indexed by search engine crawlers.</p>
<p>A small technical note: To avoid de-indexation of the images (useful for SEO) We can allow access only to the folder wp-content/uploads / using this simple command:</p>
<ul>
<li>1 empty</li>
</ul>
<ul>
<li>2 Allow: / wp-content/uploads /</li>
</ul>
<p><strong><em>Remove version information used</em></strong></p>
<p>Not everyone knows that there could be security issues to maintain information about the version (viewable in the source code for example): An attacker could use this information to exploit vulnerabilities on various releases.</p>
<p>Do not forget that the version you are using may also be obtained through RSS feeds.</p>
<p>To avoid this, we must open the functions.php file and insert these lines of code:</p>
<ul>
<li>1 2 empty</li>
</ul>
<ul>
<li>no_generator function () {return'';}</li>
</ul>
<ul>
<li>add_filter ('the_generator', 'no_generator');</li>
</ul>
<p>The readme.html file (usually present in the root directory) contains information about the version in use: it must be eliminated.</p>
<p><strong><em>Access only by its static IP address</em></strong></p>
<p>This is a very interesting measure of prevention: to provide access to your blog only from a particular IP address.</p>
<p>To do this we must create a file. Htaccess and place it in an ad hoc wp-admin folder (do not change. Htaccess file in the root of this site).</p>
<p>Paste this code into the file:</p>
<ul>
<li>1-4 empty</li>
</ul>
<ul>
<li># My ip address only</li>
</ul>
<ul>
<li>Order Deny, Allow</li>
</ul>
<ul>
<li>Allow from my IP address (put your own IP address)</li>
</ul>
<ul>
<li>Deny from all</li>
</ul>
<p>Note: In case of dynamic IP could be some inconvenience to the continuous change FTP settings related to the address.</p>
<p><strong><em>Disable directory browsing</em></strong></p>
<p>Disable directory browsing (navigation within a directory) is an operation of security and basic primary: to prohibit access to folders and files remotely that compose the structure of a site or a blog.</p>
<p>The execution is very simple, just open the file. Htaccess and implement two lines of code:</p>
<ul>
<li>1 2- empty</li>
</ul>
<ul>
<li># Disable directory browsing</li>
</ul>
<ul>
<li>Options All-Indexes</li>
</ul>
<ul>
<li>Rules to never forget</li>
</ul>
<p>To further increase the security of WordPress, we must not forget some standard rules.</p>
<p><strong><em>ID for login</em></strong></p>
<p>The login ID for the platform must be changed after the first time: the classic nickname "admin" is not good, because it is easy to understand.</p>
<p><strong><em>Upgrading the CMS</em></strong></p>
<p>Remember to always update to the latest version your CMS: an operation of short duration and there is a protection from future headaches.</p>
<p><strong><em>Delete the installation file</em></strong></p>
<p>The install.php file (wp-admin/install.php) can be safely deleted after the installation of WordPress could make your blog vulnerable to attack.</p>
<p><strong><em>Use a strong password</em></strong></p>
<p>Choose a strong password for access: avoid birth dates or other easily identifiable. Preferred password with uppercase and lowercase letters, numbers and punctuation marks (-_ @).</p>
]]></content:encoded>
			<wfw:commentRss>http://forthelose.org/wordpress-security-practical-tips/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Activate Google Fonts on WP Blog?</title>
		<link>http://forthelose.org/how-to-activate-google-fonts-on-wp-blog</link>
		<comments>http://forthelose.org/how-to-activate-google-fonts-on-wp-blog#comments</comments>
		<pubDate>Sun, 26 Jun 2011 11:01:00 +0000</pubDate>
		<dc:creator>dina</dc:creator>
				<category><![CDATA[Giveaways]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Google fonts]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://forthelose.org/?p=2535</guid>
		<description><![CDATA[Share one of the major limitations that web-designers have always had to face in designing and developing web pages is the limited number of fonts available to them. Since different operating systems have basic font installed, the only solution to make the pages so that more like on most computers had to indicate the code of the web pages only some of the most common fonts (web-safe fonts). Then all depends on aesthetics and creativity of web-designer.

Today however, thanks to ...]]></description>
			<content:encoded><![CDATA[<p>Share one of the major limitations that web-designers have always had to face in designing and developing web pages is the limited number of fonts available to them. Since different operating systems have basic font installed, the only solution to make the pages so that more like on most computers had to indicate the code of the web pages only some of the most common fonts (web-safe fonts). Then all depends on aesthetics and creativity of web-designer.</p>
<p><span id="more-2535"></span></p>
<p>Today however, thanks to the increasingly widespread support from the latest generation of browsers to CSS property called @ font-face, we can customize your web pages by specifying the desired font type, not limited to "boring" web-safe fonts.</p>
<p>In this post we explain a fast and easy way to integrate into your blog based on WordPress one of beautiful fonts made available by Google under Open Source license.</p>
<p>To do this we use the <strong>WP Google Fonts</strong> plugin.</p>
<p><em>Installation of the plugin:</em></p>
<p>Go to the "plugins" section of the WordPress dashboard and click on "Add new".  In the search form enter "WP Google Fonts, look in the list and click on" install now ".</p>
<p>Once installed the plugin, click on the "Google Fonts" in the "settings" section of the side menu of the dashboard of WordPress.</p>
<p>In the options page of "Google Fonts" are 6 blocks of Options, each of which can be used to specify a font for the various elements of the web pages of the blog.</p>
<p>It is not necessary to use them all, and then you can activate only the ones that you feel necessary, specifying:</p>
<ul>
<li>the type of fonts ("Select font"). Click on the dropdown menu and the name of the font you want (you can see a preview at the bottom of the page).</li>
<li>the items to which you want to assign the font chosen ("Elements you want to assign this font to"). If you choose "All", the new font will be applied to all elements of the page.</li>
</ul>
<p>Alternatively, you can indicate specific elements headlines, block quotes, paragraphs and lists.</p>
<p>If you have indicated specific instructions in your style sheet (CSS file), you can replace or modify inside the box "Custom CSS".</p>
<p>In this way, the font specified will be applied to nonstandard elements invented by you in the CSS file to use the same blog also other font of Google is sufficient to activate another block of options ("Options") and indicate elements that assign the font.</p>
<p>Click on "Save" to save the settings of each block of options.</p>
<p>Go now to your blog to see how the new fonts appear on the pages (if you do not see changes made a reload of the page).If you are using a plugin like "WP Super Cache" may need to clear the cache to make the changes. For now there are 19 fonts available, but certainly the number is expected to increase.</p>
]]></content:encoded>
			<wfw:commentRss>http://forthelose.org/how-to-activate-google-fonts-on-wp-blog/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SEO Comparison of Blogs: Joomla Vs. WordPress</title>
		<link>http://forthelose.org/seo-comparison-of-blogs-joomla-vs-wordpress</link>
		<comments>http://forthelose.org/seo-comparison-of-blogs-joomla-vs-wordpress#comments</comments>
		<pubDate>Fri, 24 Jun 2011 04:30:38 +0000</pubDate>
		<dc:creator>dina</dc:creator>
				<category><![CDATA[Case Study]]></category>
		<category><![CDATA[Make Money]]></category>
		<category><![CDATA[Our Work]]></category>
		<category><![CDATA[make money]]></category>
		<category><![CDATA[our work]]></category>
		<category><![CDATA[WordPress Joomla]]></category>
		<category><![CDATA[wordpress seo]]></category>

		<guid isPermaLink="false">http://forthelose.org/?p=2531</guid>
		<description><![CDATA[What to choose to promote your blog in a better way – Joomla or WordPress? You must create a new website and stick to some SEO rules and you cannot choose between Joomla and WordPress. Both have strengths and flaws but basically you can get almost any kind of result with both.

Joomla key SEO points in our opinion that can be distinguished as advantageous: 

The URL can be created almost as you want without having any problem with the SH404 ...]]></description>
			<content:encoded><![CDATA[<p>What to choose to promote your blog in a better way – Joomla or WordPress? You must create a new website and stick to some SEO rules and you cannot choose between Joomla and WordPress. Both have strengths and flaws but basically you can get almost any kind of result with both.</p>
<p><span id="more-2531"></span></p>
<p><em>Joomla key SEO points in our opinion that can be distinguished as advantageous: </em></p>
<ul>
<li>The URL can be created almost as you want without having any problem with the SH404 SEF component.</li>
<li>The duplicate pages can be "grouped" with the ALIAS always SH404 SEF</li>
<li>It can handle virtually any type of content in any position and page of the site without having to speak in code, you can do everything easily by</li>
<li>Installing add-ons can provide you with endless features; you can find everything for Joomla</li>
<li>Basically Joomla comparing to WordPress is more easily expandable, and requires less expertise pressures.</li>
</ul>
<p><em>For a personal site we advise to choose WordPress it is easier to install and upgrade. </em></p>
<p>The administration of WordPress blog CMS does not offer great features, unless you use plugins such as Flutter or custom data structures to handle the newest version of WordPress which is basically the same things but does not have an administration such as Flutter, to create data types. With the new WordPress you have to define data structures in the file functions.php</p>
<p>In terms of SEO optimization is saved through Joomla SH404 SEF, a payment component that allows you to define title, description, keywords and URL of each page of the site. Functional but boring because the URLs are handled separately from the content itself, so after writing something you most likely need access to components&gt; sh404&gt; manage change url&gt; and write titles and more.</p>
<p>As for SEO promotion with WordPress, just install All-in-One-SEO Pack and you're almost done. The plugin allows you to write title and description immediately after the contents of your items and then everything is contextual and more immediate. The main work to be done to the URL instead must be implemented programmatically in the functions.php file. From there you define the structure and behavior of the URL of the site to any http request. To address some decide to do some research to show the other post with a particular template for others to choose other specific template.</p>
<p>In the case of my website I've defined a template tourist region, an area code, a geographic area, a hotel and a hotel for all results. From the functions.php file, you can automatically assign the correct template depending on the request received.</p>
<p>Who wins between Joomla and WordPress when comparing their SEO abilities? Both have their advantages and lacks, especially when it comes to quicker upgrading but everyone should choose foremost considering what niche a future site is going to fill.</p>
]]></content:encoded>
			<wfw:commentRss>http://forthelose.org/seo-comparison-of-blogs-joomla-vs-wordpress/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Add an Image Gallery into a WordPress Blog?</title>
		<link>http://forthelose.org/how-to-add-an-image-gallery-into-a-wordpress-blog</link>
		<comments>http://forthelose.org/how-to-add-an-image-gallery-into-a-wordpress-blog#comments</comments>
		<pubDate>Wed, 22 Jun 2011 11:49:40 +0000</pubDate>
		<dc:creator>dina</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[WordPress Gallery]]></category>

		<guid isPermaLink="false">http://forthelose.org/?p=2527</guid>
		<description><![CDATA[The guide that we propose explains how to create and manage a gallery of images within your articles or pages in WordPress. Insert a single image in a post is now common practice, but if we want to insert different images maybe side by side to each other as if they were in a table?

Let's see how we create our photo gallery in a post with WordPress 3.0:

The first thing to do is obviously to prepare images to be clicked;
Create ...]]></description>
			<content:encoded><![CDATA[<p>The guide that we propose explains how to create and manage a gallery of images within your articles or pages in WordPress. Insert a single image in a post is now common practice, but if we want to insert different images maybe side by side to each other as if they were in a table?</p>
<p><span id="more-2527"></span></p>
<p><em>Let's see how we create our photo gallery in a post with WordPress 3.0:</em></p>
<ul>
<li>The first thing to do is obviously to prepare images to be clicked;</li>
<li>Create a new post or page, giving it a title and save as a draft;</li>
<li>Then click on the icon Add image;</li>
<li>Click on the select files to upload button, and go to select all images that we are part of the Gallery;</li>
<li>Expect all the images to load, and then click on the Save all changes;</li>
<li>The Panel displays, will allow you to: Customize the name and description for every single photo;</li>
<li>In Gallery settings allow you to assign a link to the thumbnail image file or page annex;</li>
<li>Sort pictures by: title, date and time or random;</li>
<li>Sort: Ascending/Descending;</li>
<li>Decide how many columns the gallery must have;</li>
<li>Terminate the settings insert newly created image gallery in the post by clicking "insert Gallery;</li>
<li>Click on the link above the article title preview to display the newly created Gallery.</li>
</ul>
<p>If we are not satisfied we can operate on the Gallery's settings by clicking on the blue box and selecting the icon in the upper left corner, with a small picture. The icon with the Red prohibition eliminates the Gallery from the post.</p>
<p>After creating the Gallery, you can use <strong>Flexible Lightbox plugin for WordPres</strong>.</p>
<p>This plugin allows you to use the Lightbox functionality to images and photo galleries in wordpress without touching the html code. It allows you to set whether or not to use lightbox to load the image.</p>
<p><em>Tip: how to add an image gallery in WordPress website?</em></p>
<p>As we know, WordPress is undoubtedly a major personal publishing platform that allows us to achieve in a few minutes our personal blog. The guide that we propose below, will allow us to create and manage easily and quickly a gallery of images in WordPress.</p>
<p>Usually, using WordPress, inserting an image within the article we're going to write is a common practice. If our post requires the presence of multiple images in the Gallery function of WordPress becomes the ideal solution. Of course, not simply go to upload several images that will be part of our gallery, but we must then also set a number of options relating to the display order, the number of columns within a post or a page, and so on. We, therefore, see how to create and manage a gallery in WordPress.</p>
<p>The first action to perform is of course in all the pictures we need. After adding a new article, including title and after having saved it, please click on the icon Add image. To select files to upload all the images present on our computer. After completing this operation you need to save all changes.</p>
<p>We are so, automatically, in the gallery with the pictures just uploaded. In Gallery Settings, there are all the settings to adjust; the first of these is Link thumbnail. Popping the image files, all images of the Gallery, click once, will appear in their actual size. We are going to select, on the other hand, Page annex.</p>
<p>The next option to set is on the order of the images in the gallery. To Order images, you can decide whether to insert images by title, Date or random while ordering, check the box in ascending or descending. To create a custom Sort order, click menu.</p>
<p>Next to each image in the Gallery, you can now insert in the box of the sorting, the number on the display order, and then save the changes.</p>
<p>Clicking on Show alongside each picture, you can act on additional settings; in the title, there will be the default name of the image, obviously editable at best and that appears to hover over the image. You can also add a caption. These settings must be repeated for each image in the gallery.</p>
<p>Returning to the previous settings, columns, you can decide, the number of columns, i.e. images that are displayed in horizontal order on each row of the page. After making all changes, click Insert Gallery.</p>
<p>Within the body of WordPress, displays a blue background color inside pale, with a camera and a photograph. To preview the work accomplished, just click on the Preview button next to the Save draft, in the right panel of the WordPress page. What we'll see if it meets will be what we are going to publish.</p>
<p>If we are not satisfied with a full work just made, you can change the gallery by clicking on the box. will appear on the right corner two icons: by clicking on the red icon will delete the created Gallery, while clicking the first icon we will modify it. Opens the window of our gallery, where you can fine-tune the settings and update.</p>
]]></content:encoded>
			<wfw:commentRss>http://forthelose.org/how-to-add-an-image-gallery-into-a-wordpress-blog/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What Is New in WordPress 3.2?</title>
		<link>http://forthelose.org/what-is-new-in-wordpress-3-2</link>
		<comments>http://forthelose.org/what-is-new-in-wordpress-3-2#comments</comments>
		<pubDate>Mon, 20 Jun 2011 11:53:45 +0000</pubDate>
		<dc:creator>dina</dc:creator>
				<category><![CDATA[Our Work]]></category>
		<category><![CDATA[Rid's Reviews]]></category>
		<category><![CDATA[Wordpress Tips]]></category>
		<category><![CDATA[blog tips]]></category>
		<category><![CDATA[WordPress 3.2]]></category>
		<category><![CDATA[wordpress updates]]></category>

		<guid isPermaLink="false">http://forthelose.org/?p=2522</guid>
		<description><![CDATA[WP development informed that while this week it will set deadlines and task assignments, the main lines of development of the future version 3.2. are now defined and will focus on two fundamental objectives, the lightness and speed these are the main guidelines of the next version:

Few times faster than version of WP 3.1 - a more focused release, we will decide the developments more clearly and we will make sure that people keep these goals will not fall on ...]]></description>
			<content:encoded><![CDATA[<p>WP development informed that while this week it will set deadlines and task assignments, the main lines of development of the future version 3.2. are now defined and will focus on two fundamental objectives, the lightness and speed these are the main guidelines of the next version:</p>
<p><span id="more-2522"></span></p>
<p>Few times faster than version of WP 3.1 - a more focused release, we will decide the developments more clearly and we will make sure that people keep these goals will not fall on the stage just one more thing. "</p>
<p>The main theme will be "fast light" - is to abandon support for older technology. Attention should be given to make things faster, especially in posting, editing and writing content easier and faster.</p>
<p>Improvements API List Tables - you will finalize the API for use by others making it even more flexible.</p>
<p>Loading XHR Tables has to be analyzed carefully after the stabilization of List Table API. Verify that there is a real improvement before devoting full time to its development.</p>
<p>PHP 5.2 (specifically 5.2.4) as a minimum requirement. SI abandon compatibility with the previous one but without adding much of PHP5 specific code. The purpose of this release will be to abandon the old and add no big news.</p>
<p>MySQL 5 as a minimum requirement. This amendment does not involve particular job if there is no need to change the minimum requirements. Will not change the query (NDT inq HIS Even if you abandon the old requirements, but without introducing significant new work of cleaning that building).</p>
<p>IE6 EOL (End Of Life) for the admin - If BrowseHappy will be updated in time, we will consider the possibility of adding a warning to "use a real browser" to IE6 users. This does not allow you to discard a lot of CSS to IE6 IE7 because it shares most of the problems. It is a mostly symbolic operation and reduces the combination of platforms for use in testing. This will also mean that the security problems that occur only in relation to IE6 can avereuna lower priority in their resolution.</p>
<p>Distractions in posts (articles) - The purpose is to say, "ooh, how nice." The idea is to replace the current version in full screen which is something more beautiful, make use of it (in terms of line length and font size) and simple (limited to the visual features of Edo).</p>
<p>About improvements - updates only type-and-file-modified can be implemented without changes to core files of WordPress. As a first step we plan to perform updates only from one version to the next major version, so, for example, from 3.2 to 3.2.1 and 3.2.1 to 3.2.2. As an option you can think of to run a full scan files to identify the changes and offer the possibility of a full upgrade by overwriting the changed files only. In addition, during updates, it completely excludes the directory wp-contents directory (no update of the standard theme and plugin included).</p>
<p>Speed ​​Enhancements - There is a huge number of things you can do to make WordPress faster in loading or limits it "seem" faster. It is considered the PHP lazy loading. IT is also working on an amendment to make uploading of the administration menu, making it the fastest expansion in PHP. We would like to make the dashboard faster than non-performing asynchronous requests when the cache is still warm. The developers are also working on improvements on FTP that should make upgrades faster for those using certain types of FTP servers.</p>
<p>As you can see this release, and of course the correction of open tickets focuses on two sensational goals that also not introducing new "visual" or innovative features should make the day to day use WordPress more simple, fast and productive, setting the stage for further improvements once abandoned old now obsolete technologies and requirements that will allow the future to introduce effective release best in the PHP code or SQL queries.</p>
]]></content:encoded>
			<wfw:commentRss>http://forthelose.org/what-is-new-in-wordpress-3-2/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

