Sam Wilson

Results 157 comments of Sam Wilson

(Sorry for the delay in replying.) Tabulate checks for the existence of its database tables when it's activated, and creates them if required. So this is a tricky one to...

Can you provide details about the storage engines you're using? e.g. check in phpMyAdmin, or get the output of `SHOW ENGINES;` and `SELECT engine FROM information_schema.TABLES WHERE TABLE_SCHEMA = 'dbname';`...

Yes, it seems that the issue is that the tables being created as InnoDB (your default), but some existing ones (probably `users` is the crux) are using MyISAM. Can you...

(I'll add something to Tabulate that checks and notifies about this issue, if this is what's causing the problems.)

@tfindlay99 can you check what storage engines your tables are using please? (Using phpMyAdmin or similar.) It sounds like there is an issue when the `users` table is not InnoDB....

Sorry it doesn't work. I'm not sure what the problem could be. Could you supply a screenshot of the table structure, or the `create table` command you used? Do you...

A CRUD form in the front-end of your site, with the shortcode? The best way at the moment to customize the output of the shortcode is to use the 'report'...

Sorry for the delay in replying! I'll try to get to everything. @bwl21 There's no way to create a view at the moment, you have to do that through phpMyAdmin....

Generally-speaking, you can edit table structure with much greater flexibility (including to remove rows) via e.g. phpMyAdmin. However, I'd recommend not creating a table without a primary key! There will...

Oh for sure, that makes sense. Actually, you won't be able to update data in a table without a PK (because there's no identity for the rows). So yeah, your...