Member since
10-24-2013
3
Posts
1
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
6255 | 10-24-2013 11:17 PM |
10-24-2013
11:17 PM
1 Kudo
Well, never mind, you have to use MyISAM. Lots of stuff breaks if you don't. It would be nice if the table creation scripts set them to MyISAM rather than having to change the default engine to MyISAM
... View more
10-24-2013
09:56 PM
I have a theory. I beleive the script assume you are running myisam which does not enforce Foreign Keys all the well (actualy not at all) You have two choices 1. change your default engine to myisam, not what I would prefer 2. alter the ddl scripts in /usr/share/cmf/schema/mysql directory You will need to add two lines: After the first update add SET FOREIGN_KEY_CHECKS=0; Then at the bottom of the file add SET FOREIGN_KEY_CHECKS=1; You will need to do that to the following files: 00035_cmf_schema.mysql.ddl 00043_cmf_schema.mysql.ddl 04509_cmf_schema.mysql.ddl 04511_cmf_schema.mysql.ddl I did this and I got through that part of the install.
... View more
10-24-2013
09:10 PM
I am having the same issue, any updates on this?
... View more