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

This is Screenshot from Filezilla Client.

I am Entering following in qa-config.php 

define('QA_WORDPRESS_INTEGRATE_PATH','/home/c35c41217611756/html/');

Still getting Error as

Could not find wp-load.php file for WordPress integration - please check QA_WORDPRESS_INTEGRATE_PATH in qa-config.php

Q2A version: 1.7.5

1 Answer

0 votes
by
edited by

It may be that the /home/... path is just what the FTP is showing you and not the true path. Try adding this to your config to see:

echo __DIR__;

So an alternate version, presuming the qa-config.php is in the ask/ directory, would be this:

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

...