search for: bassnod

Displaying 14 results from an estimated 14 matches for "bassnod".

Did you mean: bassnode
2006 Jul 21
9
multi-server rails deployment
I''m building an app in rails that will be deployed on 3 different servers but am not sure the best way to deploy it. The app is something like Google Adwords (an online advertising program, essentially). ServerA is the Administration server ServerB is the Ad server (feeds ad requests to affiliates) ServerC is the Click server (handles incoming clicks from our affiliate sites) All 3
2007 Feb 15
7
Mongrel Monitoring...
I have a website that is running Mongrel that is CONSTANTLY going down. There seems to be no rhyme or reason... There must be something in the way the site was written. Is there a recommended Mongrel monitoring tool that will monitor our sites mongrel services and restart mongrel when the site goes down? The server is a UNIX machine... Thanks!! Roy -------------- next part
2006 Sep 21
10
How do you use Mongrel?
Hey folks, I''m working on the Mongrel book with Zed, and wanted to get some feedback from the core users (this list) about how they use Mongrel. That sounds a bit vague, but I''m interested in hearing things about frustrating problems / workaround, preferred configurations, if you have a particular way you set up / store your config files when developing / deploying an
2007 Feb 07
3
Upgrade to Rails 1.2.2 : RESTful routes not working anymore
...r => > "admin/histories" > end > end > > In my previous solution, I forgot ":controller => "admin/histories". > Thanks for your help. > > Everybody is still welcome to comment this solution. > Thomas. > > On 2/2/07, Ed Hickey <bassnode-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > > > > so if you do this: > > <%= admin_histories_url(@request) %> > > > > you should get something like: > > "/admin/requests/1/histories" > > > > if you do this: > &...
2007 Oct 11
7
1.0.2 release candidates
Hello Mongrels, Release candidates for Mongrel 1.0.2 and its dependencies are now available. Note that gems are now signed, so please add the Mongrel public certificate via: $ wget http://rubyforge.org/frs/download.php/25325/mongrel-public_cert.pem $ gem cert --add mongrel-public_cert.pem Now you can verify and install the candidates via gem install: $ sudo gem install mongrel
2007 Jan 25
8
Mongrel with mephisto on a Virtual Private Server
Hello everyone, I am trying to setup Mongrel to work with Apache on a VPS as part of a mephisto installation. Has anyone done this, and if so how did you edit your conf file to make it work? I used the info found on the mongrel site at: http://mongrel.rubyforge.org/docs/apache.html<http://mongrel.rubyforge.org/docs/apache.html> and one time I did get a mephisto splash screen, but it was
2006 Aug 04
9
Mongril or Lighthttttp? Yes
I was writing my blob at http://railsblob.blogspot.com/ which is for new people who are new to Rubby and I was learning if Mongril or Lighthttttp? or Web Rick is better for me. Have you any advice. Thanks? Rails Blobber -- Posted via http://www.ruby-forum.com/.
2006 Jul 24
22
which webserver to use in production?
Apologies in advance if this ignites a war of comflicting opinions.... I''m a few days away from going live with my first RoR application. It is completely database centric and each user will have his own queries so cacheing will not really help. I have a dedicated linux server being built by my hosting provider and I need to tell them which webserver to use. The databse is MySQL
2005 Dec 31
26
Free "Agile Web Development with Rails" Text
Hi All, I''m a RoR n00b that has been lurking for a week or so. About two weeks ago I bought the text version of Agile Web Development with Rails. Today, I bought the .pdf version because I run a Sony Notebook and find a .pdf more user friendly. Therefore I have the text to give away for free. If anyone in the continental US would like the copy please let me know and I''ll mail it
2006 Aug 11
1
unit tests / table names
I recently underwent a (forced) schema change and had to change my "Keyword" class''s table name to "keywords_raw". Changing this in the model was no problem. All my existing unit tests obviously assumed everything was named "keywords" so I''m trying to change things to work, but I can''t figure out the right combo. I''ve tried
2006 Nov 04
0
bug in scripts option for in_place_editor?
I can''t seem to get :script to set the evalScripts option in the Ajax.InPlaceEditor. No matter what combination of options I try it never shows up. E.g. : <%= in_place_editor ''url_1'', :url => { :controller => ''url'', :action => ''set_url'', :id => 1 }, :cols => 45,
2006 Jul 11
0
Inplace editor oddity
I''m having issues handling output of a inplace editor function. When the controller action is successful, it returns the new value that populates the DIV and all is well. When it fails, it sends a js alert to the user. The problem is, after it sends the alert (and the user clicks OK) it then spits back the try/catch javascript code which gets inserted into the DIV. I''ve tried
2006 Jul 25
1
mysql cluster database.yml setup
im trying to deploy my app on our staging server and am running into an issue. we have a MySQL NDB cluster for the staging box. this basically means that the staging box should be able to use MySQL via localhost and it will automatically know it''s in a cluster. When running queries, it will go out to the real DB boxes instead of localhost to fetch the data. AFAIK, the clustering setup
2006 Jun 26
4
has_many :through
first, the models: class Listing < ActiveRecord::Base has_many :keyword_links has_many :keywords, :through => :keyword_links, :conditions => "active = 1" end class Keyword < ActiveRecord::Base has_many :keyword_links has_many :listings, :through => :keyword_links, :conditions => "active = 1" end class KeywordLink < ActiveRecord::Base belongs_to