search for: swfupload

Displaying 16 results from an estimated 16 matches for "swfupload".

2007 Jan 18
5
Session IDs and SWFUpload
Hi I''m using SWFUpload in one of my applications, but it has one big shortcoming: it doesn''t maintain the session. Let me explain: The user has to login to the application, thus creating an authenticated session (cookie _session_id client side and the sessions table server side). However, when you use SWF...
2008 Jun 19
2
any news about swfupload & sessions?
Hi all, I''m up to rewrite my swfupload code as a plugin (as far as possible). My actual solution to the old problem with session handling and flash was to ignore it, send an upload_request to the server, get back some secret code and then upload the file to an action where session/ authentication is disabled. Works fine so far, but the...
2010 Sep 09
1
406 Not Acceptable with swfupload
...format.xml { render :xml => @asset.errors, :status => :unprocessable_entity } end end end end -------- new.html.erb <h1>New</h1> <script type=''text/javascript''> var swfu; window.onload = function () { swfu = new SWFUpload({ upload_url : ''<%= new_asset_path_with_session_information %>'', flash_url : ''/flash/swfupload.swf'', // Button settings button_image_url: "/images/TestImageNoText_65x29.png", // Relative to the Flash file button_wid...
2007 Sep 25
1
attachment_fu + SWFupload via activeupload
hi there, I am using the activeupload <http://code.google.com/p/activeupload/> plugin with attachment_fu and keep getting "406 Not Acceptable" errors when I try and upload a file, is there anything magic I need to do to get these to work? I also get AttachmentsController: missing default helper path attachments_helper but rails freaks out when I put "include
2007 Mar 14
9
file_field doesnt work inside form_remote_for
When I do file_field within a form_for things are fine... but within a form_remote_for, with nothing else changed, I find that the params does not even have the element document[uploaded_file] even though it is definitely present in the HTML source in the form. Obviously the file upload fails. Am I missing something? Or has someone else faced this? Or is this a known bug? Rajesh
2010 Mar 09
4
Plugin for uploading a folder of images?
Hi - can anyone recommend a plugin/gem for uploading a bunch of image files at once, and converting them to attachments? Ideally one that lets you select a folder and then uploads all of the images in that folder? thanks, max -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to
2009 Mar 09
0
skip_before_filter :verify_authenticity_token make session data not accessible.
Hi all, I''m stucked in following situation: I implemented image upload feature using swfupload. The submission from swfupload cause exception ActionController::InvalidAuthenticityToken (rails 2.2) - understandable because swfupload doesn''t send valid token. I try to temporarily turn off the checking in the controller by using "skip_before_filter :verify_authenticity_token"...
2008 Nov 05
2
Muliply images > wich plugin?
Hi, I have one destionation such as Barcelona and i want to store and show multiply pictures of Barcelona. Wich upload plugin is the best for this purpose? Grtz..remco -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this
2008 Dec 26
2
Video gallery in rails
Dear all, Iam in process of creating video gallery like youtube, please suggesst plugins i should install and best suits fro my application. My requirements are 1) Huge file uploading to upload videos 2) creating thumbnails on videos uploaded 3) Listing thumbnails of all videos in video gallery folder. 4) Onclicking thumbnails video should be played Please suggest a way to proceed
2007 Dec 22
2
multiple file upload
Hi, I want to do a multiple file upload with Ruby. I want to let my users upload pictures on my website to their account. I''m looking for something with a nice interface. I was wondering if you knew of any plugins/gems i can use THanks :) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails:
2010 Mar 01
0
Upload progress bar with Paperclip, Mongrel, Apache
...been looking now for several days for an easy to use progress bar plugin or tutorial. I have Paperclip installed and it works great. My production server runs on Apache and Mongrel. It''s amazing that there''s no easy set up progress bar plugin or gem out there. I have seen "SWFUpload", but that seems very complicated to implement. Thank you for any tips or help. JohnM -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonra...
2007 Sep 18
10
How do i make rails wait until an ffmpeg call is complete?
In my app i upload a file, convert it with ffmpeg, delete the original and make a small thumbnail out of the big thumbnail ffmpeg makes. At the moment it seems like these actions are tripping over each other - how can i make the app wait until ffmpeg has completed it''s output before doing the next thing? -- Posted via http://www.ruby-forum.com/.
2008 Feb 07
2
FAILSAFE error with uploads
I''ve just upgraded a production web site with some new code to handle file uploads, using both the standard post technique and swfupload. This code was working perfectly in my development environment, and I''m not sure what I should ever start to look for. Here''s the stack dump: /!\ FAILSAFE /!\ Wed Feb 06 19:13:41 -0700 2008 Status: 500 Internal Server Error protocol error /my/app/web/vendor/rails/action...
2008 Oct 10
17
authenticity_token sent, still InvalidAuthenticityToken
Hi! To send the authenticity token from flex back to the server, I followed this: http://blog.dt.org/index.php/2008/06/rails-2-flex-3-and-form-authenticity-tokens/ I have two controllers in my rails app. The method described in the link above works with the actions in one controller, but does not work with the other. The controller which does not work has just one action which performs a file
2008 Jan 20
3
CookieStore and Session data via POST vars (no cookies)
This might be a solved issue, so I thought I''d ask. I''m trying to use SWFUpload with the cookiestore. I''m passing in the session_id variable through a POST parameter in the upload. I''ve verified that Flash is sending the POST params (Flash 9). I thought simply by setting cookie_only to false for that method, I would be able to get that to work. Turn...
2010 Aug 13
11
Link to remote and the equivalent in Rails 3
Hi WOW! Is Rails 3 another interesting learning curve. Just when I think I have a general working knowledge of Rails 2 ... things change. I''m trying to replicate the following in Rails 3: <%= link_to_remote image_tag("creditcard.png", :border => 0), :url => {:action => :make_payment, :type => "Credit", :id => @appt.id },