Hello,
Today I was integrating Q2A on a specific website, but I had trouble at some point with the login:
I checked the code and the problem was due to this function : qa_db_user_login_sync()
The following code was the exact problem:
$tables=qa_db_list_tables_lc();
Why do the tables need to be in lowercase? It was causing problem because in my database, I had a column named questionTags, and it was trying to do a LOCK TABLES questiontags WRITE leading to a database error.
I changed the code and added a function qa_db_list_tables() and it seems to be fine for now, but I don't want any error later because I remove the lower case thus my question.
Thanks,
JB