Installation for Subdomain not working

Permalink
I am trying to create a subdomain site using C5 where the primary site is running on Drupal. When I try to start the install process, I get an error "Fatal error: Uncaught exception 'ADODB_Exception' with message 'mysql error: [1146: Table 'cnsauction.Config' doesn't exist].

The database exists and the db username has complete access.

site.php is correct. Not sure what the heck is going on

 
mediact replied on at Permalink Reply
This message says that cnsauction.Config table does not exist.

This error is probably caused by the fact that you are running c5 on a case sensitive mysql server(which is the default configuration). In your database the table is probably called cnsauction.config (lowercase!). This is why the table cannot be found.

The camelcase naming of the tables in C5 cause problems in MYSQL default installs... That's why your Drupal does function and C5 isn't.
ScottC replied on at Permalink Reply
ScottC
my problem was that I was running a wampserver2.0 install which was about 6 months old. The newer adodb that came with the latest beta needed a higher version of mysql. I updated to the newest version of wampserver and everything worked perfectly.

I hope this helps.