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

which way to put HERE?

define('QA_WORDPRESS_INTEGRATE_PATH', 'HERE');

I made the installation at the root https://q2a.com.br

Q2A version: 1.8

1 Answer

0 votes
by

It needs to be the directory where Wordpress is installed. It looks like WP is at the root of your site, in which case where is Q2A installed? If it's in a subfolder then you would need this:

define('QA_WORDPRESS_INTEGRATE_PATH', dirname(__DIR__));

...