I ran into another problem trying to get my database to work on 10.6. The trick is to properly set DB_HOST: /** MySQL hostname */ define(‘DB_HOST’, ‘127.0.0.1:3306’); </pre> For a complete tutorial on how to setup WordPress on Mac OSX 10.6 see http://wordpress.org/support/topic/306878?replies=6.
Category: database
Dump an Existing Database Schema Into a Ruby On Rails Migration Ready Format
I have been looking around for a plugin or bit of code that can dump the schema from an existing database into the Ruby on Rails database migration format. The solution is a ‘duh’ moment, and probably obvious to most Rails programmers. All you have to do is change your database.yml file so that it…
SQL Server 2005 Express error: 40
I ran into this error while trying to run some scripts on my SQL Server 2005 Express Database: An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections….