<?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: Example YUI Image upload with YUI 2.6.0</title>
	<atom:link href="http://allmybrain.com/2008/11/06/example-yui-image-upload-with-yui-260/feed/" rel="self" type="application/rss+xml" />
	<link>http://allmybrain.com/2008/11/06/example-yui-image-upload-with-yui-260/</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: Dennis</title>
		<link>http://allmybrain.com/2008/11/06/example-yui-image-upload-with-yui-260/comment-page-1/#comment-1114</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Tue, 04 Jan 2011 03:22:15 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/?p=163#comment-1114</guid>
		<description>I&#039;m afraid resizing on the client side is something that is going to be a real pain with JavaScript.  Perhaps it can be done but if so I don&#039;t know how.  I don&#039;t think could do it unless you were using a browser extension or a plugin.  Flash or Java could probably do it.  

Anyway, beyond the scope of this project anyway I think.</description>
		<content:encoded><![CDATA[<p>I&#8217;m afraid resizing on the client side is something that is going to be a real pain with JavaScript.  Perhaps it can be done but if so I don&#8217;t know how.  I don&#8217;t think could do it unless you were using a browser extension or a plugin.  Flash or Java could probably do it.  </p>
<p>Anyway, beyond the scope of this project anyway I think.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: andy</title>
		<link>http://allmybrain.com/2008/11/06/example-yui-image-upload-with-yui-260/comment-page-1/#comment-1113</link>
		<dc:creator>andy</dc:creator>
		<pubDate>Tue, 04 Jan 2011 03:22:03 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/?p=163#comment-1113</guid>
		<description>Here is my crop_image.php. I know how to add this to yui_image_uploader.php. However, somehow it doesn&#039;t pass image_url to connection manager. the php file is heavenly tied to javascript and json which i don&#039;t know. can anyone help?


function getExtension($str) {

         $i = strrpos($str,&quot;.&quot;);
         if (!$i) { return &quot;&quot;; } 

         $l = strlen($str) - $i;
         $ext = substr($str,$i+1,$l);
         return $ext;
}
 
$errors=0;

if($_SERVER[&quot;REQUEST_METHOD&quot;] == &quot;POST&quot;)
{
      $image =$_FILES[&quot;file&quot;][&quot;name&quot;];
	 $uploadedfile = $_FILES[&#039;file&#039;][&#039;tmp_name&#039;];

	  if ($image) 
	  {
		  $filename = stripslashes($_FILES[&#039;file&#039;][&#039;name&#039;]);
		  $extension = getExtension($filename);
		  $extension = strtolower($extension);
		  
		 if (($extension != &quot;jpg&quot;) &amp;&amp; ($extension != &quot;jpeg&quot;) &amp;&amp; ($extension != &quot;png&quot;) &amp;&amp; ($extension != &quot;gif&quot;)) 
		  {
			echo &#039; Unknown Image extension &#039;;
			$errors=1;
		  } else {
			   $size=filesize($_FILES[&#039;file&#039;][&#039;tmp_name&#039;]);
			 
		 
				if($extension==&quot;jpg&quot; &#124;&#124; $extension==&quot;jpeg&quot; )
				{
				$uploadedfile = $_FILES[&#039;file&#039;][&#039;tmp_name&#039;];
				$src = imagecreatefromjpeg($uploadedfile);
				}
				else if($extension==&quot;png&quot;)
				{
				$uploadedfile = $_FILES[&#039;file&#039;][&#039;tmp_name&#039;];
				$src = imagecreatefrompng($uploadedfile);
				}
				else 
				{
				$src = imagecreatefromgif($uploadedfile);
				}
	 
				list($width,$height)=getimagesize($uploadedfile);

				$newwidth=720;
				$newheight=($height/$width)*$newwidth;
				$tmp=imagecreatetruecolor($newwidth,$newheight);

				imagecopyresampled($tmp,$src,0,0,0,0,$newwidth,$newheight,

				 $width,$height);

                $ran = rand ();
				$filename = &quot;test_images/cropped_&quot;.$ran.&quot;_&quot;.$_FILES[&#039;file&#039;][&#039;name&#039;];

				imagejpeg($tmp,$filename,100);

				imagedestroy($src);
				imagedestroy($tmp);
			}//else
	}//if($image)
}//if($server
//If no errors registred, print the success message

echo &quot;I got here&quot;;

if($_SERVER[&quot;REQUEST_METHOD&quot;] == &quot;POST&quot; &amp;&amp; !$errors) 
{
// mysql_query(&quot;update SQL statement &quot;);
echo &quot;Image Uploaded Successfully!&quot;;

 }</description>
		<content:encoded><![CDATA[<p>Here is my crop_image.php. I know how to add this to yui_image_uploader.php. However, somehow it doesn&#8217;t pass image_url to connection manager. the php file is heavenly tied to javascript and json which i don&#8217;t know. can anyone help?</p>
<p>function getExtension($str) {</p>
<p>         $i = strrpos($str,&#8221;.&#8221;);<br />
         if (!$i) { return &#8220;&#8221;; } </p>
<p>         $l = strlen($str) &#8211; $i;<br />
         $ext = substr($str,$i+1,$l);<br />
         return $ext;<br />
}</p>
<p>$errors=0;</p>
<p>if($_SERVER["REQUEST_METHOD"] == &#8220;POST&#8221;)<br />
{<br />
      $image =$_FILES["file"]["name"];<br />
	 $uploadedfile = $_FILES['file']['tmp_name'];</p>
<p>	  if ($image)<br />
	  {<br />
		  $filename = stripslashes($_FILES['file']['name']);<br />
		  $extension = getExtension($filename);<br />
		  $extension = strtolower($extension);</p>
<p>		 if (($extension != &#8220;jpg&#8221;) &amp;&amp; ($extension != &#8220;jpeg&#8221;) &amp;&amp; ($extension != &#8220;png&#8221;) &amp;&amp; ($extension != &#8220;gif&#8221;))<br />
		  {<br />
			echo &#8216; Unknown Image extension &#8216;;<br />
			$errors=1;<br />
		  } else {<br />
			   $size=filesize($_FILES['file']['tmp_name']);</p>
<p>				if($extension==&#8221;jpg&#8221; || $extension==&#8221;jpeg&#8221; )<br />
				{<br />
				$uploadedfile = $_FILES['file']['tmp_name'];<br />
				$src = imagecreatefromjpeg($uploadedfile);<br />
				}<br />
				else if($extension==&#8221;png&#8221;)<br />
				{<br />
				$uploadedfile = $_FILES['file']['tmp_name'];<br />
				$src = imagecreatefrompng($uploadedfile);<br />
				}<br />
				else<br />
				{<br />
				$src = imagecreatefromgif($uploadedfile);<br />
				}</p>
<p>				list($width,$height)=getimagesize($uploadedfile);</p>
<p>				$newwidth=720;<br />
				$newheight=($height/$width)*$newwidth;<br />
				$tmp=imagecreatetruecolor($newwidth,$newheight);</p>
<p>				imagecopyresampled($tmp,$src,0,0,0,0,$newwidth,$newheight,</p>
<p>				 $width,$height);</p>
<p>                $ran = rand ();<br />
				$filename = &#8220;test_images/cropped_&#8221;.$ran.&#8221;_&#8221;.$_FILES['file']['name'];</p>
<p>				imagejpeg($tmp,$filename,100);</p>
<p>				imagedestroy($src);<br />
				imagedestroy($tmp);<br />
			}//else<br />
	}//if($image)<br />
}//if($server<br />
//If no errors registred, print the success message</p>
<p>echo &#8220;I got here&#8221;;</p>
<p>if($_SERVER["REQUEST_METHOD"] == &#8220;POST&#8221; &amp;&amp; !$errors)<br />
{<br />
// mysql_query(&#8220;update SQL statement &#8220;);<br />
echo &#8220;Image Uploaded Successfully!&#8221;;</p>
<p> }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: andy</title>
		<link>http://allmybrain.com/2008/11/06/example-yui-image-upload-with-yui-260/comment-page-1/#comment-1112</link>
		<dc:creator>andy</dc:creator>
		<pubDate>Tue, 04 Jan 2011 03:19:20 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/?p=163#comment-1112</guid>
		<description>Hi Dennis,

You RTE is very useful. One problem I faced today is when I upload an image which is about 2M. it took too long and quickly filled up my server space. Do you think you can provide resizing option in yui_image_uploader.php file?

I tried to add resizing php code in your uploader.php, but it didn&#039;t work.</description>
		<content:encoded><![CDATA[<p>Hi Dennis,</p>
<p>You RTE is very useful. One problem I faced today is when I upload an image which is about 2M. it took too long and quickly filled up my server space. Do you think you can provide resizing option in yui_image_uploader.php file?</p>
<p>I tried to add resizing php code in your uploader.php, but it didn&#8217;t work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dodo</title>
		<link>http://allmybrain.com/2008/11/06/example-yui-image-upload-with-yui-260/comment-page-1/#comment-1043</link>
		<dc:creator>dodo</dc:creator>
		<pubDate>Mon, 12 Apr 2010 12:39:27 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/?p=163#comment-1043</guid>
		<description>Hi Dennis,
Its fantastic script!
What should i add in script that after user select image, the image panel will close auto?</description>
		<content:encoded><![CDATA[<p>Hi Dennis,<br />
Its fantastic script!<br />
What should i add in script that after user select image, the image panel will close auto?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: An Image Upload Extension for YUI Rich Text Editor &#124; All My Brain</title>
		<link>http://allmybrain.com/2008/11/06/example-yui-image-upload-with-yui-260/comment-page-1/#comment-998</link>
		<dc:creator>An Image Upload Extension for YUI Rich Text Editor &#124; All My Brain</dc:creator>
		<pubDate>Sat, 16 Jan 2010 09:44:51 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/?p=163#comment-998</guid>
		<description>[...] 11/6/08: I corrected errors in the script and added a working YUI 2.6 Image Uploader [...]</description>
		<content:encoded><![CDATA[<p>[...] 11/6/08: I corrected errors in the script and added a working YUI 2.6 Image Uploader [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis</title>
		<link>http://allmybrain.com/2008/11/06/example-yui-image-upload-with-yui-260/comment-page-1/#comment-876</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Thu, 16 Apr 2009 17:47:50 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/?p=163#comment-876</guid>
		<description>Everybody&#039;s situation is slightly different.  Different browsers, different Operating systems etc.  Only thing I can suggest is to user FireBug w/ Firefox and enable YUI logging.</description>
		<content:encoded><![CDATA[<p>Everybody&#8217;s situation is slightly different.  Different browsers, different Operating systems etc.  Only thing I can suggest is to user FireBug w/ Firefox and enable YUI logging.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Øyvind</title>
		<link>http://allmybrain.com/2008/11/06/example-yui-image-upload-with-yui-260/comment-page-1/#comment-875</link>
		<dc:creator>Øyvind</dc:creator>
		<pubDate>Thu, 16 Apr 2009 17:40:41 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/?p=163#comment-875</guid>
		<description>Im trying this RTE with pic upload... but im still getting the same problem i had with the other version...

The image gets uploaded, but the &quot;Image URL&quot; just &quot;reloads&quot;

I see it changes, but in a sec, it returns to &quot;Image URL Here&quot;

How can i fix this?

Thanks</description>
		<content:encoded><![CDATA[<p>Im trying this RTE with pic upload&#8230; but im still getting the same problem i had with the other version&#8230;</p>
<p>The image gets uploaded, but the &#8220;Image URL&#8221; just &#8220;reloads&#8221;</p>
<p>I see it changes, but in a sec, it returns to &#8220;Image URL Here&#8221;</p>
<p>How can i fix this?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajasekhar</title>
		<link>http://allmybrain.com/2008/11/06/example-yui-image-upload-with-yui-260/comment-page-1/#comment-870</link>
		<dc:creator>Rajasekhar</dc:creator>
		<pubDate>Tue, 14 Apr 2009 09:59:11 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/?p=163#comment-870</guid>
		<description>try
			{
				// responseText and responseXML will be populated with the same data from the iframe.
				// Since the HTTP headers cannot be read from the iframe
				console.log(io);
				obj.responseText = io.contentWindow.document.body?io.contentWindow.document.body.innerHTML:io.contentWindow.document.documentElement.textContent;
				obj.responseXML = io.contentWindow.document.XMLDocument?io.contentWindow.document.XMLDocument:io.contentWindow.document;
			}
			catch(e)
			{
				alert(e.message);
			}

in catch i am getting error like
&quot;Permission denied to get property Window.document&quot;</description>
		<content:encoded><![CDATA[<p>try<br />
			{<br />
				// responseText and responseXML will be populated with the same data from the iframe.<br />
				// Since the HTTP headers cannot be read from the iframe<br />
				console.log(io);<br />
				obj.responseText = io.contentWindow.document.body?io.contentWindow.document.body.innerHTML:io.contentWindow.document.documentElement.textContent;<br />
				obj.responseXML = io.contentWindow.document.XMLDocument?io.contentWindow.document.XMLDocument:io.contentWindow.document;<br />
			}<br />
			catch(e)<br />
			{<br />
				alert(e.message);<br />
			}</p>
<p>in catch i am getting error like<br />
&#8220;Permission denied to get property Window.document&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajasekhar</title>
		<link>http://allmybrain.com/2008/11/06/example-yui-image-upload-with-yui-260/comment-page-1/#comment-869</link>
		<dc:creator>Rajasekhar</dc:creator>
		<pubDate>Tue, 14 Apr 2009 09:56:34 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/?p=163#comment-869</guid>
		<description>when form submitted response is inserted to iframe.

in connection.js 
uploadFile:function(o, callback, uri, postData) 

in this method i am unable to get the response.

Mianly i am using this in ning opnesocial application.

please help me on this issue.this is very important for me.

target iframe is getting created and removed .then how can i get the response 


thank 
Rajasekhar</description>
		<content:encoded><![CDATA[<p>when form submitted response is inserted to iframe.</p>
<p>in connection.js<br />
uploadFile:function(o, callback, uri, postData) </p>
<p>in this method i am unable to get the response.</p>
<p>Mianly i am using this in ning opnesocial application.</p>
<p>please help me on this issue.this is very important for me.</p>
<p>target iframe is getting created and removed .then how can i get the response </p>
<p>thank<br />
Rajasekhar</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajasekhar</title>
		<link>http://allmybrain.com/2008/11/06/example-yui-image-upload-with-yui-260/comment-page-1/#comment-868</link>
		<dc:creator>Rajasekhar</dc:creator>
		<pubDate>Tue, 14 Apr 2009 09:51:24 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/?p=163#comment-868</guid>
		<description>Hi,

I am using rte image uploader.
i am unable to get the response after the image is uploaded to given folder.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I am using rte image uploader.<br />
i am unable to get the response after the image is uploaded to given folder.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: measaura</title>
		<link>http://allmybrain.com/2008/11/06/example-yui-image-upload-with-yui-260/comment-page-1/#comment-865</link>
		<dc:creator>measaura</dc:creator>
		<pubDate>Sat, 11 Apr 2009 13:39:28 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/?p=163#comment-865</guid>
		<description>Great post! Anyhow, I&#039;ve managed to use the yui-image-uploader26.js with RTE version 2.7. Maybe If I have more time, I&#039;ll add the upload progress into the script.</description>
		<content:encoded><![CDATA[<p>Great post! Anyhow, I&#8217;ve managed to use the yui-image-uploader26.js with RTE version 2.7. Maybe If I have more time, I&#8217;ll add the upload progress into the script.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sasanka</title>
		<link>http://allmybrain.com/2008/11/06/example-yui-image-upload-with-yui-260/comment-page-1/#comment-863</link>
		<dc:creator>Sasanka</dc:creator>
		<pubDate>Wed, 08 Apr 2009 14:21:47 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/?p=163#comment-863</guid>
		<description>Hi,

Thanks for the detailed guideline of YUI image upload functionality.

I am using the java servlet example. But I am not able to upload files because
the request object is not getting mapped with the insertimage_upload html file element.

I am using yui-image-uploader26.js and kept all other things as instructed.

Please advice.

Thanks and Regards
Sasanka</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Thanks for the detailed guideline of YUI image upload functionality.</p>
<p>I am using the java servlet example. But I am not able to upload files because<br />
the request object is not getting mapped with the insertimage_upload html file element.</p>
<p>I am using yui-image-uploader26.js and kept all other things as instructed.</p>
<p>Please advice.</p>
<p>Thanks and Regards<br />
Sasanka</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis</title>
		<link>http://allmybrain.com/2008/11/06/example-yui-image-upload-with-yui-260/comment-page-1/#comment-861</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Wed, 08 Apr 2009 11:50:32 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/?p=163#comment-861</guid>
		<description>Firebug and YUI logger are your friends.</description>
		<content:encoded><![CDATA[<p>Firebug and YUI logger are your friends.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajasekhar</title>
		<link>http://allmybrain.com/2008/11/06/example-yui-image-upload-with-yui-260/comment-page-1/#comment-860</link>
		<dc:creator>Rajasekhar</dc:creator>
		<pubDate>Wed, 08 Apr 2009 09:31:18 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/?p=163#comment-860</guid>
		<description>I getting error like 

error Permission denied to get property Window.document

What is the reason .please help me this is very urgent</description>
		<content:encoded><![CDATA[<p>I getting error like </p>
<p>error Permission denied to get property Window.document</p>
<p>What is the reason .please help me this is very urgent</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phil</title>
		<link>http://allmybrain.com/2008/11/06/example-yui-image-upload-with-yui-260/comment-page-1/#comment-857</link>
		<dc:creator>phil</dc:creator>
		<pubDate>Tue, 31 Mar 2009 19:15:21 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/?p=163#comment-857</guid>
		<description>it work&#039;s fine with a LAMP, thank&#039;s 
phil</description>
		<content:encoded><![CDATA[<p>it work&#8217;s fine with a LAMP, thank&#8217;s<br />
phil</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phil</title>
		<link>http://allmybrain.com/2008/11/06/example-yui-image-upload-with-yui-260/comment-page-1/#comment-856</link>
		<dc:creator>phil</dc:creator>
		<pubDate>Tue, 31 Mar 2009 18:51:54 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/?p=163#comment-856</guid>
		<description>yes, I&#039;m using your sample php and the site work vwith WAMP. I&#039;ll try this on a Linux server.
Thanks</description>
		<content:encoded><![CDATA[<p>yes, I&#8217;m using your sample php and the site work vwith WAMP. I&#8217;ll try this on a Linux server.<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis</title>
		<link>http://allmybrain.com/2008/11/06/example-yui-image-upload-with-yui-260/comment-page-1/#comment-855</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Tue, 31 Mar 2009 12:38:20 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/?p=163#comment-855</guid>
		<description>Are you trying to use the sample PHP script from this site?  That script is quite Unix centric.  You&#039;ll need to adapt it for a Windows based server.</description>
		<content:encoded><![CDATA[<p>Are you trying to use the sample PHP script from this site?  That script is quite Unix centric.  You&#8217;ll need to adapt it for a Windows based server.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phil</title>
		<link>http://allmybrain.com/2008/11/06/example-yui-image-upload-with-yui-260/comment-page-1/#comment-854</link>
		<dc:creator>phil</dc:creator>
		<pubDate>Mon, 30 Mar 2009 20:49:53 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/?p=163#comment-854</guid>
		<description>Hi dennis, 
this is my error message
&quot;\n&lt;b&gt;Warning&lt;/b&gt;: fopen(/image/12278.jpg) [&lt;a href=&quot;function.fopen&quot; rel=&quot;nofollow&quot;&gt;function.fopen&lt;/a&gt;]: failed to open stream: No such file or directory in &lt;b&gt;C:\wamp\www\YUI\image\upload.php&lt;/b&gt; on line &lt;b&gt;23&lt;/b&gt;\n\n&lt;b&gt;Warning&lt;/b&gt;: fwrite(): supplied argument is not a valid stream resource in &lt;b&gt;C:\wamp\www\YUI\image\upload.php&lt;/b&gt; on line &lt;b&gt;24&lt;/b&gt;\n\n&lt;b&gt;Warning&lt;/b&gt;: fclose(): supplied argument is not a valid stream resource in &lt;b&gt;C:\wamp\www\YUI\image\upload.php&lt;/b&gt; on line &lt;b&gt;25&lt;/b&gt;\n{status:&#039;UPLOADED&#039;, image_url:&#039;/image/12278.jpg&#039;}&quot;

I can&#039;t see the image and there is nothing uploaded in the /image directory.

thanks</description>
		<content:encoded><![CDATA[<p>Hi dennis,<br />
this is my error message<br />
&#8220;\n<b>Warning</b>: fopen(/image/12278.jpg) [<a href="function.fopen" rel="nofollow">function.fopen</a>]: failed to open stream: No such file or directory in <b>C:\wamp\www\YUI\image\upload.php</b> on line <b>23</b>\n\n<b>Warning</b>: fwrite(): supplied argument is not a valid stream resource in <b>C:\wamp\www\YUI\image\upload.php</b> on line <b>24</b>\n\n<b>Warning</b>: fclose(): supplied argument is not a valid stream resource in <b>C:\wamp\www\YUI\image\upload.php</b> on line <b>25</b>\n{status:&#8217;UPLOADED&#8217;, image_url:&#8217;/image/12278.jpg&#8217;}&#8221;</p>
<p>I can&#8217;t see the image and there is nothing uploaded in the /image directory.</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis</title>
		<link>http://allmybrain.com/2008/11/06/example-yui-image-upload-with-yui-260/comment-page-1/#comment-828</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Wed, 18 Feb 2009 02:57:41 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/?p=163#comment-828</guid>
		<description>Shouldn&#039;t be too hard.  I&#039;ve been a little out of the loop lately on YUI stuff since I&#039;ve been working on embedded software lately. The trend for the editor was to have more and more listener&#039;s that you could attach handlers too though.  I&#039;d wager everything is already in place for you to implement a delete image handler.</description>
		<content:encoded><![CDATA[<p>Shouldn&#8217;t be too hard.  I&#8217;ve been a little out of the loop lately on YUI stuff since I&#8217;ve been working on embedded software lately. The trend for the editor was to have more and more listener&#8217;s that you could attach handlers too though.  I&#8217;d wager everything is already in place for you to implement a delete image handler.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zaphod</title>
		<link>http://allmybrain.com/2008/11/06/example-yui-image-upload-with-yui-260/comment-page-1/#comment-827</link>
		<dc:creator>zaphod</dc:creator>
		<pubDate>Tue, 17 Feb 2009 17:10:17 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/?p=163#comment-827</guid>
		<description>I think the listener idea is a good one. The server side I can handle with PHP, but I am new to YUI and Ajax.  I was looking into using YUI to re-do the back-end admin pages of my software and I like the look and feel of YUI.  

I also noticed that the editor in Wordpress allows for drag-and-drop image uploading into the edit box. How hard would that be to implement in YUI?</description>
		<content:encoded><![CDATA[<p>I think the listener idea is a good one. The server side I can handle with PHP, but I am new to YUI and Ajax.  I was looking into using YUI to re-do the back-end admin pages of my software and I like the look and feel of YUI.  </p>
<p>I also noticed that the editor in WordPress allows for drag-and-drop image uploading into the edit box. How hard would that be to implement in YUI?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

