08-31-2014, 03:46 PM
Hi Joe, I've sent you the log.
thanks,
thanks,
[color=#000080][b]Anil Purushothaman[/b][/color]
CoreBOS 5.5 Issues
|
08-31-2014, 03:46 PM
Hi Joe, I've sent you the log.
thanks,
[color=#000080][b]Anil Purushothaman[/b][/color]
08-31-2014, 07:12 PM
We seem to have found the problem. It is due to a missing table that couldn't be created because of a collation difference between fields on different tables. There is a foreign key between _webforms_field table and _fields table. When a foreign key is set both fields must be exactly the same. In this case the _field table had a different collation.
@anilp78 please execute this SQL command and tell me the result: Code: SELECT DEFAULT_COLLATION_NAME FROM information_schema.SCHEMATA WHERE SCHEMA_NAME = 'your_database' LIMIT 1; this should return utf8_general_ci but I think it will return utf8_unicode_ci in your case and that would explain the problem. I will create a ticket so we can look into this to see if we can fix it. As a temporal solution for anybody running into this we can do two things: 1.- change the collation of the _field table and then create the missing table: Code: CREATE TABLE `vtiger_webforms_field` ( 2.- Contact me, we have a coreBOS Updater changeset that changes your whole database to utf8_general_ci. You can run that and then create the table above.
Joe
TSolucio
09-01-2014, 07:02 AM
I reproduced the issue.
I created a ticket to fix it: <!-- m --><a class="postlink" href="http://corebos.org/development/view.php?id=228">http://corebos.org/development/view.php?id=228</a><!-- m -->
Joe
TSolucio |
« Next Oldest | Next Newest »
|