<?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>Khleomix Designs</title>
	<atom:link href="http://www.khleomix.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.khleomix.com</link>
	<description>where code meets poetry</description>
	<lastBuildDate>Fri, 24 Sep 2010 18:53:53 +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>Socialite wordpress plugin error</title>
		<link>http://www.khleomix.com/socialite-wordpress-plugin-error/</link>
		<comments>http://www.khleomix.com/socialite-wordpress-plugin-error/#comments</comments>
		<pubDate>Fri, 24 Sep 2010 18:51:26 +0000</pubDate>
		<dc:creator>tim</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.khleomix.com/?p=80</guid>
		<description><![CDATA[If you are trying to use the Socialite plugin and your wordpress version is 3.0+ then you&#8217;re bound to get this particular error: Warning: unserialize() expects parameter 1 to be string, array given in .../wp-content/plugins/socialite/include/socialite.inc.php on line 49 The fix is actually very simple but you would need to have a some knowledge in editing [...]]]></description>
			<content:encoded><![CDATA[<p>If you are trying to use the Socialite plugin and your wordpress version is 3.0+ then you&#8217;re bound to get this particular error:</p>
<p><code>Warning: unserialize() expects parameter 1 to be string, array given in .../wp-content/plugins/socialite/include/socialite.inc.php on line 49</code></p>
<p>The fix is actually very simple but you would need to have a some knowledge in editing php codes or at least the tenacity to try&#8230; Don&#8217;t fret the process is just <strong>download, open, find, copy and paste and upload. </strong> You would need an ftp client to download and upload and a text editor (if you don&#8217;t have dreamweaver or the like, notepad will do) to edit the needed file. Or you can always use the native plugin editor of wordpress.</p>
<p>If you&#8217;re going to use ftp, download the socialite folder under wp-content/plugin/, open the file socialite/include/socialite.inc.php. Find the following (CTRL+F will do wonders):<br />
<code>// now unserialze the options to get the array of values<br />
$this-&gt;options = unserialize($this-&gt;options);</code></p>
<p>around line 48-49</p>
<p>replace: <code>$this-&gt;options = unserialize($this-&gt;options);</code><br />
with: <code>$this-&gt;options = maybe_unserialize($this-&gt;options);</code></p>
<p>find:<br />
<code>// options are stored serialized into the wp_options table<br />
$val = serialize($opts);</code></p>
<p>around line 73-74</p>
<p>replace: <code>$val = serialize($opts);</code><br />
with: <code>$val = maybe_serialize($opts);</code></p>
<p>Save the file and upload. That should be good until the next update.</p>
<p>The reason: <strong>This plugin is not compatible with wordpress 3.0.  The newest wordpress version automatically serializes/unserializes data and since the plugin has not been updated, it still uses the old code thus the unserialize warning.</strong></p>
<p>And of course, for those who are afraid of editing their files you can download the fixed socialize plugin after the jump</p>
<p><a href="http://www.khleomix.com/wp-content/uploads/2010/09/socialite.zip"><strong>JUMP</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.khleomix.com/socialite-wordpress-plugin-error/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fatal error: Call to undefined method wpdb::get_blog_prefix() problem</title>
		<link>http://www.khleomix.com/fatal-error-call-to-undefined-method-wpdbget_blog_prefix-problem/</link>
		<comments>http://www.khleomix.com/fatal-error-call-to-undefined-method-wpdbget_blog_prefix-problem/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 15:40:02 +0000</pubDate>
		<dc:creator>tim</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.khleomix.com/?p=78</guid>
		<description><![CDATA[If you just upgraded to WordPress 3.0 and is using the db cache reloaded plugin, you might encounter the following error when you try to access some pages in your admin: Fatal error: Call to undefined method wpdb::get_blog_prefix() in &#8230;/public_html/wp-includes/user.php on line 445 The fix is pretty simple: disable the plugin. manually delete the wp-content/db.php [...]]]></description>
			<content:encoded><![CDATA[<p>If you just upgraded to WordPress 3.0 and is using the db cache reloaded plugin, you might encounter the following error when you try to access some pages in your admin:<br />
<strong>Fatal error: Call to undefined method wpdb::get_blog_prefix() </strong>in &#8230;/public_html/wp-includes/user.php on line 445</p>
<p>The fix is pretty simple:</p>
<ol>
<li>disable the plugin.</li>
<li>manually delete the wp-content/<strong>db.php</strong></li>
<li>delete the offending plugin</li>
<li>if you must need to use a caching plugin, I believe there is a patch around (google is your friend). the patch should be good until the plugin developer updates the plugin to be compatible with wordpress 3.0</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.khleomix.com/fatal-error-call-to-undefined-method-wpdbget_blog_prefix-problem/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Can&#8217;t upgrade to WordPress 3.0?</title>
		<link>http://www.khleomix.com/cant-upgrade-to-wordpress-3-0/</link>
		<comments>http://www.khleomix.com/cant-upgrade-to-wordpress-3-0/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 03:44:53 +0000</pubDate>
		<dc:creator>tim</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[wordpress 3.0]]></category>
		<category><![CDATA[wordpress 3.0 upgrade]]></category>
		<category><![CDATA[You are not allowed to call this page directly]]></category>

		<guid isPermaLink="false">http://www.khleomix.com/?p=46</guid>
		<description><![CDATA[Its been too long and I&#8217;ve neglected my own site, so here I was checking out my admin, deleting spam, upgrading plugins and was about to upgrade to WordPress 3.0&#8230; Everything went fine except the wordpress 3.0 upgrade. When I pressed the upgrade now link, it redirected me to a page with this message: &#8220;You [...]]]></description>
			<content:encoded><![CDATA[<p>Its been too long and I&#8217;ve neglected my own site, so here I was checking out my admin, deleting spam, upgrading plugins and was about to upgrade to WordPress 3.0&#8230; Everything went fine except the wordpress 3.0 upgrade.</p>
<p>When I pressed the upgrade now link, it redirected me to a page with this message: &#8220;You are not allowed to call this page directly.&#8221; Of course, I was about to pull my hair out (nah&#8230;), but Google will always be your friend although a little bit tricky this time. So I&#8217;ll save somebody else a few minutes of trouble.</p>
<p>If you get the &#8220;You are not allowed to call this page directly.&#8221; message, deactivate your NextGen ImageFlow plugin and try again. Don&#8217;t worry you can activate it again as soon as you&#8217;re done upgrading.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.khleomix.com/cant-upgrade-to-wordpress-3-0/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A brand new site</title>
		<link>http://www.khleomix.com/a-brand-new-site/</link>
		<comments>http://www.khleomix.com/a-brand-new-site/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 17:53:03 +0000</pubDate>
		<dc:creator>tim</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[bethumbed]]></category>
		<category><![CDATA[khleomix]]></category>
		<category><![CDATA[khleomix designs]]></category>

		<guid isPermaLink="false">http://www.khleomix.com/?p=33</guid>
		<description><![CDATA[I finally managed to start on my own site although I still have gazillion more projects to finish. This site is still a work in progress and content are mostly blank for now. I&#8217;ll eventually get to it&#8230; somehow&#8230; I&#8217;m not really sure if I like the layout, but its a start&#8230; I do love [...]]]></description>
			<content:encoded><![CDATA[<p>I finally managed to start on my own site although I still have gazillion more projects to finish. This site is still a work in progress and content are mostly blank for now. I&#8217;ll eventually get to it&#8230; somehow&#8230;</p>
<p>I&#8217;m not really sure if I like the layout, but its a start&#8230; I do love the overall effect and I am currently in love with the colors. I think I&#8217;m going to implement the same layout in BeThumbed which is totally in need of a makeover&#8230; Or I might do something totally different.</p>
<p>Its 2AM and I&#8217;ve been working since 10AM yesterday, I should be tired but I&#8217;m not sure I am yet. I think I&#8217;ll start on one of my new projects or maybe finish the current ones. My mind is a mess, but then again, it usually is and I thrive in madness.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.khleomix.com/a-brand-new-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

