Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
101 views
in Q2A Core by

Hi,

I've been trying to install Q2A for two days now with no success. I keep getting the error:

PHP Question2Answer MySQL query error 1146: Table 'demo.qa_options' doesn't exist - Query: SELECT title, content FROM qa_options


Is there a way to create this table manually?

by
Make sure your database user has the right permissions on that schema

1 Answer

+1 vote
by

Create Table: CREATE TABLE `qa_options` (
  `title` varchar(40) NOT NULL,
  `content` varchar(12000) NOT NULL,
  PRIMARY KEY (`title`)
);

However, if that table wasn't created, chances are other tables are missing as well. It may be a better idea to start over from scratch. Did you follow the installation instructions?

...