Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
255 views
in Q2A Core by
Fatal error: Class 'qa_filter_basic' not found in /home/a4445800/public_html/qa-include/qa-base.php on line 635
Q2A version: 1.5.4

1 Answer

0 votes
by
edited by

It may be cause that the file upload is not completed definitely. After having confirmed FTP transfer mode, upload once again.

In addition, there is the method to upload zip file to your server.
  1. Upload zip file to server.
  2. Login by SSH.
  3. Unzip archive.
  4. Move all unziped files to document root(This may be unnecessary depending on way of unzip).

More, it may be cause for some reason that most important constant (QA_BASE_DIR) of Q2A is not set definitely. Insert below codes at qa-include/qa-base.php (L150). And check QA_BASE_DIR(absolute path).

echo 'QA_BASE_DIR = ' . QA_BASE_DIR;
exit;
...