search for: get_photos

Displaying 3 results from an estimated 3 matches for "get_photos".

2006 Jul 21
1
What''s wrong with this code?
I''m trying to interface with the flickr API to pull my photos into my site. I don''t want to use the "flickr.rb" gem, I''d like to do it the other way so I can learn (plus I had trouble loading the gem on my server). Anyway, here''s what I have: #Application.rb controller def get_response(path, http) request = Net::HTTP::Get.new(path)
2010 Apr 05
5
paperclip question
Hi All, My application is using paperclip and its working fine without any problems, I am able to generate the thumb images and big images from actual uploaded images. There are many images already uploaded by the users. Now I want to create small images from the original uploaded image. For the newly uploaded images its working fine but how can I do the same for already uploaded image?? if
2006 Mar 20
11
has_many brings back ''uninitialized constant''
hello. first things first - I am new to ruby on rails (ruby, too), so I''m figuring this is just a basic newbie error. I''m creating a basic photography website. And I have two tables with a relationship: photos: - id (set up as PK) - title - shutter - aperture - date - the_order ...etc photo_comments: - id (set up as a PK) - photos_id (set up as a FK) - author - date -