On 17.05.2007 07:57 tagawa wrote: > Hello, > I'm developing a new site using CakePHP 1.2, dAuth and hopefully > phpGACL. Having upload the CakePHP phpGACL plugin and phpGACL itself, > clicking the 'Proceed with installation' button results in the error > message "phpGACL could not be installed". Looking at the code, this > happens when schema.xml is parsed and executed but I'd like more > details. Is there a way to get the phpGACL plugin to print a log of > what's going on or print error messages from phpGACL itself? >
Are you using UTF8 tables? The phpGACL install script creates indexes that are over 1000 bytes when using Unicode, and 1000 bytes is the size limit for indexes in MySQL. Thus, the whole table creation fails. Either set your database to use a single-byte charset, or change the schema.xml to create smaller indexes. -Matt --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
