Ok,
After a long layoff I am back to this again.
I did the git.
created the symbolic link for the blog
How do I specify where the database is: this is what I have now:
production:
adapter: mysql
database: mephisto_production
username: xxxxxxx
password: zzzzzzz
host: localhost
encoding: utf8
I have this in environment.rb
RAILS_GEM_VERSION = '2.0.2' unless defined? RAILS_GEM_VERSION
# Uncomment below to force Rails into production mode when
# you don't control web/app server and can't set it the proper way
ENV['RAILS_ENV'] ||= 'production'
From what I have read, the git you provided and is documented on the mephisto blog is version 0.8 which requires 2.0.2
I have also frozen to 2.0.2
I am getting this error
myacct@bunyan [~/mephisto]$ rake db:bootstrap RAILS_ENV=production
(in /home/myacct/mephisto)
rake aborted!
undefined method `initialize_schema_information' for module `ActiveRecord::ConnectionAdapters::SchemaStatements'
(See full trace by running task with --trace)
myacct@bunyan [~/mephisto]$
myacct@bunyan [~/mephisto]$ rake db:migrate
(in /home/myacct/mephisto)
rake aborted!
undefined method `initialize_schema_information' for module `ActiveRecord::ConnectionAdapters::SchemaStatements'
(See full trace by running task with --trace)
myacct@bunyan [~/mephisto]$
From what I have read the problem may be the db is not getting created.
Thanks.. I have hit a dead end. Sorry but I have limited knowledge. This is a great learning experience for my, so I hope you can help.
Also is there a better tool for accessing the mysql db remotely ? The myAdmin tool is very slow.