similar to: Rails 3.x no request parameters in log

Displaying 20 results from an estimated 100000 matches similar to: "Rails 3.x no request parameters in log"

2013 Jul 22
0
rails is not to logging controller, action, parameters, complection time, etc in development mode
For this one particular project, rails is not to logging controller, action, parameters, complection time, etc in development mode. And I am not sure why. When I check in the console the log level I notice: Rails.logger.level => 0 So I am not sure why it doesn''t log the information it usually does during a request. -- You received this message because you are subscribed to
2011 Sep 26
1
Supported Database List for rails 3.x
Hi all, Can we list all the supported databases with Rails 3.x ? -- regards, -Shyam -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to
2013 Apr 24
1
URGENT:Rails application crashed for 700 request per minute.
Hi, We have our rails application running on AWS. we have two application servers and one database(postgres) server of C1.xlarge <http://aws.amazon.com/ec2/instance-types/> AWS instance type. Our passengermaxpoolsize is set to 30. And postgresql max connection limit is 100. Recently we found that when we got nearly 700 request per minute, our application created nearly crossed the
2013 Apr 08
0
Safely persisting query parameters in Rails 3.1
I''m working on a project (Active Admin) that needs to be able to build links on the page (e.g. pagination) that include arbitrary query parameters that the user has entered. Since `url_for` symbolizes any keys passed to it, for obvious memory concerns you can''t just pass the entire params hash. In Rails 3.2, however, you can do this: include
2013 Jan 22
2
Rails 4: Should a HEAD request not be handled like a GET for CSRF protection?
I am running a Rails 4 app in semi-production and I constantly get exceptions from crawler bots that use a HEAD HTTP method, which causes the CSRF protection to kick in. Shouldn''t HEAD requests normally be handled like GET requests? I am not sure if I''m just being stupid or that hit is a bug somewhere. Michiel -- You received this message because you are subscribed to the
2010 Oct 18
0
Ajax call-request.xhr? = false Rails 3
I have the following tag in a view:- <%= form_tag url_for({:controller => params[:area], :action => :search, :area => params[:area] }), :method => :get, :remote => true do %> <%= label_tag(:query, "Search for:") %> <%= text_field_tag("query", params[:query], :autocomplete => "off", :onKeyPress=>"return
2013 Feb 12
2
Rails parameters get lost because of jQuery link
(Original post: http://stackoverflow.com/questions/14569721/rails-parameters-get-lost-because-of-jquery-link, unfortunately no response) I saw this Railscast ( http://railscasts.com/episodes/240-search-sort-paginate-with-ajax) the other day and wanted to use the techniques for an application of mine. I have a page with elements on it and I want to sort them by values and select them by tags.
2012 Feb 01
0
How can I force Rails 3.2 to reload mounted rack app per request in development mode?
How can I force Rails 3.2 to reload mounted rack app per request in development mode? I have mounted grape <https://github.com/intridea/grape> app this way mount API2, :at => "/api2" However rails doesn''t reflect changes in app without web server restart. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk"
2013 Jan 16
0
Rails 3.2 jQuery JSONP request not working - Moved Permanently
I am trying to send a POST request ( ''remove_tag_named'' )and getting a simple OK back on success ; it doesn''t work.. the post is correctly sent , but after then it''s looping on sending a GET request to the same url, with the error 301 Moved Permanently I should not be far fro the solution, but I am stuck : In my routes.rb *namespace
2011 Jul 11
4
How to Install ruby 1.9.2/1.9.1 and Rails 3.x on Ubuntu
Hello All, I have Ubuntu 11-04, I would want to install ruby 1.9.2/1.9.1 and Rails 3.x. I need the least complicated way of doing this. Rgds, Janus -- *Satajanus Nig. Ltd * -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to
2013 Mar 06
2
Refresh a partial onClick using ajax call in rails 3.x
Hi All, I want to refresh a partial onClick, onClick i am making ajax call and getting the data but i am unable to refresh the partial. here is the code IN views: home.html.erb $(document).ready(function() { var currentCellText; $(".inline").click(function() { currentCellText = $(this).text(); $.ajax({ type: ''GET'', dataType: "json",
2010 Dec 21
3
Request for comment on post on SEO QuickStart for Rails
Hi, http://programmers-blog.com/2010/12/21/quick-start-to-seo-for-ruby-on-rails What do you think about this guys? I looked through the whole Internet ;) and found nothing simple that would suit my simple needs. So I did these things on my own and wrote about the process. Thanks for any comments! Regards, M&W. -- Posted via http://www.ruby-forum.com/. -- You received this message
2010 Aug 06
1
Rails setup process (from HTTP request to root router loaded)
Hi all I''m interested in learning more about what happens within rails (or the web server) from when an HTTP request is made, to the point where its served. I know config/router.rb is involved somehow, and I imagine many other files. Does anyone know of any writings online which address this issue? Or would someone be so kind to explain, in depth, the details? Links and comments very
2013 Jul 01
0
Looking for benchmarks between Rails versions (2.3, 3.x, 4.0)
Hi, I''m looking for some benchmarks between the different versions of Ruby on Rails to show the benefits to migrate to Rails 4. If anyone, have articles about this topic, i''m interested. Thanks. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it,
2010 Jun 29
3
belongs_to. Association methods don't pass data to DB
Hi. I have a problem with the association methods which passed to a model through a belongs_to declaration. Here''s an illustration of the issue: GIVEN: # migration class CreateArticlesAndAuthorsTables < ActiveRecord::Migration   def self.up     create_table :articles do |t|       t.text     :title       t.integer :author_id     end     create_table :authors do |t|       t.text
2010 Jan 20
2
empty rails log folder
The rails log folder is in my .gitignore file. That means the log folder is not in the repository. When I deploy my rails app to the staging server via git pull, the app refuses to work because it does not see a log folder. I have to manually create an empty log folder for it to put log files such as acts_as_ferret log inside. So now I have to commit an empty log folder to the git repository
2012 Dec 03
2
Rails 3.2 session id nil until next request
Posted this on stack overflow earlier today here<http://stackoverflow.com/questions/13673969/rails-3-2-session-id-nil-until-next-request>, I really either don''t know what I''m doing, or I don''t understand how sessions are supposed to work! I''m connecting to rails from an Air app and communicating with JSON only. When the client sends a login request,
2014 Apr 21
0
Unpermitted Parameters - Rails 4
Hi, I'm using Devise (3.2.4), Rails 4 and I'm trying to signup. I have a Registration Controller where i do have: " def sign_up_params params.require(:user).permit(:email,:first_name, :last_name,:mobile, :birthday, :current_password, :password,:password_confirmation) end " and everytime i try to sign up I get the following message: Processing by
2013 Oct 23
3
Rails 4 and HABTM Checkboxes: Unpermitted parameters error
I have a simple Rails 4 project with two scaffolded models: Practice and Practitioner. I have set these both as habtm and am in the process of adding checkboxes to the Practitioner form so that I can check off the practices that this practitioner belongs to. In the practitioners_controller, I added practice_ids to the practitioner_params permit list, but I am still getting the error: Started
2010 May 16
2
I cannot install Rails 3.0 on my OS X
Hi, I''ve upgraded ruby to 1.8.7. But when I tried to install rails 3.0, it said that I need ruby 1.8.7 or higher. ruby-1.8.7-p248$ ruby -v ruby 1.8.7 (2009-12-24 patchlevel 248) [i686-darwin9.8.0] ruby-1.8.7-p248$ sudo gem install rails --pre ERROR: Error installing rails: activesupport requires Ruby version >= 1.8.7. What should I do? Sam -- Posted via