ActiveRecord-JDBC is for use with JRuby only….

Few days back when i tred to run my rails project. I got an error saying ActiveRecord-JDBC is for use with JRuby only jdbc-mysql is only for use with JRuby /usr/lib/ruby/gems/1.8/gems/activerecord-2.3.2/lib/active_record/connection_adapters/abstract/connection_specification.rb:76:in `establish_connection’: Please install the jdbcmysql adapter: `gem install activerecord-jdbcmysql-adapter` … Continue reading

Compress the server response with Nginx

Maybe you aware with apache “mod_gzip and mod deflate”

Web page compression is not a new technology, but it has recently gained higher recognition in the minds of IT administrators and managers because of the rapid ROI it generates. Compression extensions exist for most of the major Web server platforms

For Apache Normally use following syntax:
………………….. Continue reading

Install Apatana Studio on Fedora 9

Installation of Apatana in Detail 1. Download zip file from this location(http://www.aptana.com/studio/download) File name:Aptana_Studio_Setup_Linux_1.2.7.zip 2. Then uncompress the .zip file. and copy the resulting ‘aptana’ folder under ‘/home/siwan’.(siwan is my username for fedora, you have replace your username) 3. Install … Continue reading

deconstructing date_select in rails

// Reconstruct a date object from date_select helper form params // place this code into your application.rb file def build_date_from_params(field_name, params) Date.new(params["#{field_name.to_s}(1i)"].to_i, params["#{field_name.to_s}(2i)"].to_i, params["#{field_name.to_s}(3i)"].to_i) end //You can changes order of displaying into view <%= date_select ‘from’, ‘date’ ,:order => [:day, … Continue reading