<?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: Make an AJAX-like Multiple File Uploader with Uploadify</title>
	<atom:link href="http://www.adventuresindevelopment.com/2009/05/20/make-an-ajax-like-multiple-file-uploader-with-uploadify/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.adventuresindevelopment.com/2009/05/20/make-an-ajax-like-multiple-file-uploader-with-uploadify/</link>
	<description>Web Development Tools, Ideas, Techniques and Resources</description>
	<lastBuildDate>Fri, 27 Aug 2010 17:13:06 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Brat</title>
		<link>http://www.adventuresindevelopment.com/2009/05/20/make-an-ajax-like-multiple-file-uploader-with-uploadify/comment-page-1/#comment-312</link>
		<dc:creator>Brat</dc:creator>
		<pubDate>Wed, 14 Jul 2010 22:26:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.adventuresindevelopment.com/?p=68#comment-312</guid>
		<description>For everyone who is trying to get jQuery to work in Joomla, did you either disable Mootools or run jQuery in &quot;no Conflict&quot; mode? 

Basically, conflicts are caused by both Mootools and jQuery sharing the $ namespace. Mootools is notorious for not being a &quot;good neighbor&quot; and the result is a clash. jQuery however has a &quot;no conflict&quot; mode which allows it to work with other frameworks.

I&#039;m about to launch a site where I use jQuery extensively in the frontend, and it has been a bit of headache since Joomla developers (for reasons I cannot understand) force Mootools on you in the frontend. In the end, I installed a special free plugin (which actually handles jQuery and &quot;no conflict&quot;). So far, so good.</description>
		<content:encoded><![CDATA[<p>For everyone who is trying to get jQuery to work in Joomla, did you either disable Mootools or run jQuery in &#8220;no Conflict&#8221; mode? </p>
<p>Basically, conflicts are caused by both Mootools and jQuery sharing the $ namespace. Mootools is notorious for not being a &#8220;good neighbor&#8221; and the result is a clash. jQuery however has a &#8220;no conflict&#8221; mode which allows it to work with other frameworks.</p>
<p>I&#8217;m about to launch a site where I use jQuery extensively in the frontend, and it has been a bit of headache since Joomla developers (for reasons I cannot understand) force Mootools on you in the frontend. In the end, I installed a special free plugin (which actually handles jQuery and &#8220;no conflict&#8221;). So far, so good.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://www.adventuresindevelopment.com/2009/05/20/make-an-ajax-like-multiple-file-uploader-with-uploadify/comment-page-1/#comment-310</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Wed, 23 Jun 2010 19:42:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.adventuresindevelopment.com/?p=68#comment-310</guid>
		<description>Still can&#039;t get this to work in Joomla. =(

Please advise in more of a step by step approach.

Step 1) Upload and unarchive the uploadify package to /uploadify (within joomla core).

Step 2) Go to template manager in Joomla Admin panel and select the default template you wish to modify..

Click &quot;Edit HTML&quot;

Add this exact line of code in your between your  tags:




Add this exact line of code somewhere in your  tag:


Click Save

Step 3) Create a new article

Insert exact code:


$(document).ready(function() {
 $(&quot;#fileUpload1&quot;).fileUpload({
  &#039;uploader&#039;: &#039;uploadify/uploader.swf&#039;,
  &#039;cancelImg&#039;: &#039;uploadify/cancel.png&#039;,
  &#039;script&#039;: &#039;uploadify/upload.php&#039;,
  &#039;folder&#039;: &#039;files&#039;,
  &#039;multi&#039;: true,
  &#039;buttonText&#039;: &#039;Select Files&#039;,
  &#039;checkScript&#039;: &#039;uploadify/check.php&#039;,
  &#039;displayData&#039;: &#039;speed&#039;,
  &#039;simUploadLimit&#039;: 2
 });
});


Click Save.

Step 4) Go to menu manager and create a new &quot;Article Layout&quot; menu item on your mainmenu titled &quot;Upload Files&quot; and direct it to the article that you created in Step 3)

*** This above described method isn&#039;t working currently and I am posting this just to show how I tried to implement the Uploadify script and failed, looking to find the correct approach so if you have this working in Joomla, please explain your approach in this manner.

Thanks for your help.</description>
		<content:encoded><![CDATA[<p>Still can&#8217;t get this to work in Joomla. =(</p>
<p>Please advise in more of a step by step approach.</p>
<p>Step 1) Upload and unarchive the uploadify package to /uploadify (within joomla core).</p>
<p>Step 2) Go to template manager in Joomla Admin panel and select the default template you wish to modify..</p>
<p>Click &#8220;Edit HTML&#8221;</p>
<p>Add this exact line of code in your between your  tags:</p>
<p>Add this exact line of code somewhere in your  tag:</p>
<p>Click Save</p>
<p>Step 3) Create a new article</p>
<p>Insert exact code:</p>
<p>$(document).ready(function() {<br />
 $(&#8220;#fileUpload1&#8243;).fileUpload({<br />
  &#8216;uploader&#8217;: &#8216;uploadify/uploader.swf&#8217;,<br />
  &#8216;cancelImg&#8217;: &#8216;uploadify/cancel.png&#8217;,<br />
  &#8216;script&#8217;: &#8216;uploadify/upload.php&#8217;,<br />
  &#8216;folder&#8217;: &#8216;files&#8217;,<br />
  &#8216;multi&#8217;: true,<br />
  &#8216;buttonText&#8217;: &#8216;Select Files&#8217;,<br />
  &#8216;checkScript&#8217;: &#8216;uploadify/check.php&#8217;,<br />
  &#8216;displayData&#8217;: &#8216;speed&#8217;,<br />
  &#8216;simUploadLimit&#8217;: 2<br />
 });<br />
});</p>
<p>Click Save.</p>
<p>Step 4) Go to menu manager and create a new &#8220;Article Layout&#8221; menu item on your mainmenu titled &#8220;Upload Files&#8221; and direct it to the article that you created in Step 3)</p>
<p>*** This above described method isn&#8217;t working currently and I am posting this just to show how I tried to implement the Uploadify script and failed, looking to find the correct approach so if you have this working in Joomla, please explain your approach in this manner.</p>
<p>Thanks for your help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew Paulson</title>
		<link>http://www.adventuresindevelopment.com/2009/05/20/make-an-ajax-like-multiple-file-uploader-with-uploadify/comment-page-1/#comment-307</link>
		<dc:creator>Matthew Paulson</dc:creator>
		<pubDate>Mon, 21 Jun 2010 13:18:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.adventuresindevelopment.com/?p=68#comment-307</guid>
		<description>I&#039;d guess that you&#039;d want to place the script references in the template file&#039;s header. I would guess that you could put the other code inside of an article.</description>
		<content:encoded><![CDATA[<p>I&#8217;d guess that you&#8217;d want to place the script references in the template file&#8217;s header. I would guess that you could put the other code inside of an article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://www.adventuresindevelopment.com/2009/05/20/make-an-ajax-like-multiple-file-uploader-with-uploadify/comment-page-1/#comment-305</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Fri, 18 Jun 2010 15:13:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.adventuresindevelopment.com/?p=68#comment-305</guid>
		<description>Mathew,

To get this to work in joomla, what file did you place the &quot;Script References&quot; that you listed above in?

Do you have to modify joomla&#039;s index.php? or the just your default templates&#039; index.php with the script references?

also, is the uploadify directory hosted in your root dir within joomla core?

Can you then put the placeholder div code () into an article and then link to that article through a menu item for this to work, as long as you dont have an editor strip it?

Just trying to get an exact method of step by step modifications made to get this working in joomla.  Someone needs to make it into an extension already.  ;)

Thanks for your help.

Scott</description>
		<content:encoded><![CDATA[<p>Mathew,</p>
<p>To get this to work in joomla, what file did you place the &#8220;Script References&#8221; that you listed above in?</p>
<p>Do you have to modify joomla&#8217;s index.php? or the just your default templates&#8217; index.php with the script references?</p>
<p>also, is the uploadify directory hosted in your root dir within joomla core?</p>
<p>Can you then put the placeholder div code () into an article and then link to that article through a menu item for this to work, as long as you dont have an editor strip it?</p>
<p>Just trying to get an exact method of step by step modifications made to get this working in joomla.  Someone needs to make it into an extension already.  <img src='http://www.adventuresindevelopment.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Thanks for your help.</p>
<p>Scott</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: syn4k</title>
		<link>http://www.adventuresindevelopment.com/2009/05/20/make-an-ajax-like-multiple-file-uploader-with-uploadify/comment-page-1/#comment-241</link>
		<dc:creator>syn4k</dc:creator>
		<pubDate>Fri, 02 Apr 2010 05:19:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.adventuresindevelopment.com/?p=68#comment-241</guid>
		<description>I figured out the $ is not defined error...
This was happening to me because I was using two javascript frameworks at the same time. e.g. jquery and mootools. There are some solutions to using two frameworks at once but I ended up just using jquery and removing mootools. This solved my problem.</description>
		<content:encoded><![CDATA[<p>I figured out the $ is not defined error&#8230;<br />
This was happening to me because I was using two javascript frameworks at the same time. e.g. jquery and mootools. There are some solutions to using two frameworks at once but I ended up just using jquery and removing mootools. This solved my problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: syn4k</title>
		<link>http://www.adventuresindevelopment.com/2009/05/20/make-an-ajax-like-multiple-file-uploader-with-uploadify/comment-page-1/#comment-189</link>
		<dc:creator>syn4k</dc:creator>
		<pubDate>Wed, 03 Feb 2010 22:20:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.adventuresindevelopment.com/?p=68#comment-189</guid>
		<description>and in all other browsers...</description>
		<content:encoded><![CDATA[<p>and in all other browsers&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: syn4k</title>
		<link>http://www.adventuresindevelopment.com/2009/05/20/make-an-ajax-like-multiple-file-uploader-with-uploadify/comment-page-1/#comment-188</link>
		<dc:creator>syn4k</dc:creator>
		<pubDate>Wed, 03 Feb 2010 22:19:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.adventuresindevelopment.com/?p=68#comment-188</guid>
		<description>$ is not defined in firefox</description>
		<content:encoded><![CDATA[<p>$ is not defined in firefox</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bob</title>
		<link>http://www.adventuresindevelopment.com/2009/05/20/make-an-ajax-like-multiple-file-uploader-with-uploadify/comment-page-1/#comment-129</link>
		<dc:creator>bob</dc:creator>
		<pubDate>Tue, 29 Sep 2009 21:01:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.adventuresindevelopment.com/?p=68#comment-129</guid>
		<description>Have you actually tried to RUN the asp version?

Perhaps a run down of how you made that work?

Otherwise this page is useless. Users can just go to uplodify website and waste time reading there.</description>
		<content:encoded><![CDATA[<p>Have you actually tried to RUN the asp version?</p>
<p>Perhaps a run down of how you made that work?</p>
<p>Otherwise this page is useless. Users can just go to uplodify website and waste time reading there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean</title>
		<link>http://www.adventuresindevelopment.com/2009/05/20/make-an-ajax-like-multiple-file-uploader-with-uploadify/comment-page-1/#comment-122</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Mon, 31 Aug 2009 17:46:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.adventuresindevelopment.com/?p=68#comment-122</guid>
		<description>I receive the error &quot;$ is not defined&quot; for the &quot;$(document).ready(function() {&quot; line in Firefox.</description>
		<content:encoded><![CDATA[<p>I receive the error &#8220;$ is not defined&#8221; for the &#8220;$(document).ready(function() {&#8221; line in Firefox.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arif</title>
		<link>http://www.adventuresindevelopment.com/2009/05/20/make-an-ajax-like-multiple-file-uploader-with-uploadify/comment-page-1/#comment-109</link>
		<dc:creator>Arif</dc:creator>
		<pubDate>Wed, 15 Jul 2009 18:11:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.adventuresindevelopment.com/?p=68#comment-109</guid>
		<description>Can you please help me with processing multiple uploaded files inside the backend script (upload.php)?

I&#039;m able to do single upload and process the file, but cannot figuring the multiple files processing.

I&#039;ve tried with reading the files from $_FILES array, but no luck.</description>
		<content:encoded><![CDATA[<p>Can you please help me with processing multiple uploaded files inside the backend script (upload.php)?</p>
<p>I&#8217;m able to do single upload and process the file, but cannot figuring the multiple files processing.</p>
<p>I&#8217;ve tried with reading the files from $_FILES array, but no luck.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
