Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Charles M. Gerungan

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS 

How to rotate your Rails logs by size, so you can allocate a certain amount of space for it.

Add this to RAILS_ROOT/config/environment.rb to keep 50 logfiles of 1MB each.
config.logger = Logger.new("#{RAILS_ROOT}/log/#{ENV['RAILS_ENV']}.log", 50, 1048576)

CocoaMySQL can't connect to my MySQL data base

CocoaMySQL can't handle MySQL 4.1's new password hashing. Read the MySQL docs how to handle this, or use YourSQL.
« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS