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

 

Hi, I am a bigfan of Q2A and using the script to power Q&A site in my site (as a subdomain). I could easly integrate it with the wordpress installation using the instruction(www.question2answer.org/wordpress.php). It worked perfectly until I enabled the multisite feature in my wordpress installation. I added the follwing code in the wp-congig.php file to configure the wordpress mutisite, then the Q&A subdomain 'qa' is redirected to the wordpress installation. The Q&A not showing instead it is showing the mother wordpress blog. I also noticed that when removing the below code it works fine! 
 
Please help me to integrate Q2A with wordpress mutisite installation,
 
 
/** Allow Multisite **/  
define('WP_ALLOW_MULTISITE', true);
define( 'MULTISITE', true );
define( 'SUBDOMAIN_INSTALL', false );
$base = '/';
define( 'DOMAIN_CURRENT_SITE', 'qa.website.com' );
define( 'PATH_CURRENT_SITE', '/' );
define( 'SITE_ID_CURRENT_SITE', 1 );
define( 'BLOG_ID_CURRENT_SITE', 1 );
Q2A version: Q2A 1.5.2

Please log in or register to answer this question.

...