我正在尝试将Wordpress与Question2Answer集成,以便它们为用户使用相同的数据库。 instructions for doing this非常简单。我需要做的就是在Question2Answer配置文件中定义我的Wordpress安装目录。不幸的是,无论我如何定义Wordpress目录的路径,我都会收到500错误。
安装的网址是:
Wordpress: http://stage.example.com
Question2Answer: http://stage.example.com/ask
目录结构是
Wordpress: public_html / stage
Question2Answer: public_html / stage / ask
定义:
define('QA_WORDPRESS_INTEGRATE_PATH', '../');
我已经尝试了100种不同的方法来定义Question2Answer配置文件中Wordpress目录的路径,并且我不断获得500 error
。我很确定我正确定义了目录的路径所以我认为它必须是某种权限或.htaccess问题,但我不确定它可能是什么。有什么想法吗?
这是错误:
PHP Question2Answer fatal error: Could not find wp-load.php file for WordPress integration - please check QA_WORDPRESS_INTEGRATE_PATH in qa-config.php
答案 0 :(得分:3)
这可能很愚蠢,但请注意,注释行中的整个define('QA_WORDPRESS_INTEGRATE_PATH', '/PATH/WORDPRESS/');
。因此,您必须将*/
放在define
行之前。
我一直在苦苦挣扎,直到我看到this post