Displaying 9 results from an estimated 9 matches for "siggelkow".
2008 Aug 20
4
mod_proxy, mongrel, redirect issue
Hello,
I am configuring apache 2.2 to serve my rails app through mongrel at
the root of my server. First, I redirect all http traffic to https
with the following:
ServerName emiliano
NameVirtualHost *:80
<VirtualHost *:80>
RedirectPermanent / https://emiliano #this server is only accessed internally
</VirtualHost>
Inside the <VirtualHost *:443> section, I have the following
2007 Feb 05
6
Viewing object associated via "has_many :through"?
This is my first question to the Forum. Ive set up these associations:
class Playlist < ActiveRecord::Base
has_many :playlists_tracks, :dependent => :destroy
has_many :track_ones, :through => :playlists_tracks, :source => :track
has_many :track_twos, :through => :playlists_tracks, :source => :track
end
class Track < ActiveRecord::Base
has_many
2007 Jul 16
2
mongrel_rails start working mongrel_rails cluster::start not working
Hi everybody,
I have installed mongrel and mongrel cluster in a new linux box .... at the
end of the day I was able to lunch mongrel (mongrel_rails start -e
production) and all is working fine with.
However, when I tried to set a mongrel cluster the command mongrel_rails
cluster::start get the following output :
starting port 8000
starting port 8001
starting port 8002
But when I lunched the
2007 Feb 23
0
Mongrel::Uploads.check() not returning status
...@status = Mongrel::Uploads.check(params[:upload_id])
>
> However, @status is always nil. Any ideas? The upload_id is
> properly being sent.
>
> The file does upload; but the progress bar just goes from 0% to
> 100% once the upload is finished.
>
> Thanks.
>
> Bill Siggelkow
> AIM: siggelkowb
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://rubyforge.org/pipermail/mongrel-users/attachments/20070222/5da58d82/attachment-0001.html
2007 Jan 19
0
Mongrel::Uploads.check() not returning status
...#39;'s progress method I call ...
@status = Mongrel::Uploads.check(params[:upload_id])
However, @status is always nil. Any ideas? The upload_id is properly
being sent.
The file does upload; but the progress bar just goes from 0% to 100%
once the upload is finished.
Thanks.
Bill Siggelkow
AIM: siggelkowb
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://rubyforge.org/pipermail/mongrel-users/attachments/20070119/802d4ce1/attachment.html
2008 Jan 15
0
mechanize 0.7.0 Released
...tes that you have
visited as a history.
Changes:
# Mechanize CHANGELOG
## 0.7.0
* Removed Ruby 1.8.2 support
* Changed parser to lazily parse links
* Lazily parsing document
* Adding verify_callback for SSL requests. Thanks Mike Dalessio!
* Fixed a bug with Accept-Language header. Thanks Bill Siggelkow.
* <http://mechanize.rubyforge.org/>
--
Aaron Patterson
http://tenderlovemaking.com/
2007 Mar 08
0
Ruby Roundup Podcast
I am happy to announce the release of Episode 1 of the Ruby Roundup
podcast. You can find it at http://rubyroundup.com
This will be a weekly podcast covering the latest news and events in
the world of Ruby.
Have a listen and let us know what you think ...
-Bill Siggelkow
--~--~---------~--~----~------------~-------~--~----~
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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send...
2008 Jun 03
2
Passing environment variables to mongrel
The Rails app I''m working on requires an environment variable to be set. I
thought I could do this in my cap deploy script. Unfortunately, it seems
that the Mongrel processes that are started up by Mongrel Cluster have their
own environments and any environment variables set in the deploy script
aren''t passed on. I was able to verify this by having my deploy script run a
rake
2007 Jul 16
1
mongrel_rails start working mongrel_rails
...9;s ok
Is there any other alternative to force mongrel_rails cluster::start
to load the rails environment ?
Cheers,
Addame
Two things I would check:
1) Make sure you that you are not missing any gems that your
application uses;
2) Check to see if your application will run under webrick
Bill Siggelkow
bsiggelkow at mac.com <http://rubyforge.org/mailman/listinfo/mongrel-users>
AIM: siggelkowb
Home: 770-457-8854
Mobile: 770-354-2584
On Jul 16, 2007, at 12:31 AM, Mehdi Adda wrote:
>* Hi everybody,
*>*
*>* I have installed mongrel and mongrel cluster in a new linux
*>* box .......