<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Designoplasty Web Design and Development Blog</title>
	<atom:link href="http://designoplasty.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://designoplasty.com</link>
	<description>HTML, Javascript, PHP, and Me</description>
	<lastBuildDate>Sun, 07 Mar 2010 08:54:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on (Not) Using dbDelta with WordPress by Seth Shoultes</title>
		<link>http://designoplasty.com/2009/05/15/not-using-dbdelta-with-wordpress/comment-page-1/#comment-425</link>
		<dc:creator>Seth Shoultes</dc:creator>
		<pubDate>Sun, 07 Mar 2010 08:54:56 +0000</pubDate>
		<guid isPermaLink="false">http://designoplasty.com/?p=655#comment-425</guid>
		<description>I was also having some trouble while writing a function to install/update custom database tables in my Wordpress plugin. I found this post very informative and helpful. I have linked back to your article from my blog here:
http://shoultes.net/wordpress-dbdelta-function-problems/

I have also created a function to make installing Wordpress database tables a little easier. It can be found here:
http://shoultes.net/function-for-creating-tables-with-wordpress-plugins/

Anyways, just wanted to say thanks!!

Seth Shoultes</description>
		<content:encoded><![CDATA[<p>I was also having some trouble while writing a function to install/update custom database tables in my Wordpress plugin. I found this post very informative and helpful. I have linked back to your article from my blog here:<br />
<a href="http://shoultes.net/wordpress-dbdelta-function-problems/" rel="nofollow">http://shoultes.net/wordpress-dbdelta-function-problems/</a></p>
<p>I have also created a function to make installing Wordpress database tables a little easier. It can be found here:<br />
<a href="http://shoultes.net/function-for-creating-tables-with-wordpress-plugins/" rel="nofollow">http://shoultes.net/function-for-creating-tables-with-wordpress-plugins/</a></p>
<p>Anyways, just wanted to say thanks!!</p>
<p>Seth Shoultes</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using PHP Class Methods as WordPress Action Hook Callbacks by Matt</title>
		<link>http://designoplasty.com/2009/11/20/using-php-class-methods-as-wordpress-action-hook-callbacks/comment-page-1/#comment-415</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Wed, 17 Feb 2010 00:33:28 +0000</pubDate>
		<guid isPermaLink="false">http://designoplasty.com/?p=1058#comment-415</guid>
		<description>Hmmm... what version of PHP are you running on?</description>
		<content:encoded><![CDATA[<p>Hmmm&#8230; what version of PHP are you running on?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using PHP Class Methods as WordPress Action Hook Callbacks by Martin Yarcheeck</title>
		<link>http://designoplasty.com/2009/11/20/using-php-class-methods-as-wordpress-action-hook-callbacks/comment-page-1/#comment-414</link>
		<dc:creator>Martin Yarcheeck</dc:creator>
		<pubDate>Wed, 17 Feb 2010 00:05:27 +0000</pubDate>
		<guid isPermaLink="false">http://designoplasty.com/?p=1058#comment-414</guid>
		<description>Ok, I allready did :)

add_action(‘init’, array(&#039;MyPlugin&#039;, &#039;Init&#039;));</description>
		<content:encoded><![CDATA[<p>Ok, I allready did <img src='http://designoplasty.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>add_action(‘init’, array(&#8216;MyPlugin&#8217;, &#8216;Init&#8217;));</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using PHP Class Methods as WordPress Action Hook Callbacks by Martin Yarcheeck</title>
		<link>http://designoplasty.com/2009/11/20/using-php-class-methods-as-wordpress-action-hook-callbacks/comment-page-1/#comment-413</link>
		<dc:creator>Martin Yarcheeck</dc:creator>
		<pubDate>Tue, 16 Feb 2010 23:50:00 +0000</pubDate>
		<guid isPermaLink="false">http://designoplasty.com/?p=1058#comment-413</guid>
		<description>Hi, thanks for sharing your tip. This exactly the way I wont to use, but when I try your simple example I got warning:

Warning: call_user_func_array() [function.call-user-func-array]: Unable to call MyPlugin::Init() in /var/www/vhosts/coca-design.com/subdomains/cms2/httpdocs/wp-includes/plugin.php on line 339

Are you sure, you use this exactly like you described?

BTW: My hole plugin file looks this:
/*
Plugin Name: MyPlugin
*/


add_action(&#039;init&#039;, &#039;MyPlugin::Init&#039;);

class MyPlugin
{
    public static function Init()
    {
        // Put Some Code Here
    }
}</description>
		<content:encoded><![CDATA[<p>Hi, thanks for sharing your tip. This exactly the way I wont to use, but when I try your simple example I got warning:</p>
<p>Warning: call_user_func_array() [function.call-user-func-array]: Unable to call MyPlugin::Init() in /var/www/vhosts/coca-design.com/subdomains/cms2/httpdocs/wp-includes/plugin.php on line 339</p>
<p>Are you sure, you use this exactly like you described?</p>
<p>BTW: My hole plugin file looks this:<br />
/*<br />
Plugin Name: MyPlugin<br />
*/</p>
<p>add_action(&#8216;init&#8217;, &#8216;MyPlugin::Init&#8217;);</p>
<p>class MyPlugin<br />
{<br />
    public static function Init()<br />
    {<br />
        // Put Some Code Here<br />
    }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Snow Leopard Install Hazardous to Apache Virtual Hosts, MySQL, and PHP by Matt</title>
		<link>http://designoplasty.com/2009/08/28/snow-leopard-install-hazardous-to-apache-virtual-hosts-mysql-and-php/comment-page-1/#comment-194</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Thu, 12 Nov 2009 19:28:05 +0000</pubDate>
		<guid isPermaLink="false">http://designoplasty.com/?p=917#comment-194</guid>
		<description>I know, that&#039;s the problem, there&#039;s not really any good way of warning people about it. I hope at least Apple fixes it later releases so when they print newer DVDs those people will be spared the pain.</description>
		<content:encoded><![CDATA[<p>I know, that&#8217;s the problem, there&#8217;s not really any good way of warning people about it. I hope at least Apple fixes it later releases so when they print newer DVDs those people will be spared the pain.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Snow Leopard Install Hazardous to Apache Virtual Hosts, MySQL, and PHP by Ben</title>
		<link>http://designoplasty.com/2009/08/28/snow-leopard-install-hazardous-to-apache-virtual-hosts-mysql-and-php/comment-page-1/#comment-193</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Thu, 12 Nov 2009 08:56:48 +0000</pubDate>
		<guid isPermaLink="false">http://designoplasty.com/?p=917#comment-193</guid>
		<description>If only I saw this before. Darn vhosts all gone :( sniff. 
It seems to handle changed files and makes a folder called originals with the new files in that and leaves ur changed files alone. However the vhosts seem to be overwritten regardless.

Sniff</description>
		<content:encoded><![CDATA[<p>If only I saw this before. Darn vhosts all gone <img src='http://designoplasty.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  sniff.<br />
It seems to handle changed files and makes a folder called originals with the new files in that and leaves ur changed files alone. However the vhosts seem to be overwritten regardless.</p>
<p>Sniff</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on printf float syntax (%f) by Swetlana</title>
		<link>http://designoplasty.com/2009/08/11/printf-float-syntax-f/comment-page-1/#comment-174</link>
		<dc:creator>Swetlana</dc:creator>
		<pubDate>Mon, 28 Sep 2009 09:32:03 +0000</pubDate>
		<guid isPermaLink="false">http://designoplasty.com/?p=839#comment-174</guid>
		<description>excellent, thanks for that!</description>
		<content:encoded><![CDATA[<p>excellent, thanks for that!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Standardizing and Simplifying WordPress Themes by Anna Green</title>
		<link>http://designoplasty.com/2009/08/20/standardizing-and-simplifying-wordpress-themes/comment-page-1/#comment-155</link>
		<dc:creator>Anna Green</dc:creator>
		<pubDate>Mon, 24 Aug 2009 16:03:56 +0000</pubDate>
		<guid isPermaLink="false">http://designoplasty.com/?p=898#comment-155</guid>
		<description>I find the white as milk theme a good base point to start from. Its a very simple stripped down theme that can easily be adapted in a similar way to how you mention here.</description>
		<content:encoded><![CDATA[<p>I find the white as milk theme a good base point to start from. Its a very simple stripped down theme that can easily be adapted in a similar way to how you mention here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Keeping Photoshop Files in Subversion by Anatoly</title>
		<link>http://designoplasty.com/2009/08/12/keeping-photoshop-files-in-subversion/comment-page-1/#comment-152</link>
		<dc:creator>Anatoly</dc:creator>
		<pubDate>Wed, 12 Aug 2009 22:36:55 +0000</pubDate>
		<guid isPermaLink="false">http://designoplasty.com/?p=874#comment-152</guid>
		<description>Do you know that there is a Subversion client that integrates into Photoshop - http://www.pixelnovel.com/timeline

Timeline creates an additional palette in Photoshop interface and displays small previews of all versions of the current file, and you can commit new versions and get older versions directly from Photoshop.</description>
		<content:encoded><![CDATA[<p>Do you know that there is a Subversion client that integrates into Photoshop &#8211; <a href="http://www.pixelnovel.com/timeline" rel="nofollow">http://www.pixelnovel.com/timeline</a></p>
<p>Timeline creates an additional palette in Photoshop interface and displays small previews of all versions of the current file, and you can commit new versions and get older versions directly from Photoshop.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spam Comments are Funny by Anna Green</title>
		<link>http://designoplasty.com/2009/05/12/spam-comments-are-funny/comment-page-1/#comment-151</link>
		<dc:creator>Anna Green</dc:creator>
		<pubDate>Mon, 03 Aug 2009 15:55:55 +0000</pubDate>
		<guid isPermaLink="false">http://designoplasty.com/?p=631#comment-151</guid>
		<description>I use probably all the time! And i always spell it wrong... I prefer to use &quot;prob&quot; cuts out spell checking, I find it an especially useful word when im more than fifty percent sure of something but don&#039;t want to be held accountable if im wrong in this instance its a very useful word... Anyway i just thought id add my slant of things. Il definitely (another word that&#039;s spelling gets me) be back! Anna</description>
		<content:encoded><![CDATA[<p>I use probably all the time! And i always spell it wrong&#8230; I prefer to use &#8220;prob&#8221; cuts out spell checking, I find it an especially useful word when im more than fifty percent sure of something but don&#8217;t want to be held accountable if im wrong in this instance its a very useful word&#8230; Anyway i just thought id add my slant of things. Il definitely (another word that&#8217;s spelling gets me) be back! Anna</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Logout Issues with Version 2.7 by Matt</title>
		<link>http://designoplasty.com/2009/03/10/wordpress-logout-issues-with-version-27/comment-page-1/#comment-149</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Wed, 29 Jul 2009 18:37:58 +0000</pubDate>
		<guid isPermaLink="false">http://designoplasty.com/?p=261#comment-149</guid>
		<description>I looked at your theme. The code you&#039;d need to change is in the parent theme &quot;Hybrid&quot;, so you need to download the latest version of that. I checked the code and it has been corrected in that parent theme.</description>
		<content:encoded><![CDATA[<p>I looked at your theme. The code you&#8217;d need to change is in the parent theme &#8220;Hybrid&#8221;, so you need to download the latest version of that. I checked the code and it has been corrected in that parent theme.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Logout Issues with Version 2.7 by Evan Brammer &#124; Losing The World</title>
		<link>http://designoplasty.com/2009/03/10/wordpress-logout-issues-with-version-27/comment-page-1/#comment-148</link>
		<dc:creator>Evan Brammer &#124; Losing The World</dc:creator>
		<pubDate>Wed, 29 Jul 2009 13:41:14 +0000</pubDate>
		<guid isPermaLink="false">http://designoplasty.com/?p=261#comment-148</guid>
		<description>Okay, I can handle some PHP and whatnot, but even looking at the documentation you linked to I have no real idea how to fix my theme to keep this from happening.  Any suggestions?  I am using Hybrid News child theme from Theme Hybrid.</description>
		<content:encoded><![CDATA[<p>Okay, I can handle some PHP and whatnot, but even looking at the documentation you linked to I have no real idea how to fix my theme to keep this from happening.  Any suggestions?  I am using Hybrid News child theme from Theme Hybrid.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Running Your Own Business by Matt</title>
		<link>http://designoplasty.com/2009/06/22/running-your-own-business/comment-page-1/#comment-143</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Wed, 24 Jun 2009 18:08:17 +0000</pubDate>
		<guid isPermaLink="false">http://designoplasty.com/?p=802#comment-143</guid>
		<description>That&#039;s absolutely true.</description>
		<content:encoded><![CDATA[<p>That&#8217;s absolutely true.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Running Your Own Business by Anna Green</title>
		<link>http://designoplasty.com/2009/06/22/running-your-own-business/comment-page-1/#comment-142</link>
		<dc:creator>Anna Green</dc:creator>
		<pubDate>Wed, 24 Jun 2009 15:48:06 +0000</pubDate>
		<guid isPermaLink="false">http://designoplasty.com/?p=802#comment-142</guid>
		<description>I think a person needs a certain amount of job and life experience as well a people skills to be able to go freelance and do a job they could be proud of. I though about going freelance whilst at my last job, and i guess i didn&#039;t do it because i knew that i wasn&#039;t ready. If i had it would have been a disaster! I know that because i have a little more experience in working face to face with customers.</description>
		<content:encoded><![CDATA[<p>I think a person needs a certain amount of job and life experience as well a people skills to be able to go freelance and do a job they could be proud of. I though about going freelance whilst at my last job, and i guess i didn&#8217;t do it because i knew that i wasn&#8217;t ready. If i had it would have been a disaster! I know that because i have a little more experience in working face to face with customers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Theme for Doxie News by Anna Green</title>
		<link>http://designoplasty.com/2009/06/09/new-theme-for-doxie-news/comment-page-1/#comment-138</link>
		<dc:creator>Anna Green</dc:creator>
		<pubDate>Wed, 17 Jun 2009 15:52:22 +0000</pubDate>
		<guid isPermaLink="false">http://designoplasty.com/?p=772#comment-138</guid>
		<description>I wholeheartedly agree!!! Helvetica is vastly better than Aerial I can&#039;t get over how so many people use Aerial over Helvetica. Its worrying and a sign that a person has not got much experience when it come to working with type. Which in graphic design is one of the most important factors.</description>
		<content:encoded><![CDATA[<p>I wholeheartedly agree!!! Helvetica is vastly better than Aerial I can&#8217;t get over how so many people use Aerial over Helvetica. Its worrying and a sign that a person has not got much experience when it come to working with type. Which in graphic design is one of the most important factors.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
