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

Hi everyone! Please help sort out the problem.

On the reg page i have error....

Question2Answer fatal error:

User registration is handled by external code

Stack trace:

require() in index.php:31
require() in qa-index.php:175
qa_get_request_content() in qa-page.php:789
require() in qa-page.php:207

On the login page take this:

Question2Answer fatal error:

User login is handled by external code

Stack trace:

require() in index.php:31
require() in qa-index.php:175
qa_get_request_content() in qa-page.php:789
require() in qa-page.php:207

Q2A version: latest

2 Answers

0 votes
by
I'm assuming you are using the single sign on version?  You could use a 301 redirect in your ,htaccess file to send the user to the external registration form you use.

<IfModule mod_rewrite.c>
RewriteEngine On

RewriteRule register /path-to-external-registration-url [L,R=301]

</IfModule>
0 votes
by
I think you renamed "qa-external-example" to "qa-external" because you mistook integration guide with installation guide. just remove "qa-external" or rename it. you might need to make fresh Q2A installation if you did it while installing Q2A.
...