similar to: Muliply images > wich plugin?

Displaying 20 results from an estimated 4000 matches similar to: "Muliply images > wich plugin?"

2011 Oct 05
2
formtastic / activeadmin
Newbie question: want to following code to migrate to formtastic: <% f.fields_for :assets do |asset_fields| %> <% if asset_fields.object.new_record? %> <p> <%= asset_fields.file_field :asset %> </p> <% end %> <% end %> tried this: f.inputs "Appartment Details" do f.input :assets do |asset_fields|
2008 May 15
1
Remove controller name from URL > nested routes
Hi.. There are my nested routes map.resources :continent do |continent| continent.resources :land do |land| land.resources :destination end end By example it generates this url http://example/continent/azie/land/japan/destination/aomori I want http://example/continent/azie/japan/aomori How can i realize this...? Grtz...remco -- Posted via
2008 Jun 12
2
Inconsistency with the option for defining the destination port
Why is there an inconsistency with the option for the destionation port. ssh -p <port> ... scp -P <port> ... sftp -P <port> ... For scp it is neccessary to be "-P" ( Quote: " Note that this option is written with a capital 'P', because $B!](Bp is already reserved for preserving the times and modes of the file in rcp(1)." ). Also sftp uses already
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 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
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
2004 Nov 05
1
netapps vfiler
Hi, Did anyone here tried to use rsync between a unix machine and a NetApps Vfiler volume? I have strange case where it does create the folders on the vfiler volume but does not copy the files. Command is something like this: rsync -va dropzone pushacc@prod:/launchpad where, * dropzone is the the folder which keeps source files and folders in unix. This folder is owned by a unix account
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 SWFUpload, the upload script is called with a new session
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
2002 Mar 12
1
Question on using rsync delete option
Greeting. I'm so sorry that I launched the previous email by mistake and before I had a chance to complete it. Here is the summary of my previous question. We would like to use rsync to mirror the contents from our internal staging server ( A) to the external website (B) at our ISP without delete some existing files on B. On server B, we have applications that creates temporary lock files
2003 Apr 22
1
rsync variation help
This message is for rsync developers who know the code very well. This is first time I am using rsync. In short trying to solve an problem by using existing rsync code. rsync does treewalk and it also does checksum on "logical file block", whose size can be choosen at will. I want to use this exisiting framework to write a utility to maintain a checksum tree of an dataset. Q. What do
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 normal way would be better. There are many
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
2011 Aug 22
0
Paperclip nested resources problem
My models: class Country < ActiveRecord::Base has_many :regions has_many :assets, :dependent => :destroy accepts_nested_attributes_for :assets end class Region < ActiveRecord::Base belongs_to :country has_many :appartments has_many :assets, :dependent => :destroy accepts_nested_attributes_for :assets end class Asset < ActiveRecord::Base belongs_to :region
2008 Jan 30
1
Import XML in mysql
Hi, I am using scrubyt for scraping a webpage. The output is xml: Example: <root> <item> <item_name>Canon Vertical Battery Grip BG-E3 For EOS Digital Rebel XT</item_name> <price>$179.00</price> </item> <item> <item_name>Canon Vertical Battery Grip BG-E4 For EOS 5D</item_name>
2007 Nov 05
0
Scruffy > MVC architecture?
Hi, I am a newby in rails...and i have read that scruffy is a great tool to create/display images. Now i find the code below for example... graph = Scruffy::Graph.new graph.title = "Comparative Agent Performance" graph.value_formatter = Scruffy::Formatters::Percentage.new(:precision => 0) graph.add :stacked do |stacked| stacked.add :bar, ''Jack'', [30, 60, 49, 29,
2005 May 24
5
Red Alarm TE110P
Hi! I'm trying to setup a Wildcard TE110P with a PRI in The Netherlands. I get a Red Alarm on the line. Is there any way of debugging this? I've tried some configs that should work but without success. Is there any way of telling if the cabling is correct or what else the problem could be? Thanks!! Remco
2006 Aug 07
3
simple if - then question
hi, could somebody tell me the difference between: if not params[:id] flash[:notice] = blabla'' redirect_to(:controller =>"calendar", :action => ''index'') end and: if params[:id] == nil flash[:notice] = blabla'' redirect_to(:controller =>"calendar", :action => ''index'') end the first one
2011 May 29
22
[Bug 8177] New: Problems with big sparsed files
https://bugzilla.samba.org/show_bug.cgi?id=8177 Summary: Problems with big sparsed files Product: rsync Version: 3.0.8 Platform: x64 OS/Version: Linux Status: NEW Severity: normal Priority: P5 Component: core AssignedTo: wayned at samba.org ReportedBy: joluinfante at gmail.com
2005 Mar 04
4
Difference between Snom 190 & Elmeg 290?
Hi list! While looking for the Snom 190 I found another phone, the Elmeg IP 290 (www.elmeg.de). Looking at the pictures & the specs they seem to be very similar beasts but the firmware is supposedly not interchangeable. Does anyone know the difference between the 2, do they work with Asterisk? The weird thing is that Elmeg has similar phones with the Snom look but they are ISDN only (no