Displaying 20 results from an estimated 10000 matches similar to: "rails not ready for production use?"
2005 Nov 09
3
AJAX form Parameters jumbled.
Sorry for the repost but I originally posted this as a response to
another thread. I have a text field called ''phrase'' but the
parameter values always come up as nil and when I check the
parameters dumped in the error message I do not get the normal hash
you''d expect. Instead of something like
{"phrase"=>"jim"}
I get:
2005 Sep 19
4
Rails vs. Cocoon
Hello all,
I''m hoping that someone out there in Rails-land has developed in both Cocoon
and Rails and would like to share their experiences using both application
frameworks.
I''m going to be doing a presentation in the next couple of days on the
advantages that Rails affords. The higher-ups are going to use this info on
deciding whether or not to move away from Cocoon and
2005 May 13
17
modeling...
I''ve tried tackling this many ways on my own and can''t find a good solution:
Breaking it down to something simplier...
Venue
has one address
Person
has one address
Address
belongs to state
Assuming I don''t want to do tables for venue_addresses and person_addresses.
What is the best way to model this using rails... big thing here is i
want to be able
to reuse a
2005 Nov 21
10
Anybody using SCGI in production?
Or does anybody prefer fastcgi/fcgi? I''m using webrick for development, but plan on using scgi
when I switch to production (because it appears to be an update to fastcgi, and I couldn''t get
fastcgi working anyhow).
thanks
csn
__________________________________
Yahoo! Mail - PC Magazine Editors'' Choice 2005
http://mail.yahoo.com
2005 Aug 18
10
Scaffolding, DRY and RHTML
Hello all, I''m working on a couple of Rails projects at the moment and
have noticed something that seems to go against the DRY principal.
Why, when scaffolding, are individual CRUD rhtml files created instead
of using one as a partial and having the others use that single
partial? This especially applies to the list rhtml. I am about to get
to the other operations and see how feasible
2005 Dec 19
2
Logging of Form information in production environment.
It seems that in the default Production environment, Rails logs posted
form data. Isn't this a security risk? Especially since a user
creation form puts this in the logfile:
Processing Base#index (for 127.0.0.1 at 2005-12-18 21:03:33) [POST]
Parameters: {"user"=>{"password_confirmation"=>"mypassword",
"username"=>"seanwolfe",
2005 May 10
58
A quick straw poll
How many of you are using Rails:
1. As the primary development tool at your Day Job
2. As a small part of your Day Job
3. Not using Rails in your Day Job, but are using Ruby
4. For OS/outside work/hobby
--
sam
http://www.magpiebrain.com/
2004 Jul 24
2
acl handling on delete (performance problem)
Hi all,
I'm debugging a performance problem for a client. Needless to say, the
organisation of their data is such that this problem is really annoying.
Here's the situation:
Samba 3.0.x PDC in a mixed 9x/nt/xp environment, using acls. When trying to
delete a large number of folders from a folder, the 'preparing to delete'
stage takes about half hour.
It's simple to repeat:
2005 Dec 16
6
Switchtower for production?
Hello,
The company that I work for will be developing a large webbased survey
(for a government institution) somewhere in Q1/Q2 of 2006. I''m
investigating the technological possibilities and Rails is certainly a
candidate. The survey application will have to perform under very high
peak load, and the exact specifications of the hardware are not known
at this point. I''m assuming
2005 Aug 28
1
Active Record problem
Hi all
I am new to Rails, and obviously I''m missing something, I''ll get straight to the question:
A User has many operations (granted to her), each Operation is associated with an OperationType. Each Operation may be associated with more then one User.
So the model goes like this:
class User < ActiveRecord::Base
has_and_belongs_to_many :operations
2005 Sep 22
2
production environment
So I''m getting ready to setup a production environment on my boxen (running
Fedora Core 3), what are my options? I''ve seen a number of posts about
FastCGI, SCGI, etc. and am completely lost as to what I should be setting up
on my box (that I hopefully won''t have to touch for a while).
I need to run Collaboa, Typo and probably 3 or 4 other apps on this, so
2002 Aug 06
2
Need a 'no password required' configuration
I am trying to set up a smb.conf file so that a user and password are NOT
required to access the share.
Can someone tell me how to do this?
net use p: \\sambaserver\public
asks for a password, then returns (regardless of the password or user):
"The account is not authorized to login form this
station.
Thanks,
.
-Ralph
Ralph Burnette
x3313 7
2005 Dec 16
25
I Would Really Like to Try RoR but...
it''s been a nightmare trying to set it up. I keep getting a an
Application Error message when I try to navigate to a url which should
be taken care of by my newly created controllers. For instance, I
wanted to test RoR out so I created a MyTest controller which should
allow me to navigate something like:
http://localhost/rubytest/MyTest
but it does not. I have no problem getting
2006 Jun 27
19
Event.observe
I''m not sure if I''m understanding this correctly.
<SCRIPT LANGUAGE="JAVASCRIPT" TYPE="TEXT/JAVASCRIPT">
Event.observe(''mes_appearance_s0'',
''onchange'', function(e){ alert(''changed me!'') });
Event.observe(''headinjury'', ''click'',
function(e){
2006 Apr 26
12
RE: how to use Effect.BlindUp for resizing a div
var height = someElementReference.offsetHeight;
and to set it:
someElementReference.style.height = "100";
It is worth saying that offsetHeight and offsetWidth are non-standard compliance. They will give you the total rendering height and this will cause problems in IE since they use a different box model than FireFox. So you will have to do some height juggling in IE if you are using
2006 Jul 24
15
XML Question
I''ve got an XML file which is pretty well structured. I need to retrieve
specific elements from that file to fill out empty HTML elements on a page.
I think what I need is xPath? Or - is that overkill? Is there some easier
way to locate an XML element?
What I have in mind is pulling the XML file using Ajax, then xPath to get
the bits I need.
Am I on the right path and does
2006 Mar 03
11
event.keyCode broken in prototype?
I ran 2 tests. One using proto''s Event.observe, and another using an
in-line handler of the "keydown" event in a textbox.
Using .bindAsEventListener, the event.keyCode is always returning a
capital letter, no matter what. The in-line event handler returns
lowercase vs. uppercase correctly... What''s going on?
I guess I find it hard to believe no one has tried
2006 Jan 02
4
Autocompleter with a scroll bar
Has anyone been able to make scrollable results for an autocompleter?
Thanks!
2005 Dec 06
9
script.aculo.us AutoComplete Woes
I was wondering if someone could help me with an autocomplete problem. I
have the autocomplete div receiving a <UL> that looks like:
<ul>
<li>Name<br>Email</li>
</ul>
When the user hits enter and the value is filled into the text field
it''s putting both the name and email in the field. I just want the name.
Funny this works in Firefox but not IE. I
2006 Jan 16
8
resizable window/div - some help needed
Hello
I have been working on a little window dialog script - please see
<http://net4visions.com/dev/window/window.htm>
http://net4visions.com/dev/window/window.htm for a preview. the necessary
files can be downloaded here:
<http://net4visions.com/dev/window/window.zip>
http://net4visions.com/dev/window/window.zip .I''ve included just the basics
- please change the path in