Displaying 20 results from an estimated 60000 matches similar to: "Why is the path displayed instead of just the filename?"
2006 Apr 22
0
Re: Rails Digest, Vol 19, Issue 611
Thanks szymek for putting me on track. What I did was re-intstall the
file_column plug-in but I still got the same error so I added @recipe =
recipe and then then error changed to something about nil.first. So I added
a
rescue "no image"
to the end of my image_tag like so
<%= image_tag url_for_file_column("recipe", "image") rescue "none" %>
and
2006 Mar 14
3
How to save parent and child objects in a single action?
Hi!
I''m struggling with it for a week. I posted a few similar posts that
cleared up few things (thanks Mark!), but i still don''t know how to do
it properly.
What i''m trying to do is to create parent object and its many children
(images - i tried using file_column, but it''s a topic for another
post)using data from a single form.
I''ve got a working
2006 Mar 06
5
Question about file_column plugin
Hi!
File_column plugin saves uploaded files to
"public/model/image/model_id/filename", if i understand it correctly.
Does it mean that it creates new folder for every image?
I have product (model) that has_many images (model). Is it possible to
use (or modify) this plugin that it would save my images to different
folder, so the id of the model_id part would be id of the product
2006 Mar 08
19
Creating multiple rows with one form
Hello. I''ve been trying this out for the past two days and I can''t seem to
get it. I''m going to have a page where you can upload x amount of images at
once. Lets say 10 images need to be uploaded, all with a caption.
I''d like to have a browse button to choose the file, then the caption. Now,
if I put 10 of them in one form, fill them all out and submit, I get
2006 Aug 05
4
file_column just will not work...
Hello,
I have been trying for some time to get a file to upload using the
file_column plugin.
My code is here: http://pastie.caboo.se/7304
But my code is not the issue. I cannot even pass the unit test that
come with the file_column plugin.
If I run ruby file_column_test.rb i get:
1) Error:
test_store_dir_callback(FileColumnTest):
TypeError: can''t convert Fixnum into String
2006 Jun 07
0
Problem with file_column plugin path and application_helper.rb
Hello,
I upgraded my Rails app from 1.0 to 1.1.2. Basically everything worked
on my development box. When I uploaded the changes (including the
frozen 1.1.2 gems) to my webhost most things worked. However I had a
problem with my application_helper.rb file. It wasn''t able to find the
url_for_image_column method from the file_column plugin. Here''s the
relevant code in
2006 Jan 14
0
File_column fails with uppercase extentions
I think this might be a Mac OS X only bug. Mac OS X stores filenames
case sensitively but compares filenames without case sensitivity.
same file:
script/../config/../public/document/thumbnail/tmp/1137259310.479525.806/barcelona.JPG
and
script/../config/../public/document/thumbnail/tmp/1137259310.479525.806/barcelona.jpg
/usr/lib/ruby/1.8/fileutils.rb:846:in `fu_each_src_dest''
2006 Dec 17
1
file_column error: StringIO Instead of Temp_File
Hi all,
i am using file_column to upload 3 images from the same form, they are
all different names and DOM IDs so there isn''t a problem with the
multiple upload.
The problem is when i try to upload a file (or 2, or 3) sometimes it
works, but sometimes i get this in the log file:
"bar_image"=>{"file_temp"=>"",
2014 Dec 10
0
get /full/path/filename.ext from filename.ext
I don't know if this is of interest as an alternative.
I did find a cool functionality called locate and updatedb
Updatedb creates the database of your files, locate does superfast searches.
It essentially does a superfast "find" on your root filesystem, giving
you the fully qualified path of all hits.
You can create db's on your other filessytems.
The problem is that it can
2006 Mar 17
6
Problem with ruby 1.8.4 One-Click Ruby Installer on windows
Hi!
Previously i had ruby 1.8.2 (One-Click Ruby Installer) installed, but
the rdoc and plugindoc didn''t work, so i decided to install ruby 1.8.4.
I had uninstalled ruby 1.8.2 (uninstaller deleted the whole ruby folder
with radrails and everything, just great) and installed One-Click Ruby
Installer 1.8.4-16 preview3.
Then installed rails, rmagick, radrails, created docs for trunk
2006 Mar 02
0
path problem with file_column and :magick options
Hi there,
I''m having some problems wityh the :magick options in file_coumn and
wondered if anyone else had any similar ones:
basically, file_column is working fine for me as is, but whenever I try
to do an automatic resize or thumbnail I get the error ''invalid image''.
It seems to be a path issue as I get:
unable to open image
2006 Mar 02
2
url_for_file_column not returning correct path
I added this test towards the end of the included
file_column_helper_test.rb that shipped with the file_column plugin:
def test_url_for_file_column_different_root_path
Entry.file_column :image, :root_path => File.join(RAILS_ROOT,
"public/files")
e = Entry.new(:image => upload(f("skanthak.png")))
assert_match %r{/public/files/entry/image},
2006 Mar 09
7
How to restrict access to admin part of the page?
Hi!
What is the easiest way to restrict access to some part of the page?
In php i just put .htaccess and .htpasswd files in /admin folder and it
worked.
Now i''ve got one admin folder for controllers, one for views, public
folder and i''m not really sure if it''s still possible. So what is the
easiest way? I don''t have any user logging features on my site,
2006 Jan 13
1
file_column - how to test for empty column?
I am using the excellent file_column, but have run into an issue.
I am wanting the user to be able to *not* upload an image if they so
choose. Then I am trying to determine if that column is empty or not,
and display a generic image if that column is empty.
I have tried both of the following code blocks:
<% if @newsentry.image -%>
<%= link_to(image_tag((url_for_image_column
2014 Dec 09
5
get /full/path/filename.ext from filename.ext
This should be simple, but it's not, unless I'm forgetting something.
Writing a script, an arg is a filename. So
fname=$1
But I want that expanded to include the full path and filename, not just
what is given as the arg on the command line.
E.g., if the user's cwd is /home/joe/a/b/c/ and he specifies
../x/file-a.ext
then the function/utility should transform that into the
2006 Feb 04
2
file_column path problem grouping controllers in to modules
Hey there,
good job with the file_column thing, but I''m experiencing a problem I
didn''t found about.
I''m grouping controllers in to modules (like Admin::Category Admin:Item) and:
url_for_file_column("dettaglio", "picture_url")
return this search path:
src="/detail/picture_url/development/5/dark.jpg"
there''s a development coming from
2006 Mar 08
3
attribute or instance method or what?
Hi!
Uhm are attributes just something like additional members of a class,
other than those that come from the names of columns in the table?
I''ve got images table, which has ''name'' column. I''ve added support for
creating thumbnails out of uploaded pictures and i''d like to have an
easy way of accessing them in my views.
How to do it? I.e. my image
2003 Nov 03
0
Problem w Samba on Alpha: No filenames > 80 chars displayed on Win Clients
Hello all,
I have a problem with the display of filenames > 80 chars when served by
Samba-3.0.0 to Windows clients.
System: GNU/Linux debian 3.0.1 upgraded to testing/unstable on ALPHA processor
(XP-1000),
Kernel: custom 2.4.22 + acl support (kernel pkg could only be compiled by
downgrading binutils to 2.12.90 & using gcc-3.0)
Samba: Samba-3.0.0.final.deb (testing/unstable)
smb.conf:
2006 Mar 05
2
How to clean up this code?
Hi!
I''ve got 2 tables: products and images. Product has_many images, image
belongs_to product. In images table i store product_id and name of the
image (not the image itself).
I''ve created a single form, where user can add any number of images for
a
product he/she is creating (new fields are created using javascript).
The images that are uploaded are saved to public/images
2005 Nov 17
1
original filename doesn't display in file_field
In my item upload view I have:
<%= file_field ''item'', ''file'' %>
and in my Item model:
def file
@file
#@file.original_filename # <- also tried this
end
def file=(file)
@file=file
end
And if the upload bails because of errors (and renders the same page), all other fields
(text_field, text_area, etc.) retain their inputted values, but the file