similar to: acts as list and passenger

Displaying 20 results from an estimated 40000 matches similar to: "acts as list and passenger"

2012 May 27
2
Setting Up A Rails App With Passenger
Been trying to get Passenger installed and setup to run a rails app. Everytime I goto eaa.mysite.com in Firefox the web browser goes out to the Internet instead of serving up the website. Why does this occur? Below is part of the configuration for apache2.conf: ======================================================= # Setup a virtual host for the rails apps to run in. <VirtualHost *:80>
2009 Apr 30
10
tweaking Passenger/Rack for performance.
so here are my unorganized thoughts on Passenger settings. * PassengerMaxPoolSize This depends a lot on two primary variables. a) How much RAM you have. b) How much resident memory is needed for your environments/modules. Only way to determine this is with tweaking, and you''ll need to be much more conservative than the suggested settings on the Passenger docs as your app takes up a lot
2010 Oct 03
4
Error Running Rails 3 Application under Phusion Passenger
I have a rails 3 application that runs without problems under WebRick (on Ubuntu) that generates the following error in the browser when I run under Apache2 with Phusion Passenger: Ruby (Rack) application could not be started Error message: no such file to load -- bundler Exception class: LoadError I have googled and found one or two posts with this problem but none with solutions.
2010 Jun 16
2
passenger and apache mpm's
Hi! Is it safe to run phusion passenger with all apache kinds of MPM? regards -- Posted via http://www.ruby-forum.com/. -- 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
2012 Jul 10
3
passenger not installing
C:\>gem install ''passenger'' ERROR: Error installing passenger: The ''fastthread'' native gem requires installed build tools. Please update your PATH to include build tools or download the DevKit from ''http://rubyinstaller.org/downloads'' and follow the instructions at
2009 Dec 07
1
problem starting rails (hobo) app with passenger
Dear All! I''ve set up my apache, passenger and configs, the passenger works, but the app can''t be started. the erros are the following These are the possible causes: * There may be a syntax error in the application''s code. Please check for such errors and fix them. * A required library may not installed. Please install all libraries that this
2010 Oct 19
4
Problem while installing passenger for apache
Hi, I am trying to install passenger 3.0 for apache2 on Ubuntu 10.10. It says that I need to install libopenssl-ruby. But when I did ''sudo apt-get install libopenssl-ruby'', I got the following error. Reading package lists... Done Building dependency tree Reading state information... Done Note, selecting ''libruby'' instead of
2011 Mar 25
1
undefined method `init' for Mysql:Class on Mac with rvm and Passenger 3
I tried to find some help in the Passenger group without luck. I would not like to use mysql2 gem (it gives an error too) because in production I have to use mysql gem anyway. I moved to Passenger 3 and I am not able to run a Rails 2 and a 3 apps. They both uses Passenger 3 (latest) and ree 2011.03. The Rails 2 app gives uninitialized constant MysqlCompat::MysqlRes The Rails 3: NoMethodError
2010 Sep 21
3
Rails 3 deployment on Passenger
I''m trying to move up to Rails 3 and everything is going fine on my workstation where I have installed all of the necessary gems. The problem I''m having is getting it to run on the production server that I have to use where the app needs to be vendored. It''s on a Debian Squeeze box with ruby l.8.7, rubygems 1.3.6, librack-ruby1.9.1, passenger - 2.2.11debi and bundler
2010 Oct 27
2
passenger for both rails 2.3 and 3.0
Hi, I installed ruby 1.8.7 and passenger 3.0 for apache2 on Ubuntu 10.10. Rails 2.3 works fine. But Rails 3.0 gives an error saying that rack version is not 1.2.1. If I upgrade the rack to 1.2.1, then rails 2.3 app complains that the rack version is not ~>1.1.0. How do I satisfy both rails 2.3 and 3.0? Passenger standalone seems to be an option but I want to know if there''s a better
2010 Jun 24
11
Error: Trying to install passenger-install-apache2-module
i am trying to install passenger-install-apache2-module but it is giving me the error. E: could''nt find the package passenger-install-apache2-module Please help me over this. -- 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
2012 Oct 23
0
AJAX truncated response on Phusion Passenger v3.0.17 on CentOS v6.x
Our application deployed on Phusion Passenger version 3.0.17 server on CentOS 6.x box makes a AJAX call which returns a large response ranging from 1MBs to 8 MBs. It works fine a lot of time but we have seen truncated response from the server inconsistently. Its breaks are different places for the same response and is not because of escape characters. The server doesn''t break or
2010 Jun 06
3
running passenger + nginx
hi guys, Assuming I made some changes to the source code. My production environment runs on passenger and nginx. How do I restart passenger and nginx with minimal downtime? Surely I can''t do a "w" on the terminal because a server will not always be in zero load. Would love to hear some recommendations. PS- I have read on unicorn
2011 Oct 10
0
passenger , ruby on rails , apache 2.2.21
Hello, I am configuring apache 2.2 to serve my rails app through passenger. First, I redirect all http traffic to https with the following: This is my web server apache conf file. ServerName sampleapp NameVirtualHost *:80 <VirtualHost *:80> Options FollowSymLinks RewriteEngine On RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R]
2006 Sep 09
1
Acts as tree and list?
Does anyone have any experience using acts as tree and acts as list together? My model looks like class ModelName < ActiveRecord::Base acts_as_tree :order => "position" acts_as_list :scope => :parent end the table has fields position, :integer parent_id, :integer This kinda of seems to work. Except if I do something like @modelinstance.children.first.move_lower
2011 Feb 10
3
ror 3 + apache2 + passenger = apache test page
I set up Passenger on manual - http://wiki.rubyonrails.org/deployment/apache-passenger Passenger and Apache install without errors. /etc/httpd/conf/httpd.conf: >> ... >> LoadModule passenger_module >> /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.2/ >> ext/apache2/mod_passenger.so >> PassengerRoot /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.2 >>
2006 Aug 14
0
Acts As List bug: changing value of a scope attribute
Hi, I''ve just found out about this issue and it seems dev.rubyonrails.org is down so I thought I''d put it to the list Say I have an acts_as_list with as associated scope: MyObject ------ id assoc_id position == ======== ======== 1 1 1 2 1 2 3 1 3 4 2 1 5 3 1 If I alter one
2011 Apr 20
11
Mac Phusion Passenger Pane not working
I have a feeling that this is something centered around my apache/Passenger configurations but everything seems to check out. Another off the hand problem I''m having, and might be a clue is w/ my Passenger Pane. I installed the Phusion Passenger Pane and every time I try to add an entry, I get this error: "Your changes couldn’t be saved See the Console log for details."
2010 May 14
1
passenger and apache: worker or prefork
i''m going to install apache and passenger on a intel atom dual (dual core). is it better to install apache-worker or apache-prefork? -- 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
2012 Sep 18
3
Nginx + Phusion Passenger 3 problem with "504 Gateway time-out"
Hi, I have a Rails 3.2 app. There is a specific request that takes a long time to execute. The context is, the user uploads a pdf, and then we have some processing through carrierwave + rmagick that generate a jpeg from the first page of the document. Everything works in dev mode using both webrick and thin. The problem happens on the prod environment with Nginx + Passenger. The request takes a