In windows, folder separeter ("\") are mixed in absolute path. In usually no problem. But problem will occur belong to processing. For example, when comparing with unix path ("/"). Therefore, I optimized below basic constants in qa-include/qa-base.php.
- QA_BASE_DIR
- QA_INCLUDE_DIR
- QA_LANG_DIR
- QA_THEME_DIR
- QA_PLUGIN_DIR
//define('QA_BASE_DIR', dirname(dirname(__FILE__)).'/'); // try out best if not set in index.php or qa-index.php - won't work with symbolic links
define('QA_BASE_DIR', str_replace("\\", "/", dirname(dirname(__FILE__))).'/'); // try out best if not set in index.php or qa-index.php - won't work with symbolic links