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

Fatal error : Call to undefined function qa......... I guess this is due some outdated plugin. I am testing but if anyone of you have any info about this please comment below.

Q2A version: 1.7.4
by
What are plugins you are running?

1 Answer

+1 vote
by
Try uncommenting the code in qa-base.php on line 594 (the one above the eval() call). That will output the plugin code that is being executed.

Then line 79 in that code displayed will be where the error is occurring. You should then be able to match it to a plugin.

It should be possible to fix by adding

include QA_INCLUDE_DIR . 'db/metas.php';
...