<?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>Linux T&#38;T &#187; Wordpress</title>
	<atom:link href="http://linux.wxs.ro/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://linux.wxs.ro</link>
	<description>WladyX’s collection of linux tips&#38;tricks</description>
	<lastBuildDate>Fri, 27 Jan 2012 16:42:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Strange character appearances in old posts (after db restore)</title>
		<link>http://linux.wxs.ro/2011/12/29/strange-character-appearances-in-old-posts-after-db-restore/</link>
		<comments>http://linux.wxs.ro/2011/12/29/strange-character-appearances-in-old-posts-after-db-restore/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 12:20:29 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/?p=1788</guid>
		<description><![CDATA[wp-config.php: define('DB_CHARSET', 'utf8'); source]]></description>
			<content:encoded><![CDATA[<p>wp-config.php:<br />
<code>define('DB_CHARSET', 'utf8'); </code></p>
<p><a href="http://wordpress.org/support/topic/strange-character-appearances-in-old-posts-after-db-restore">source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2011/12/29/strange-character-appearances-in-old-posts-after-db-restore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop a 8) from turning into a smiley on a wordpress post</title>
		<link>http://linux.wxs.ro/2011/02/15/stop-a-8-from-turning-into-a-smiley-on-a-wordpress-post/</link>
		<comments>http://linux.wxs.ro/2011/02/15/stop-a-8-from-turning-into-a-smiley-on-a-wordpress-post/#comments</comments>
		<pubDate>Tue, 15 Feb 2011 12:14:05 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/?p=1351</guid>
		<description><![CDATA[&#60;span&#62;)&#60;/span&#62; or write the ) as a symbol: &#38;#41; source]]></description>
			<content:encoded><![CDATA[<p><code>&lt;span&gt;)&lt;/span&gt;</code></p>
<p>or write the ) as a symbol:</p>
<p><code>&amp;#41;</code></p>
<p><a href="http://en.forums.wordpress.com/topic/how-do-i-stop-a-8-from-turning-into-a-smiley">source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2011/02/15/stop-a-8-from-turning-into-a-smiley-on-a-wordpress-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Auto Update WordPress Without FTP</title>
		<link>http://linux.wxs.ro/2010/08/27/auto-update-wordpress-without-ftp/</link>
		<comments>http://linux.wxs.ro/2010/08/27/auto-update-wordpress-without-ftp/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 12:49:49 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/?p=989</guid>
		<description><![CDATA[upgrade plugins without ftp credentials. wp-config.php: define('FS_METHOD','direct');]]></description>
			<content:encoded><![CDATA[<p>upgrade plugins without ftp credentials.</p>
<p>wp-config.php:<br />
<code>define('FS_METHOD','direct');</code></p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2010/08/27/auto-update-wordpress-without-ftp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maintaining WordPress Installations</title>
		<link>http://linux.wxs.ro/2010/06/30/maintaining-wordpress-installations/</link>
		<comments>http://linux.wxs.ro/2010/06/30/maintaining-wordpress-installations/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 10:51:22 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/?p=906</guid>
		<description><![CDATA[#!/bin/bash # wp-update.sh # update wordpress installation(s) to $1 branch # # this script takes the new branch as an argument DOMAINS="domain1.tld \ domain2.tld \ domain3.tld" if [ $# -ne 1 ]; then echo "EPIC FAIL: Missing new version!" echo "Try: ./wp-upgrade x.x.x (ie; 2.7.1) exit 1 fi for site in ${DOMAINS}; do echo "upgrading [...]]]></description>
			<content:encoded><![CDATA[<p><code>#!/bin/bash<br />
# wp-update.sh<br />
# update  wordpress installation(s) to $1 branch<br />
#<br />
# this script takes the  new branch as an argument</code><br />
<code><br />
DOMAINS="domain1.tld \<br />
domain2.tld \<br />
domain3.tld"<br />
</code><br />
<code>if  [ $# -ne 1 ]; then<br />
echo "EPIC FAIL: Missing new version!"<br />
echo  "Try: ./wp-upgrade x.x.x (ie; 2.7.1)<br />
exit 1<br />
fi<br />
</code><code><br />
for site in ${DOMAINS}; do<br />
echo "upgrading ${site}"<br />
echo<br />
cd  /var/www/${site}/<br />
svn sw http://core.svn.wordpress.org/tags/$1/ .<br />
<code> done</code></code></p>
<p><code>./wp-update.sh 2.7.3</code></p>
<p><a href="http://ubuntu-tutorials.com/2009/02/27/maintaining-wordpress-installations-the-easy-way/">source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2010/06/30/maintaining-wordpress-installations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mystique Blog Description font spacing</title>
		<link>http://linux.wxs.ro/2010/01/04/mystique-blog-description-font-spacing/</link>
		<comments>http://linux.wxs.ro/2010/01/04/mystique-blog-description-font-spacing/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 13:50:03 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/?p=629</guid>
		<description><![CDATA[Mystique settings: User CSS: #site-title p.headline{ letter-spacing:0em; }]]></description>
			<content:encoded><![CDATA[<p>Mystique settings:<br />
User CSS:<br />
<code>#site-title p.headline{ letter-spacing:0em; }</code></p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2010/01/04/mystique-blog-description-font-spacing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Administration Over SSL</title>
		<link>http://linux.wxs.ro/2009/11/12/administration-over-ssl/</link>
		<comments>http://linux.wxs.ro/2009/11/12/administration-over-ssl/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 10:48:06 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/2009/11/12/administration-over-ssl/</guid>
		<description><![CDATA[wp-config.php: define(&#8216;FORCE_SSL_ADMIN&#8217;, true); http://codex.wordpress.org/Administration_Over_SSL]]></description>
			<content:encoded><![CDATA[<p>wp-config.php:</p>
<p>define(&#8216;FORCE_SSL_ADMIN&#8217;, true);</p>
<p><a href="http://codex.wordpress.org/Administration_Over_SSL">http://codex.wordpress.org/Administration_Over_SSL</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2009/11/12/administration-over-ssl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto: Create a page tab for a category in WordPress</title>
		<link>http://linux.wxs.ro/2009/10/26/howto-create-a-page-tab-for-a-category-in-wordpress/</link>
		<comments>http://linux.wxs.ro/2009/10/26/howto-create-a-page-tab-for-a-category-in-wordpress/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 15:26:49 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/2009/10/26/howto-create-a-page-tab-for-a-category-in-wordpress/</guid>
		<description><![CDATA[Howto: Create a page tab for a category in WordPress &#8211; SidekickBlog]]></description>
			<content:encoded><![CDATA[<p><a href="http://sidekickblog.com/how-to-create-a-page-tab-for-category-in-wordpress-267.htm">Howto: Create a page tab for a category in WordPress &#8211; SidekickBlog</a><br />
<blockquote></blockquote>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=f17f0d78-3196-87a6-8aa8-980dc869caaf" /></div>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2009/10/26/howto-create-a-page-tab-for-a-category-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress SVN</title>
		<link>http://linux.wxs.ro/2008/10/25/wordpress-svn/</link>
		<comments>http://linux.wxs.ro/2008/10/25/wordpress-svn/#comments</comments>
		<pubDate>Sat, 25 Oct 2008 09:11:44 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/2008/10/25/wordpress-svn/</guid>
		<description><![CDATA[New Install: $ mkdir blog $ cd blog $ svn co http://core.svn.wordpress.org/tags/3.0 . Updating to a New Stable Version: $ cd blog $ svn sw http://core.svn.wordpress.org/tags/3.0/ . Relocating from the old svn.automattic.com repository $ svn switch --relocate http://svn.automattic.com/wordpress/tags/2.7.1 http://core.svn.wordpress.org/tags/2.7.1/ Installing/Updating WordPress with Subversion « WordPress Codex]]></description>
			<content:encoded><![CDATA[<p><strong>New Install:</strong></p>
<p><code>$ mkdir blog<br />
$ cd blog<br />
$ svn co http://core.svn.wordpress.org/tags/3.0 .</code></p>
<p><strong>Updating to a New Stable Version:</strong></p>
<p><code>$ cd blog<br />
$ svn sw http://core.svn.wordpress.org/tags/3.0/ . </code></p>
<p><strong>Relocating from the old <em>svn.automattic.com</em> repository</strong></p>
<p>$ <code>svn switch --relocate <a title="http://svn.automattic.com/wordpress/tags/2.7.1" href="http://svn.automattic.com/wordpress/tags/2.7.1">http://svn.automattic.com/wordpress/tags/2.7.1</a> <a title="http://core.svn.wordpress.org/tags/2.7.1/" href="http://core.svn.wordpress.org/tags/2.7.1/">http://core.svn.wordpress.org/tags/2.7.1/</a></code></p>
<p><a href="http://codex.wordpress.org/Installing/Updating_WordPress_with_Subversion">Installing/Updating WordPress with Subversion « WordPress Codex</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2008/10/25/wordpress-svn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert WordPress database from Latin1 to UTF-8</title>
		<link>http://linux.wxs.ro/2008/06/30/convert-wordpress-database-from-latin1-to-utf-8/</link>
		<comments>http://linux.wxs.ro/2008/06/30/convert-wordpress-database-from-latin1-to-utf-8/#comments</comments>
		<pubDate>Mon, 30 Jun 2008 10:04:49 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/2008/06/30/convert-wordpress-database-from-latin1-to-utf-8/</guid>
		<description><![CDATA[$ mysqldump &#8211;default-character-set=latin1 &#8211;databases wordpress &#62; m.sql $ replace &#8220;CHARSET=latin1&#8243; &#8220;CHARSET=utf8&#8243; \ &#8220;SET NAMES latin1&#8243; &#8220;SET NAMES utf8&#8243; &#60; m.sql &#62; m2.sql $ mysql &#60; m2.sql wp-config.php:define(&#8216;DB_CHARSET&#8217;, &#8216;utf8&#8242;);define(&#8216;DB_COLLATE&#8217;, &#8221;); atppp’s Blog » Convert WordPress database from Latin1 to UTF-8]]></description>
			<content:encoded><![CDATA[<p>$ mysqldump &#8211;default-character-set=latin1 &#8211;databases wordpress &gt; m.sql</p>
<p>$ replace &#8220;CHARSET=latin1&#8243; &#8220;CHARSET=utf8&#8243; \<br />    &#8220;SET NAMES latin1&#8243; &#8220;SET NAMES utf8&#8243; &lt; m.sql &gt; m2.sql</p>
<p>$ mysql &lt; m2.sql</p>
<p>wp-config.php:<br />define(&#8216;DB_CHARSET&#8217;, &#8216;utf8&#8242;);<br />define(&#8216;DB_COLLATE&#8217;, &#8221;);</p>
<p><a href="http://blog.wuxinan.net/archives/255">atppp’s Blog » Convert WordPress database from Latin1 to UTF-8</a><br />
<blockquote></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2008/06/30/convert-wordpress-database-from-latin1-to-utf-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Debian</title>
		<link>http://linux.wxs.ro/2008/05/20/wordpress-debian/</link>
		<comments>http://linux.wxs.ro/2008/05/20/wordpress-debian/#comments</comments>
		<pubDate>Tue, 20 May 2008 10:31:14 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/2008/05/20/wordpress-debian/</guid>
		<description><![CDATA[bash /usr/share/doc/wordpress/examples/setup-mysql -n wp_mortiablog blog.mortia.org.uk Andy » Adding a new WordPress blog to a Debian install]]></description>
			<content:encoded><![CDATA[<div style=''>
<pre>bash /usr/share/doc/wordpress/examples/setup-mysql -n wp_mortiablog blog.mortia.org.uk</pre>
<p><a href="http://blog.mortia.org.uk/index.php/2007/01/07/adding-a-new-wordpress-blog-to-a-debian-install/">Andy » Adding a new WordPress blog to a Debian install</a><br />
<blockquote></blockquote>
</div>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2008/05/20/wordpress-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

