So, for me this query:
Gives me 24 tables containing the column 'checked_out'.
contact_details and user_notes are the most likely to be related to registration. You may have other user related tables.
You could turn on debugging and set error reporting to maximum to see if you get a stack trace. I think the error message is coming from MySQL rather than Joomla but you might find out where it was triggered in the Joomla code.
Code:
SELECT DISTINCT TABLE_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE COLUMN_NAME IN ('checked_out') AND TABLE_SCHEMA='jdm3';
contact_details and user_notes are the most likely to be related to registration. You may have other user related tables.
You could turn on debugging and set error reporting to maximum to see if you get a stack trace. I think the error message is coming from MySQL rather than Joomla but you might find out where it was triggered in the Joomla code.
Statistics: Posted by ceford — Mon Jun 17, 2024 8:46 pm