search for: felkins

Displaying 20 results from an estimated 41 matches for "felkins".

Did you mean: elkins
2005 Feb 11
2
Incorrect disk size reported at 20.0 MB
...available. We updated to Samba version 3.0.11 this morning with no change in results. I have checked the bug reports and haven't found anything that resembles this problem. Any ideas where I might look? Richard. -------------------------------------------------------------------- Richard L. Felkins SAIC Systems 10260 Campus Point Dr. MS-A Email: richardf@gso.saic.com San Diego, CA 92121 Phone: 858-826-3321 Cell: 858-354-4563 --------------------------------------------------------------------
2005 Dec 20
7
wrong id for activerecord object when using :joins in mysql
I''m using a find with a :joins clause, like this: :joins => "JOIN table_b ON table_b.id=table_b_id" The records returned are used in a scaffold generated list page. The edit, show, and destroy links are getting the wrong id. They are getting the id of the table b record. When I run the query using mysql, I see that the query returns *2* id columns, the id of the main
2006 Feb 07
4
inexpensive ways to make a rails application highly available? mysql replication?
I''m interested in making a low volume rails application very available. This means that I would like to have an alternate server for those times when the primary server is unavailable for whatever reason. Virtual private servers are fairly inexpensive so one could have a rails application on 2 different vps systems (not on the same server, possibly not even in the same city).
2006 Feb 22
3
is there really a restart task in switchtower? How do you invoke it?
I just created a new rails project "test". I then did "switchtower --apply-to ~/user/test test" I then moved into test and tried "rake restart" and got: kfelkins@lurch:~/user/test$ rake restart (in /home/kfelkins/user/test) rake aborted! Don''t know how to build task ''restart'' I see restart in deploy. Can restart be invoked from the command line? -Kelly -------------- next part -------------- An HTML attachment was scrubbed... U...
2005 Dec 30
2
scgi apache routes help needed
..., but so far it hasn''t been easy to configure. To be fair, scgi is probably easy to configure - it may be the other things in the system that are complicating things like apache and rails. For that matter hints on debugging would be useful. Many thanks for any and all help. -kelly dwight felkins Here is what I currently have: .htaccess ----------- : # Example: # RewriteRule ^(.*)$ dispatch.fcgi [QSA,L] RewriteEngine On # If your Rails application is accessed via an Alias directive, # then you MUST also set the RewriteBase in this htaccess file. # # Example: # Alias /myapp /var/www/...
2006 Feb 14
18
Does shared hosting work? Anywhere?
I moved a rails application to textdrive using their low-cost shared plan. Once on textdrive my app would display ''proxy errors'' periodically. Hitting reload seemed to be all that was needed to get past the proxy error. After discussions with their support people I decided the proxy errors were being caused by apache server restarts -- because there were many of us sharing one
2006 Apr 20
8
Whats the best way to do this?
I have an archive that can have 0 or more extra files associated with it. I would like to be able to edit the associated files info on the same page as the archive info. Listing the extra files info to the edit form is simple enough, but How do I form the text input fields for easy (or automatic) pick-up in the update? Or am I barking up the wrong tree here? -- Posted via
2006 Feb 15
12
Does your *shared* hosting account work without errors?
Does your *shared* hosting account work without errors? I''m interested in both positive and negative reports. If you are willing, please contribute - name of the hosting service - how long you have used them - your experience ("flawless!", "it''s crap!") You *do not* need to reply saying your VPS service works great. This is about *shared* hosting
2006 Feb 07
17
Easy way of dealing with nil properties in templates?
Is there an easy way to deal with nil properties in templates? All I''m aware of are these methods, and it''s quite tedious and surely violates DRY. <%= @member.name unless @member.name.nil? %> <%= @member.name.to_is %> <%= "#{@member.name}" %> csn __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the
2006 Feb 14
3
is shared hosting evil?
I moved a rails application to textdrive using their low-cost shared plan. Once on textdrive my app would display ''proxy errors'' periodically. Hitting reload seemed to be all that was needed to get past the proxy error. After discussions with their support people I decided the proxy errors were being caused by apache server restarts -- because there were many of us sharing one
2006 Jan 03
2
help me understand association attributes
I have a model with a belongs_to association. The first model is called Thing and the associated model is User. I''m attempting to assign the user to the thing. To accomplish this I used a before_save method, like this: class Thing < ActiveRecord::Base belongs_to :created_by, :class_name => "User", :foreign_key => "created_by_user_id" def before_create
2004 Apr 07
2
rsync from solaris to cygwin on xp, certain files always copied
...file is being copied? Is there a way to ask rsync to say "file x copied". 2) How can I diagnose why these few files are being copied, and not others? This is my latest command line: rsync -ae ssh --modify-window=5 --progress --delete --relative --exclude '.snapshot' sunbox:/home/kfelkins /backups As you can see, I've tried the modify-window option. I'm also using archive. Rsync is a great tool. Thanks for your help. -Kelly
2005 Aug 08
0
Fwd: help me override ActiveRecord find?
I''m sorry -- sent this to the wrong list. ---------- Forwarded message ---------- From: Kelly Felkins <kelly.felkins-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> Date: Aug 8, 2005 9:37 AM Subject: help me override ActiveRecord find? To: ruby-talk-X+L+6nJQZ58h9ZMKESR00Q@public.gmane.org I would like to add some things to the find method of activerecord, but I can''t figure out how to do...
2006 Jul 23
2
Recommendations for managing tests for non-models and non-controllers in rails?
I''ve got unit tests for a class library that I''m using in a rails project. Currently this is the only project using this library so I would like to keep the classes and tests in the rails project. I moved the classes under [app]/lib. I currently have the tests in [app]/test. It would be great if these tests were run every time I run ''rake''. What is everyone
2006 Jan 18
4
Canada on Rails - Schedule Released
We are extremely pleased to announce that we have finalized the schedule (http://canadaonrails.com/yvr06-schedule.html) for the upcoming Ruby on Rails conference in Vancouver, BC on April 13th - 14th, 2006. There are 15 speakers packed into two full days of presentations ranging from 30 minutes to 90 minute keynotes. Presentation topics include: * Where will Rails be riding next? * Enterprise
2006 Feb 22
2
sudo in switchtower and security
I''m attempting to deploy a rails application using switchtower. My IT guys are refusing to give me sudo for a user changeable script. I really can''t argue with their logic. If I have sudo for a script that I can update, well, I can do most anything I want. They are suggesting I create a cgi that performs the same function. Since the cgi would run as www-data (this is a debian
2006 Feb 07
11
breaking down a list view
I''m trying to figure out how to change the order of a list view and it''s obvious to me that I don''t understand what I get from a simple scaffold to know enough to alter it. If someone would be so kind to tell me what this means ... def list @placment_pages, @placements = paginate :placements, :per_page => 10 end @placement_pages, # I am guessing that this
2006 Jan 23
8
OT: Problem rotating logs with lighttpd
Hi everybody, this is a little OT. We are using Lighttpd as a webserver for Rails. Our problem is that when we rotate the logs everyday at the end of the process, lighttpd stops writing the logs. To solve this we have to restart the server manually each time. We use a common Debian, lighttpd-1.4.7, Rails 1.0 and fcgi-2.4.0. I have tracked the lighttpd bugs, and I haven''t found
2007 Jul 19
2
Information
...on a file that my client has sent me. The message says: Codec is missig. Speex Voice A109 is not installed on your computer. When I try to install it from the internet, it tells me it cannot be installed. Can you give me any help on installing Speex Voice A109 so I can access the audio? Ann Felkins 308-235-4416 e-mail: gmaf@bbcwb.net address: 4840 Road 39 W Kimball, Ne 69145 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/speex-dev/attachments/20070719/39406ca4/attachment.htm
2006 Jun 03
1
Can I tell if the associated record is new in a belongs_to save?
In a belongs_to association, is there a way to tell if the associated object was newly created? Hopefully this will explain my question: A Firm class declares has_many<http://api.rubyonrails.com/classes/ActiveRecord/Associations/ClassMethods.html#M000530>:clients and a client class declares