[Mahara-contributors] [Bug 1180243] [NEW] Installation hangs with "Mahara requires InnoDB tables. Please ensure InnoDB tables are enabled in your MySQL server."

2013-05-15 Thread Hermann Klocker
Public bug reported: Fresh install 1.7.1 on OSX Server 10.7.5 MySQL 5.6.11 - MySQL Community Server Chrome 26.0.1410.65 My MySQL Installation works flawlessly with some other products like moodle 2.5. Any new tables created with the mahara user via phpMyAdmin are InnoDB tables, show engines;

[Mahara-contributors] [Bug 1180243] Re: Installation hangs with "Mahara requires InnoDB tables. Please ensure InnoDB tables are enabled in your MySQL server."

2013-05-15 Thread Hermann Klocker
These are the few lines added to my /var/log/apache2/error_log when refreshing my installation page: [Thu May 16 06:02:23 2013] [error] [client 10.0.0.3] [WAR] e6 (lib/upgrade.php:73) Mahara requires InnoDB tables. Please ensure InnoDB tables are enabled in your MySQL server. [Thu May 16 06:02:

Re: [Mahara-contributors] [Bug 1180243] Re: Installation hangs with "Mahara requires InnoDB tables. Please ensure InnoDB tables are enabled in your MySQL server."

2013-05-15 Thread Hermann Klocker
Hi Son, thank you for your reply. I think you meant the error_log of apache, so I send you the tail of this when trying to install: [Thu May 16 06:02:23 2013] [error] [client 10.0.0.3] [WAR] e6 (lib/upgrade.php:73) Mahara requires InnoDB tables. Please ensure InnoDB tables are enabled in your

Re: [Mahara-contributors] [Bug 1180243] Re: Installation hangs with "Mahara requires InnoDB tables. Please ensure InnoDB tables are enabled in your MySQL server."

2013-05-15 Thread Hermann Klocker
Hi Son, after reading the error messages (I did not do this before, I am rather a newbie regarding maharas log-locations) I dug into it a little bit and found a hint why testing for Innodb did not success on my system: the test did in lib/upgrade.php $result = $db->Execute("SHOW VARIABLES LIKE 'h

[Mahara-contributors] [Bug 1180243] Re: Installation hangs with "Mahara requires InnoDB tables. Please ensure InnoDB tables are enabled in your MySQL server."

2013-05-15 Thread Hermann Klocker
I dug into it a little bit and found a hint why testing for Innodb did not success on my system: the test did in lib/upgrade.php $result = $db->Execute("SHOW VARIABLES LIKE 'have_innodb'"); gives no result on my server (tested it with my account for mahara and the root account), I will attach all

[Mahara-contributors] [Bug 1180243] Re: Installation hangs with "Mahara requires InnoDB tables. Please ensure InnoDB tables are enabled in your MySQL server."

2013-05-15 Thread Hermann Klocker
Sorry for double posting - did not know that email replies are posted here.. (Don't know how to delete these duplicates) -- You received this bug notification because you are a member of Mahara Contributors, which is subscribed to Mahara. Matching subscriptions: Subscription for all Mahara Contri

[Mahara-contributors] [Bug 1180243] Re: Installation hangs with "Mahara requires InnoDB tables. Please ensure InnoDB tables are enabled in your MySQL server."

2013-05-16 Thread Hermann Klocker
Managed to fix the problem via a dirty hack: changed 'YES' to '' in line 72 in lib/upgrade.php. Installation cleanly finished. Sure this is no solution but I have not enough mysql knowledge to propose a better test for innodb capabilities. Thanks for pointing to the right location to investig