Displaying 7 results from an estimated 7 matches for "missingfiles".
Did you mean:
missingfile
2007 Dec 17
2
Error in send_file
I''m trying to add a link to download a zip file. I created a
controller method that makes the call to send_file:
def getzip
send_file ''file.zip''
end
When I navigate to this link I get a MissingFile exception. The file
definitely exists (and U triple-checked paths and spelling) and the
permissions are 644. I tried moving it to the /public folder and
updating the
2007 May 31
1
Diva and Asterisk
...he Diva card I get the following message:
Update CFGLib information ... failed
-------------------------------------------------------------------------------DIVA CONFIGURATION: CFGLib DRIVER LOAD FAILED PLEASECHECK SYSTEM INSTALLATION (kernel version, missingfiles) -------------------------------------------------------------------------------DIVAS4LINUX SHUTDOWN OK.Is this because I'm using the melware divas4linux with Asterisk or is theresome other problem?Any advice is appreciated.RegardsCameron
2011 Apr 15
4
[Bug 8090] New: full_fname out of memory error on missing file SunOS 5.8
https://bugzilla.samba.org/show_bug.cgi?id=8090
Summary: full_fname out of memory error on missing file SunOS
5.8
Product: rsync
Version: 3.0.7
Platform: Sparc
OS/Version: SunOS
Status: NEW
Severity: minor
Priority: P5
Component: core
AssignedTo: wayned at samba.org
2006 Aug 08
2
send_file problem
I''m attempting to use send_file to send an image file from
public/images. The file is world readable.
I keep getting the following error:
A ActionController::MissingFile occurred in account#current_logo:
Cannot read file public/images/logo.png
/usr/lib/ruby/gems/1.8/gems/actionpack-1.12.1/lib/action_controller/streaming.rb:55:in
`send_file''
I''ve tried supplying
2007 Feb 22
0
error with send_file.. please help me...
Ben wrote:
> API is your friend.
> http://api.rubyonrails.org/classes/ActionController/Streaming.html#M000091
> send_file
I put this code block in files_controller.rb
def send_file(path, options = {}) #:doc:
raise MissingFile, "Cannot read file #{path}" unless
File.file?(path) and File.readable?(path)
options[:length] ||= File.size(path)
2005 Dec 20
0
2005 a send_file odyssey (or Rails and Apache don''t always play well)...
Hi,
I''m developing a Rails application that (amongst other things)
lets users download media files. These files range in size
from a few kilobytes up to several gigabytes.
All this development is taking place with Rails 1.0 on a
Solaris host with Ruby 1.8.2 and Rails mode set to
"development".
I''m using the Rails send_file method to send each file with
these
2007 Feb 23
1
How to make Rails send a file that is being written
I''m trying to build a simple proxy to Amazon S3 that would allow a
client to request a url that gets mapped to a S3 Object by Rails and
streamed back to the client.
For S3 integration, I use the highly recommended gem AWS::S3
(http://amazon.rubyforge.org/), and to send a file, I simply use the
send_file function.
The concept works BUT the I can''t get the file to be sent as