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

Here goes full path, I know it:

define('QA_WORDPRESS_INTEGRATE_PATH', '/PATH/TO/WORDPRESS');

 

But still it does not work with Wordpress 3.5.1.

I want to integrate users. 

Any suggestions?

 

2 Answers

0 votes
by

Replace/PATH/TO/WORDPRESS' with your path to WP.. mybe something like /home/cp-username/public_html/

0 votes
by

Dominick Amorosso already gave an answer just a bit more specific here

If your wordpress on root and q2a in sub directory than it would be like below

define('QA_WORDPRESS_INTEGRATE_PATH', '../');

If your wordpress on in sub directory and q2a on root than it would be like below

define('QA_WORDPRESS_INTEGRATE_PATH', '/');

path here means the path on the server not the url

...