Jonathan Stegall
Jonathan Stegall
I ran a test by disallowing one of the values, and allowing four other values, on the picklist. Trying to submit all 5 returns a 400 error as before, while...
What I meant by the above comment, which is not clear now that I read it two weeks later, is that the API response from Salesforce is not different for...
At least part of the solution here is to tell users what the SQL query is to create the tables, so they can send it to their host. table one...
At least some of this is because they are using MyISAM instead of InnoDB [link here](https://wordpress.org/support/topic/fresh-install-errors/#post-9749151). The table creation will fail for MyISAM users because the key `KEY name_sf_type_wordpress_type (wordpress_object,salesforce_object)`...
The easiest way to keep allowing users to run MyISAM without messing up Salesforce data configurations for everyone else would be something like this, in activate.php: ``` dbDelta( $field_map_sql );...
I'm going to close this for now. It is theoretically possible that users might have more reasons that tables aren't created, but we'll cross that when we get there. I...
I think we also need to investigate this utf8mb4 stuff. https://make.wordpress.org/core/2015/04/02/the-utf8mb4-upgrade/.
@mistermarco thanks for the reminder there. I'm curious if PHP or MySQL ever returned error messages, especially during the activation of the plugin? Did it tell you why it was...
@andygagnon I don't have the space to look through days of error logs for you. This issue is not regularly updated when the plugin changes, so here are the current...
I've added a new section in the documentation that contains the SQL for creating tables when they're missing. It is located [here](https://github.com/MinnPost/object-sync-for-salesforce/blob/master/docs/troubleshooting-unable-to-create-database-tables.md). My hope is that this can be maintained...