Re: put input type=file class=upload name=fileX[]

2010-10-23 Thread Rick Harrison
Hi Andre,

I've looked at Sarah's code for this, unfortunately
it also has a lot of includes, and without access to
those includes it is difficult to see all of the code. :-( 

Other than that it looks nice.

Thanks,

Rick

On Oct 21, 2010, at 6:24 PM, Andre Garzia wrote:

 I am not sure about that name=FileX[]
 
 but file uploading require more than that. It requires:
 
 action=POST and enctype=multipart/form-data on the form tag.
 
 After that you will need a MIME enclosure decoder to extract the file out of
 the MIME envelope that is sent to you by the browser.
 
 You can see a really good one at
 http://troz.net/onrev/samples/showscript.irev?showscript=upload.irev by
 Sarah Reichelt.
 
 
 
 On Thu, Oct 21, 2010 at 12:10 PM, Rick Harrison
 harri...@all-auctions.comwrote:
 
 This line allows one to search their hard-drive
 for a file to upload to a server.
 
 Now I just need the magic code to process and
 submit the information for the upload to the On-Rev
 server.
 
 Anyone have experience using this method?
 
 Thanks,
 
 Rick
 
 
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 
 
 
 -- 
 http://www.andregarzia.com All We Do Is Code.
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

__
Rick Harrison

You can buy my $10 music album Funny Time Machine digital CD on the iTunes 
Store Now!

To visit the iTunes Store now to listen to samples of my CD please click on the
following link.  (Please note you must have iTunes installed on your computer 
for this link to work.)  

http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?playListId=213668290


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: put input type=file class=upload name=fileX[]

2010-10-23 Thread Jim Ault
The upload script in this link refers to the Upload Picture sample  
on Sarah's very cool site.



You can see a really good one at
http://troz.net/onrev/samples/showscript.irev? 
showscript=upload.irev by

Sarah Reichelt.







Going to the corresponding sample page
   http://troz.net/onrev/samples/upload.irev

and look at the bottom of the page, which has a link to the include  
tables.irev

   http://troz.net/onrev/samples/showscript.irev?showscript=includes/tables.irev


All the other includes are the header, menu, and footer for her web  
site pages, which have nothing to do with file uploading.


Hope this helps,

Jim Ault
Las Vegas

On Oct 23, 2010, at 7:34 AM, Rick Harrison wrote:


Hi Andre,

I've looked at Sarah's code for this, unfortunately
it also has a lot of includes, and without access to
those includes it is difficult to see all of the code. :-(

Other than that it looks nice.

Thanks,

Rick

On Oct 21, 2010, at 6:24 PM, Andre Garzia wrote:


I am not sure about that name=FileX[]

but file uploading require more than that. It requires:

action=POST and enctype=multipart/form-data on the form tag.

After that you will need a MIME enclosure decoder to extract the  
file out of

the MIME envelope that is sent to you by the browser.

You can see a really good one at
http://troz.net/onrev/samples/showscript.irev? 
showscript=upload.irev by

Sarah Reichelt.





___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: put input type=file class=upload name=fileX[]

2010-10-23 Thread Rick Harrison
Hi Andre, Jim, Sarah,  Richard

Thanks for your help on this.  I finally got it
to work, and without any javascript!

I had to write a PHP script first to better
understand exactly what was going on,
and then I was able to apply what I learned
to Sarah's Livecode example.  So now the solution
is all Livecode and HTML!

Thanks again!

Rick


On Oct 23, 2010, at 11:39 AM, Jim Ault wrote:

 The upload script in this link refers to the Upload Picture sample on 
 Sarah's very cool site.
 
 You can see a really good one at
 http://troz.net/onrev/samples/showscript.irev?showscript=upload.irev by
 Sarah Reichelt.
 
 
 
 
 Going to the corresponding sample page
   http://troz.net/onrev/samples/upload.irev
 
 and look at the bottom of the page, which has a link to the include 
 tables.irev
   
 http://troz.net/onrev/samples/showscript.irev?showscript=includes/tables.irev
 
 
 All the other includes are the header, menu, and footer for her web site 
 pages, which have nothing to do with file uploading.
 
 Hope this helps,
 
 Jim Ault

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


put input type=file class=upload name=fileX[]

2010-10-21 Thread Rick Harrison
This line allows one to search their hard-drive
for a file to upload to a server.

Now I just need the magic code to process and
submit the information for the upload to the On-Rev
server.

Anyone have experience using this method?

Thanks,

Rick 



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: put input type=file class=upload name=fileX[]

2010-10-21 Thread Andre Garzia
I am not sure about that name=FileX[]

but file uploading require more than that. It requires:

action=POST and enctype=multipart/form-data on the form tag.

After that you will need a MIME enclosure decoder to extract the file out of
the MIME envelope that is sent to you by the browser.

You can see a really good one at
http://troz.net/onrev/samples/showscript.irev?showscript=upload.irev by
Sarah Reichelt.



On Thu, Oct 21, 2010 at 12:10 PM, Rick Harrison
harri...@all-auctions.comwrote:

 This line allows one to search their hard-drive
 for a file to upload to a server.

 Now I just need the magic code to process and
 submit the information for the upload to the On-Rev
 server.

 Anyone have experience using this method?

 Thanks,

 Rick



 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution




-- 
http://www.andregarzia.com All We Do Is Code.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution