<?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 on: An Image Upload Extension for YUI Rich Text Editor</title>
	<atom:link href="http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/feed/" rel="self" type="application/rss+xml" />
	<link>http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/</link>
	<description>Where stuff from my brain lands</description>
	<lastBuildDate>Tue, 07 Feb 2012 16:14:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Nic</title>
		<link>http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/comment-page-3/#comment-1191</link>
		<dc:creator>Nic</dc:creator>
		<pubDate>Fri, 29 Jul 2011 15:08:58 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/#comment-1191</guid>
		<description>Hello, I was wondering if there is an easy way to strip out some of the options from the image uploader dialogue?  I&#039;ve dug around but I can&#039;t seem to locate the piece that you add the &quot;upload&quot; button to.

Thanks</description>
		<content:encoded><![CDATA[<p>Hello, I was wondering if there is an easy way to strip out some of the options from the image uploader dialogue?  I&#8217;ve dug around but I can&#8217;t seem to locate the piece that you add the &#8220;upload&#8221; button to.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Igor</title>
		<link>http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/comment-page-3/#comment-1189</link>
		<dc:creator>Igor</dc:creator>
		<pubDate>Wed, 27 Jul 2011 13:52:39 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/#comment-1189</guid>
		<description>Whoops, sorry - little mistake. Second arg of yuiImgUploader() should be same with first arg of Editor constructor:

var myEditor=new YAHOO.widget.Editor(‘rte_div’,cfg);
yuiImgUploader(myEditor, ‘rte_div’, ‘/upload_url’,&#039;param_name’);
myEditor.render();</description>
		<content:encoded><![CDATA[<p>Whoops, sorry &#8211; little mistake. Second arg of yuiImgUploader() should be same with first arg of Editor constructor:</p>
<p>var myEditor=new YAHOO.widget.Editor(‘rte_div’,cfg);<br />
yuiImgUploader(myEditor, ‘rte_div’, ‘/upload_url’,&#8217;param_name’);<br />
myEditor.render();</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Igor</title>
		<link>http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/comment-page-3/#comment-1188</link>
		<dc:creator>Igor</dc:creator>
		<pubDate>Wed, 27 Jul 2011 13:50:05 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/#comment-1188</guid>
		<description>madhan: I guess I had same troubles today. 
There should be 4 args in function in last version of this plugin:

var myEditor=new YAHOO.widget.Editor(&#039;rte_div&#039;,cfg);
yuiImgUploader(myEditor, &#039;editor_name&#039;, &#039;/upload_url&#039;,&#039;param_name&#039;);
myEditor.render();


More info I found here: http://allmybrain.com/2010/06/16/yui-image-uploader-works-with-yui-2-8-1/</description>
		<content:encoded><![CDATA[<p>madhan: I guess I had same troubles today.<br />
There should be 4 args in function in last version of this plugin:</p>
<p>var myEditor=new YAHOO.widget.Editor(&#8216;rte_div&#8217;,cfg);<br />
yuiImgUploader(myEditor, &#8216;editor_name&#8217;, &#8216;/upload_url&#8217;,'param_name&#8217;);<br />
myEditor.render();</p>
<p>More info I found here: <a href="http://allmybrain.com/2010/06/16/yui-image-uploader-works-with-yui-2-8-1/" rel="nofollow">http://allmybrain.com/2010/06/16/yui-image-uploader-works-with-yui-2-8-1/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis</title>
		<link>http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/comment-page-3/#comment-1185</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Mon, 27 Jun 2011 12:36:51 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/#comment-1185</guid>
		<description>madhan: You need to read the other posts on this blog about backend programming.  The line you are having is part of what ties the front end to a back end script.

Juan: You&#039;d probably get your answer better on the YUI forums.  I always accessed the content with the YUI api directly.</description>
		<content:encoded><![CDATA[<p>madhan: You need to read the other posts on this blog about backend programming.  The line you are having is part of what ties the front end to a back end script.</p>
<p>Juan: You&#8217;d probably get your answer better on the YUI forums.  I always accessed the content with the YUI api directly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juan</title>
		<link>http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/comment-page-3/#comment-1184</link>
		<dc:creator>Juan</dc:creator>
		<pubDate>Sat, 25 Jun 2011 16:42:27 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/#comment-1184</guid>
		<description>Hello. This script is beautiful and works perfectly with my backend perl scripts. I have one little problem though. When I upload an image into the RTE followed imediatley by some text &#039;foo&#039; I&#039;m able to retrieve the image and text value through jQuery with no problem. But if I were to reverse it like start off with some text &#039;foo&#039; immediately followed by an uploaded image I&#039;m only able to retrieve the text but not the image value. Any idea as to why? Thnx!</description>
		<content:encoded><![CDATA[<p>Hello. This script is beautiful and works perfectly with my backend perl scripts. I have one little problem though. When I upload an image into the RTE followed imediatley by some text &#8216;foo&#8217; I&#8217;m able to retrieve the image and text value through jQuery with no problem. But if I were to reverse it like start off with some text &#8216;foo&#8217; immediately followed by an uploaded image I&#8217;m only able to retrieve the text but not the image value. Any idea as to why? Thnx!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhan</title>
		<link>http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/comment-page-3/#comment-1183</link>
		<dc:creator>madhan</dc:creator>
		<pubDate>Thu, 23 Jun 2011 08:21:10 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/#comment-1183</guid>
		<description>yuiImgUploader(myEditor, &#039;/wp-content/uploads/2007/12/yui_img_uploader.php&#039;,&#039;image&#039;);explain this line</description>
		<content:encoded><![CDATA[<p>yuiImgUploader(myEditor, &#8216;/wp-content/uploads/2007/12/yui_img_uploader.php&#8217;,'image&#8217;);explain this line</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhan</title>
		<link>http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/comment-page-3/#comment-1182</link>
		<dc:creator>madhan</dc:creator>
		<pubDate>Thu, 23 Jun 2011 08:19:14 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/#comment-1182</guid>
		<description>hi i am working on image upload
  still my code is not working i dunno were is the mistake
can anyone send me the source code.</description>
		<content:encoded><![CDATA[<p>hi i am working on image upload<br />
  still my code is not working i dunno were is the mistake<br />
can anyone send me the source code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis</title>
		<link>http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/comment-page-3/#comment-1177</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Fri, 17 Jun 2011 17:25:09 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/#comment-1177</guid>
		<description>There are several examples of how to do that in multiple different server side languages if you search the YUI examples on this site.</description>
		<content:encoded><![CDATA[<p>There are several examples of how to do that in multiple different server side languages if you search the YUI examples on this site.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Madhan</title>
		<link>http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/comment-page-3/#comment-1176</link>
		<dc:creator>Madhan</dc:creator>
		<pubDate>Fri, 17 Jun 2011 12:16:05 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/#comment-1176</guid>
		<description>can any one tel. how to get the values from the editor and have to post the values in my database.hep me</description>
		<content:encoded><![CDATA[<p>can any one tel. how to get the values from the editor and have to post the values in my database.hep me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shreyo</title>
		<link>http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/comment-page-3/#comment-1169</link>
		<dc:creator>Shreyo</dc:creator>
		<pubDate>Fri, 08 Apr 2011 10:53:14 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/#comment-1169</guid>
		<description>is there any specific reason, why the pop-up is not working? when i click the upload button on the yui upload button, the default images comes, but not the pop-up for further process..
any of your solution will be helpful..</description>
		<content:encoded><![CDATA[<p>is there any specific reason, why the pop-up is not working? when i click the upload button on the yui upload button, the default images comes, but not the pop-up for further process..<br />
any of your solution will be helpful..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brilver</title>
		<link>http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/comment-page-3/#comment-1094</link>
		<dc:creator>Brilver</dc:creator>
		<pubDate>Fri, 29 Oct 2010 03:16:06 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/#comment-1094</guid>
		<description>I tried the codes, image is uploaded, but when submit the form only the texts added to the data base.. Please help Urgent.. 
Thanx.</description>
		<content:encoded><![CDATA[<p>I tried the codes, image is uploaded, but when submit the form only the texts added to the data base.. Please help Urgent..<br />
Thanx.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: YUI Image Uploader works with YUI 2.8.1 &#124; All My Brain</title>
		<link>http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/comment-page-3/#comment-1048</link>
		<dc:creator>YUI Image Uploader works with YUI 2.8.1 &#124; All My Brain</dc:creator>
		<pubDate>Wed, 16 Jun 2010 13:23:40 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/#comment-1048</guid>
		<description>[...] double check that the image upload still works fine with YUI 2.8.1 If you haven&#039;t read the original YUI Image Uploader page, start there. After that, you can use this page for an example getting the script to work with [...]</description>
		<content:encoded><![CDATA[<p>[...] double check that the image upload still works fine with YUI 2.8.1 If you haven&#39;t read the original YUI Image Uploader page, start there. After that, you can use this page for an example getting the script to work with [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: YUI Image Uploader for Rich Text Editor 2.8.0r4- Emin KURA</title>
		<link>http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/comment-page-3/#comment-1028</link>
		<dc:creator>YUI Image Uploader for Rich Text Editor 2.8.0r4- Emin KURA</dc:creator>
		<pubDate>Sat, 27 Feb 2010 23:36:46 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/#comment-1028</guid>
		<description>[...] this manually and then copy its link to URL input. This way is cumbersome, i have googled and found this post which presents a plugin that stands for image uploader for YUI rich text editor. This plugin adds [...]</description>
		<content:encoded><![CDATA[<p>[...] this manually and then copy its link to URL input. This way is cumbersome, i have googled and found this post which presents a plugin that stands for image uploader for YUI rich text editor. This plugin adds [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: YUI Image Uploader Example with TurboGears &#124; All My Brain</title>
		<link>http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/comment-page-3/#comment-1027</link>
		<dc:creator>YUI Image Uploader Example with TurboGears &#124; All My Brain</dc:creator>
		<pubDate>Wed, 17 Feb 2010 14:00:44 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/#comment-1027</guid>
		<description>[...] image upload, javascript, python, rich text editor, rte, turbogears, yui       After completing the YUI Image Uploader, I received a lot of requests for a working example. I didn&#039;t originally create a working example, [...]</description>
		<content:encoded><![CDATA[<p>[...] image upload, javascript, python, rich text editor, rte, turbogears, yui       After completing the YUI Image Uploader, I received a lot of requests for a working example. I didn&#39;t originally create a working example, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: abhishek198</title>
		<link>http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/comment-page-3/#comment-1017</link>
		<dc:creator>abhishek198</dc:creator>
		<pubDate>Sat, 06 Feb 2010 13:46:36 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/#comment-1017</guid>
		<description>Does the RTE work with YUI version 2.8.0r4 ?</description>
		<content:encoded><![CDATA[<p>Does the RTE work with YUI version 2.8.0r4 ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Candice Witz</title>
		<link>http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/comment-page-3/#comment-1013</link>
		<dc:creator>Candice Witz</dc:creator>
		<pubDate>Tue, 26 Jan 2010 00:16:35 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/#comment-1013</guid>
		<description>I’m looking for a multi-OEM product offering but within a single catalog and preferably through a single web portal – are there any consulting services that offer that? In researching I found this http://global-serve.com/Services/ITProcurement/tabid/180/Default.aspx but not sure if there are bigger consulting firms that can offer this kind of thing?</description>
		<content:encoded><![CDATA[<p>I’m looking for a multi-OEM product offering but within a single catalog and preferably through a single web portal – are there any consulting services that offer that? In researching I found this <a href="http://global-serve.com/Services/ITProcurement/tabid/180/Default.aspx" rel="nofollow">http://global-serve.com/Services/ITProcurement/tabid/180/Default.aspx</a> but not sure if there are bigger consulting firms that can offer this kind of thing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Image Upload with YUI Editor 2.5.0 &#124; All My Brain</title>
		<link>http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/comment-page-3/#comment-1006</link>
		<dc:creator>Image Upload with YUI Editor 2.5.0 &#124; All My Brain</dc:creator>
		<pubDate>Sat, 16 Jan 2010 14:10:11 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/#comment-1006</guid>
		<description>[...] YIU Rich Text Editor Image Upload Extension. [...]</description>
		<content:encoded><![CDATA[<p>[...] YIU Rich Text Editor Image Upload Extension. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: An Example Rich Text Editor Image Upload with PHP &#124; All My Brain</title>
		<link>http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/comment-page-3/#comment-1004</link>
		<dc:creator>An Example Rich Text Editor Image Upload with PHP &#124; All My Brain</dc:creator>
		<pubDate>Sat, 16 Jan 2010 14:08:59 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/#comment-1004</guid>
		<description>[...] Tags: ajax, image upload, javascript, php, rich text editor, rte, yui       After my previous image uploader and turbogears image uploader posts, the overwhelmingly most requested information has been a PHP [...]</description>
		<content:encoded><![CDATA[<p>[...] Tags: ajax, image upload, javascript, php, rich text editor, rte, yui       After my previous image uploader and turbogears image uploader posts, the overwhelmingly most requested information has been a PHP [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Vaughan</title>
		<link>http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/comment-page-3/#comment-934</link>
		<dc:creator>Andy Vaughan</dc:creator>
		<pubDate>Thu, 03 Sep 2009 16:30:36 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/#comment-934</guid>
		<description>== Image uploads failing in IE7 ==

Just solved this after banging my head against it for a while (ahh, the joys of web development!).

If the &quot;name&quot; attribute of the form that contains the  used by the YUI Rich Text Area is set to &quot;action&quot; then the image upload script fails in IE7.

For some reason it makes an ajax call to the page containing the form rather than the server-side script designed to handle the image upload. Changing the &quot;name&quot; attribute to something else (such as &quot;save&quot;) resolves the issue.

Hope this helps someone else in the unlikely event that they have the same problem.

Cheers,</description>
		<content:encoded><![CDATA[<p>== Image uploads failing in IE7 ==</p>
<p>Just solved this after banging my head against it for a while (ahh, the joys of web development!).</p>
<p>If the &#8220;name&#8221; attribute of the form that contains the  used by the YUI Rich Text Area is set to &#8220;action&#8221; then the image upload script fails in IE7.</p>
<p>For some reason it makes an ajax call to the page containing the form rather than the server-side script designed to handle the image upload. Changing the &#8220;name&#8221; attribute to something else (such as &#8220;save&#8221;) resolves the issue.</p>
<p>Hope this helps someone else in the unlikely event that they have the same problem.</p>
<p>Cheers,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis</title>
		<link>http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/comment-page-3/#comment-913</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Tue, 07 Jul 2009 11:56:18 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/10/16/an-image-upload-extension-for-yui-rich-text-editor/#comment-913</guid>
		<description>Firefox w/ Firebug installed is your friend.  Make sure the framework is including all the correct YUI headers.  Do you have additional HTML on the page that may be conflicting?  Enable the YUI logging console too.</description>
		<content:encoded><![CDATA[<p>Firefox w/ Firebug installed is your friend.  Make sure the framework is including all the correct YUI headers.  Do you have additional HTML on the page that may be conflicting?  Enable the YUI logging console too.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

