<?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 Manz Web Designs, LLC - Events</title>
	<atom:link href="http://events.manzwebdesigns.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://events.manzwebdesigns.com</link>
	<description>Where your web comes to life!</description>
	<lastBuildDate>Sat, 19 Nov 2011 05:06:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Saving CKEditor data to MySQL Database by admin</title>
		<link>http://events.manzwebdesigns.com/2011/10/28/saving-ckeditor-data-mysql-database/#comment-161</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sat, 19 Nov 2011 05:06:44 +0000</pubDate>
		<guid isPermaLink="false">http://events.manzwebdesigns.com/?p=184#comment-161</guid>
		<description>Sounds Great, glad I was a help to you!  And thanks for posting your solution, I appreciate it!  I haven&#039;t messed with prototype, but have heard good things about it... I am a jQuery guy, myself :)

Bud</description>
		<content:encoded><![CDATA[<p>Sounds Great, glad I was a help to you!  And thanks for posting your solution, I appreciate it!  I haven&#8217;t messed with prototype, but have heard good things about it&#8230; I am a jQuery guy, myself <img src='http://events.manzwebdesigns.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Bud<br />
<span class="cluv">admin recently posted..<a class="70c98b50ed 161 p" rel="nofollow" href="http://events.manzwebdesigns.com/2010/07/27/dynamic-page-content-replacement-using-ajax-and-php-tutorial/">Dynamic Page Content Replacement using AJAX and PHP Tutorial</a><span class="heart_tip_box"><img class="heart_tip p 161 e4f36" alt="My Profile" style="border:0" width="16" height="14" src="http://events.manzwebdesigns.com/wp-content/plugins/commentluv-premium/images/littleheartplus.gif"/></span></span> <span class="dofollow"></span></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Saving CKEditor data to MySQL Database by Todd</title>
		<link>http://events.manzwebdesigns.com/2011/10/28/saving-ckeditor-data-mysql-database/#comment-158</link>
		<dc:creator>Todd</dc:creator>
		<pubDate>Tue, 15 Nov 2011 19:13:08 +0000</pubDate>
		<guid isPermaLink="false">http://events.manzwebdesigns.com/?p=184#comment-158</guid>
		<description>Actually, I finally got the button to appear. I do appreciate your help thought! If not for your article, I might still be banging my head!

I had to call extraPlugins from within the CKEDITOR.replace() method call. Once I did that I was able to setup the plugin to use my Prototype-specific method of pushing the data. In case you or anybody else may be interested, here&#039;s my plugin.js for Prototype.

CKEDITOR.plugins.add(&#039;ajaxsave&#039;, { init: function(editor) { var pluginName = &#039;ajaxsave&#039;;

    editor.addCommand( pluginName,
    {
        exec : function( editor )
        {
            new Ajax.Request(&#039;ajaxsave.php&#039;,
            {
                method:     &quot;POST&quot;,
                parameters: { filename: &#039;index.html&#039;, editor: editor.getData() },
                onFailure:  function() { ThrowError(&quot;Error: The server has returned an unknown error&quot;); },
                on0:        function() { ThrowError(&#039;Error: The server is not responding. Please try again.&#039;); },
                onSuccess:  function(transport) {

                    var resp = transport.responseText;

                    //Successful processing by ckprocess.php should return simply &#039;OK&#039;. 
                    if(resp == &quot;OK&quot;) {
                        //This is a custom function I wrote to display messages. Nicer than alert() 
                        ShowPageMessage(&#039;Changes have been saved successfully!&#039;);
                    } else {
                        ShowPageMessage(resp,&#039;10&#039;);
                    }
                }
            });
        },

        canUndo : true
    });

    editor.ui.addButton(&#039;ajaxsave&#039;,
    {
        label: &#039;Save&#039;,
        command: pluginName,
        className : &#039;cke_button_save&#039;
    });
}

});</description>
		<content:encoded><![CDATA[<p>Actually, I finally got the button to appear. I do appreciate your help thought! If not for your article, I might still be banging my head!</p>
<p>I had to call extraPlugins from within the CKEDITOR.replace() method call. Once I did that I was able to setup the plugin to use my Prototype-specific method of pushing the data. In case you or anybody else may be interested, here&#8217;s my plugin.js for Prototype.</p>
<p>CKEDITOR.plugins.add(&#8216;ajaxsave&#8217;, { init: function(editor) { var pluginName = &#8216;ajaxsave&#8217;;</p>
<p>    editor.addCommand( pluginName,<br />
    {<br />
        exec : function( editor )<br />
        {<br />
            new Ajax.Request(&#8216;ajaxsave.php&#8217;,<br />
            {<br />
                method:     &#8220;POST&#8221;,<br />
                parameters: { filename: &#8216;index.html&#8217;, editor: editor.getData() },<br />
                onFailure:  function() { ThrowError(&#8220;Error: The server has returned an unknown error&#8221;); },<br />
                on0:        function() { ThrowError(&#8216;Error: The server is not responding. Please try again.&#8217;); },<br />
                onSuccess:  function(transport) {</p>
<p>                    var resp = transport.responseText;</p>
<p>                    //Successful processing by ckprocess.php should return simply &#8216;OK&#8217;.<br />
                    if(resp == &#8220;OK&#8221;) {<br />
                        //This is a custom function I wrote to display messages. Nicer than alert()<br />
                        ShowPageMessage(&#8216;Changes have been saved successfully!&#8217;);<br />
                    } else {<br />
                        ShowPageMessage(resp,&#8217;10&#8242;);<br />
                    }<br />
                }<br />
            });<br />
        },</p>
<p>        canUndo : true<br />
    });</p>
<p>    editor.ui.addButton(&#8216;ajaxsave&#8217;,<br />
    {<br />
        label: &#8216;Save&#8217;,<br />
        command: pluginName,<br />
        className : &#8216;cke_button_save&#8217;<br />
    });<br />
}</p>
<p>});</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Saving CKEditor data to MySQL Database by admin</title>
		<link>http://events.manzwebdesigns.com/2011/10/28/saving-ckeditor-data-mysql-database/#comment-157</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 15 Nov 2011 18:00:02 +0000</pubDate>
		<guid isPermaLink="false">http://events.manzwebdesigns.com/?p=184#comment-157</guid>
		<description>Hi Todd,

Thanks, I try to write my tutorials so they can be understood.  Make sure that this section in your config.js file looks has &#039;Ajaxsave&#039; in it:

config.toolbar_MyToolbar = [
        [&#039;NewPage&#039;,&#039;Preview&#039;,&#039;Ajaxsave&#039;],

and later in the file, you need to make sure that the editor is aware of the new button:

    config.extraPlugins = &#039;ajaxsave&#039;;

Other than that, I would need to see your code to determine why it is not showing up.

HTH,
Bud</description>
		<content:encoded><![CDATA[<p>Hi Todd,</p>
<p>Thanks, I try to write my tutorials so they can be understood.  Make sure that this section in your config.js file looks has &#8216;Ajaxsave&#8217; in it:</p>
<p>config.toolbar_MyToolbar = [<br />
        ['NewPage','Preview','Ajaxsave'],</p>
<p>and later in the file, you need to make sure that the editor is aware of the new button:</p>
<p>    config.extraPlugins = &#8216;ajaxsave&#8217;;</p>
<p>Other than that, I would need to see your code to determine why it is not showing up.</p>
<p>HTH,<br />
Bud<br />
<span class="cluv">admin recently posted..<a class="ba71598947 157 p" rel="nofollow" href="http://events.manzwebdesigns.com/2011/08/30/power-people/">The Power of People</a><span class="heart_tip_box"><img class="heart_tip p 157 e4f36" alt="My Profile" style="border:0" width="16" height="14" src="http://events.manzwebdesigns.com/wp-content/plugins/commentluv-premium/images/littleheartplus.gif"/></span></span> <span class="dofollow"></span></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Saving CKEditor data to MySQL Database by Todd</title>
		<link>http://events.manzwebdesigns.com/2011/10/28/saving-ckeditor-data-mysql-database/#comment-156</link>
		<dc:creator>Todd</dc:creator>
		<pubDate>Tue, 15 Nov 2011 17:43:41 +0000</pubDate>
		<guid isPermaLink="false">http://events.manzwebdesigns.com/?p=184#comment-156</guid>
		<description>Hi,

Excellent post. Very clear and seemingly simple. Except I can&#039;t get the custom button to show up. I am using CKE 3.6.2 in Firefox 7. I know the docs are really, really poor but I would think I could at least get the icon to show up. Did you have any problems initializing the plugin?

Thanks again!</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Excellent post. Very clear and seemingly simple. Except I can&#8217;t get the custom button to show up. I am using CKE 3.6.2 in Firefox 7. I know the docs are really, really poor but I would think I could at least get the icon to show up. Did you have any problems initializing the plugin?</p>
<p>Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Guest Writer Intros by kyle</title>
		<link>http://events.manzwebdesigns.com/guest-writer-intros/#comment-130</link>
		<dc:creator>kyle</dc:creator>
		<pubDate>Tue, 04 Oct 2011 16:12:52 +0000</pubDate>
		<guid isPermaLink="false">http://events.manzwebdesigns.com/?page_id=181#comment-130</guid>
		<description>Kyle Keiper: About Me

Hi, Everyone!

My name is Kyle Keiper, and I&#039;ve been invited to write here on the Manz Web Designs blog. I&#039;m a college student studying Web Design, and I&#039;ve had several years practical experience in the field. I know about a number of web technologies, but by no means am I a master. If you have questions or improvements, please post them as comments!

I&#039;m from north-eastern Ohio, and I got to know Bud through his love of music. We really hit it off, and found out that we both are very interested in web site design as well as programming.

In the past, I&#039;ve enjoyed writing Java applications in my spare time, but recently, I&#039;ve found that I enjoy PHP applications just as much. I really enjoy the scripting when it comes to websites because it makes you feel good when you can get something to be useful.

My most recent project has been working on a PHP Class to simplify a bunch of common MySQL utilities. I realize that I could have just gone out there and grabbed a library for it, but I wanted to learn more about PHP classes, so that&#039;s been my active project recently. Currently, there are 8 functions in the class, ranging from creating the connection with the database to retrieving and formatting data quickly to executing from a file! It&#039;s been a fun learning experience, and I am very open to suggestions for it.

Kyle</description>
		<content:encoded><![CDATA[<p>Kyle Keiper: About Me</p>
<p>Hi, Everyone!</p>
<p>My name is Kyle Keiper, and I&#8217;ve been invited to write here on the Manz Web Designs blog. I&#8217;m a college student studying Web Design, and I&#8217;ve had several years practical experience in the field. I know about a number of web technologies, but by no means am I a master. If you have questions or improvements, please post them as comments!</p>
<p>I&#8217;m from north-eastern Ohio, and I got to know Bud through his love of music. We really hit it off, and found out that we both are very interested in web site design as well as programming.</p>
<p>In the past, I&#8217;ve enjoyed writing Java applications in my spare time, but recently, I&#8217;ve found that I enjoy PHP applications just as much. I really enjoy the scripting when it comes to websites because it makes you feel good when you can get something to be useful.</p>
<p>My most recent project has been working on a PHP Class to simplify a bunch of common MySQL utilities. I realize that I could have just gone out there and grabbed a library for it, but I wanted to learn more about PHP classes, so that&#8217;s been my active project recently. Currently, there are 8 functions in the class, ranging from creating the connection with the database to retrieving and formatting data quickly to executing from a file! It&#8217;s been a fun learning experience, and I am very open to suggestions for it.</p>
<p>Kyle</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on InSource Technologies, Inc website completed by admin</title>
		<link>http://events.manzwebdesigns.com/2010/03/16/insource-technologies-inc-website-completed/#comment-129</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 03 Oct 2011 13:39:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.manzwebdesigns.com/wp/?p=80#comment-129</guid>
		<description>You are welcome!</description>
		<content:encoded><![CDATA[<p>You are welcome!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Testimonials by Missi</title>
		<link>http://events.manzwebdesigns.com/testimonials/#comment-127</link>
		<dc:creator>Missi</dc:creator>
		<pubDate>Thu, 29 Sep 2011 21:39:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.manzwebdesigns.com/wp/?page_id=64#comment-127</guid>
		<description>Felt so hopeless looikng for answers to my questions...until now.</description>
		<content:encoded><![CDATA[<p>Felt so hopeless looikng for answers to my questions&#8230;until now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on InSource Technologies, Inc website completed by Yurosie</title>
		<link>http://events.manzwebdesigns.com/2010/03/16/insource-technologies-inc-website-completed/#comment-124</link>
		<dc:creator>Yurosie</dc:creator>
		<pubDate>Wed, 28 Sep 2011 07:42:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.manzwebdesigns.com/wp/?p=80#comment-124</guid>
		<description>Nice post... Thanks</description>
		<content:encoded><![CDATA[<p>Nice post&#8230; Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Preparing For a Website by Bud Manz</title>
		<link>http://events.manzwebdesigns.com/2010/10/02/preparing-for-a-website/#comment-53</link>
		<dc:creator>Bud Manz</dc:creator>
		<pubDate>Wed, 31 Aug 2011 02:10:23 +0000</pubDate>
		<guid isPermaLink="false">http://events.manzwebdesigns.com/?p=123#comment-53</guid>
		<description>You are welcome!</description>
		<content:encoded><![CDATA[<p>You are welcome!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Preparing For a Website by nord kz</title>
		<link>http://events.manzwebdesigns.com/2010/10/02/preparing-for-a-website/#comment-21</link>
		<dc:creator>nord kz</dc:creator>
		<pubDate>Mon, 15 Aug 2011 15:02:43 +0000</pubDate>
		<guid isPermaLink="false">http://events.manzwebdesigns.com/?p=123#comment-21</guid>
		<description>admin krytay infa, i from iran and read you blog, thanks!</description>
		<content:encoded><![CDATA[<p>admin krytay infa, i from iran and read you blog, thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

