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


Notice: Included file qa-app-users.php is deprecated in httpdocs/qa-include/qa-app-users.php on line 12

Thanks for you help

Q2A version: Ver 1.8.6
by
–1
Install PHP 7.

1 Answer

+2 votes
by
selected by
 
Best answer

You need to look for the plugin that is generating the issue. Follow these steps:

1. Remove the plugins one by one and check if the issue is fixed

2. Once you detect it is fixed, then open each of the .php files in the plugin directory and locate the text qa-app-users.php.

Note steps 1 and 2 can be simplified by just recursively searching for the text qa-app-users.php in the plugin directory

3. You will most likely find the text in a line that looks like this:

require_once QA_INCLUDE_DIR.'qa-app-users.php';

Then just replace the qa-app-users.php text with app/users.php so that the line becomes:

require_once QA_INCLUDE_DIR.'app/users.php';

...