Thunderbird Update breaks Google Calendar provider on Ubuntu 11.10

The latest upgrade to thunderbird seems to break the calendar connection to google calendar.

The error is "Provider for Google Calendar is incompatible with Thunderbird 8"

The simple fix is to edit

/usr/share/xul-ext/gdata-provider/install.rdf

<em:maxVersion>2.0</em:maxVersion>

This seems to work for me (at least I can see my calendar again)

 

Word of the Month

asshattery

(can I say that on the intewebs?)

Heroku Commands

Create app

cd app_path
heroku create --stack cedar

Create staging area

heroku create --stack cedar --remote staging

Precompile your assets

RAILS_ENV=production bundle exec rake assets:precompile
git commit -am "precompiled assets"

Upload to heroku

Things are getting cloudy - Storing paperclip images on Amazon S3 and Heroku

Another learning curve! Using Heroku for app deployment and storing attachements on S3.

Heroku setup and Commands

Install Heroku

gem install heroku

Add your public key to Heroku

heroku keys:add

Create App

heroku create --stack cedar

Upload/Deploy App

Contact Us Page Tutorial

Here's a great tutorial for implementing a contact us page in Ruby on Rails

http://matharvard.ca/posts/2011/aug/22/contact-form-in-rails-3/

Syndicate content