Displaying 7 results from an estimated 7 matches for "lylo".
Did you mean:
lilo
2008 Jan 03
5
Start script not working when run via Rake
Hi there
I''m using the latest release (r300) and ''script/backgroundrb start'' works
perfectly when executed on the server, but when put inside a Rake task, it
doesn''t launch the worker processes.
The Rake task is as follows:
task :start_backgroundrb do
run "cd #{current_path} && ./script/backgroundrb start"
end
When I run this task, the
2007 Jul 29
16
Mongrel stops responding after period of inactivity
Hi
I posted this to the Ruby on Rails Talk group but I thought I''d post it here
too as it''s probably a more appropriate group. Hope this is ok.
I''m running a 2-instance Mongrel cluster behind Apache 2.2.4 with Rails
1.2.3. If no requests are received by the application for several hours
(this usually happens overnight) then Mongrel stops
responding and no requests are
2008 Jan 11
1
BackgrounDRb::PacketLogger issue
Hi there
I have recently upgraded to v1.0.1 and I''ve noticed an issue which I don''t
believe was present in the 0.2 release. In my worker class I am logging
errors as follows:
logger.error "the error message"
However, this now causes an exception to be thrown in the new version:
undefined method `error'' for
2007 Jun 14
3
Are there any HTML+CSS to PDF converters in ruby
Hi,
I tried PDF writer , but it doesn''t have HTML to PDF Converter.
Infact it is a PDF writer itself not a converter..
I''ve HTML pages with rich css or Strings with html+css such that
they are converted to PDF.
The idea is that web is all about RGB color model and when it comes
to Digital
Printing its all CMYK color model. My html page with rich css in
2007 Jul 29
4
Mongrel stops responding after period of inactivity
Hi
I''m running a 2-instance Mongrel cluster behind Apache 2.2.4 with
Rails 1.2.3. If no requests are received by the application for
several hours (this usually happens overnight) then Mongrel stops
responding and no requests are detected by Rails (at least nothing is
in the Rails log). Nothing untoward is in the Mongrel log.
If you try and visit the application, the request times out
2008 Mar 01
0
Testing XML over HTTP in a Rails app
Hi
I''m looking at testing the XML API methods of my RESTful controllers
-- create, update etc. I thought this would be really
straightforward, and perhaps it is, but I''m struggling to find a good
explanation of how to go about it the Rails way.
Firstly, I can successfully test it from the command line using curl,
e.g:
curl -H "Accept: application/xml" -X GET --basic
2008 Mar 18
0
Major issues with ActiveRecord callbacks in BackgroundRb r324
Hi there
I''ve been running BackgroundRb in production for a few months now. Recently
we added encryption onto some of our ActiveRecord fields by hooking in the
before_save and after_save callbacks, like:
class MyCallback
def initialize(attr_names)
@attr_names = attr_names
end
def before_save(model)
@attr_names.each do |attr_name|
next if