Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
1.8k views
in Q2A Core by
when I want to send a private message this warning appears:

Warning: require_once() [function.require-once: Unable to access /home/public_html/qa-include/qa-db-messages.php in /home/public_html/qa-include/qa-page-message.php on line 110

Warning: require_once(/home/public_html/qa-include/qa-db-messages.php) [function.require-once: failed to open stream: No such file or directory in /home/public_html/qa-include/qa-page-message.php on line 110

Fatal error: require_once() [function.require: Failed opening required '/home/public_html/qa-include/qa-db-messages.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/public_html/qa-include/qa-page-message.php on line 110

 

Line 110 is :require_once QA_INCLUDE_DIR.'qa-db-messages.php';
Q2A version: 1.6.3

1 Answer

+4 votes
by
selected by
 
Best answer

This error is saying that the file qa-db-messages.php in

/home/public_html/qa-include/ 

doesn't exist, or isn't readable. Check if this file exists. 

If it does, check the permissions on this file to make sure they are 644 or 755
by
Thanks. qa-db-messages.php didn't exist. I added it and fixed.
Thank you.
...