Thanks Muxyd, that helped. I have another question now, which perhaps you can help me with also:
when you run 'rake backgroundrb:setup' it creates a backgroundrb.yml config file. On the page the William linked to, the format of the config file is like this:
:backgroundrb:
:port: 11006
:ip: 0.0.0.0
However, the format that's created when I run the rake task is like this:
---
port: "4***9" (actual port, not stars)
timer_sleep: 60
load_rails: true
environment: production
host: localhost
database_yml: config/database.yml
acl:
deny: all
allow: localhost 127.0.0.1
order: deny,allow
I'm just assuming that this is a newer, yet to be documented way of writing the config file? Also, would the information in that second config be the information that I want?
With this information, my current problem is that, after following this tutorial:
http://mongrel.rubyforge.org/wiki/UploadProgress, I never see any uploads when I do
(DRbObject.new nil 'druby://127.0.0.1:40289').list
Don't want to change the topic necessarily, but I don't know if this is a DRb issue or a mongrel_upload_progress issue.