Quote:
Originally Posted by AfterWorldForum
Just as a FYI, the CWD errors can be solved by editing the vB global.php.
Replace:
Code:
define('CWD', (($getcwd = getcwd()) ? $getcwd : '.'));
with
Code:
if (!defined('CWD'))
{
define('CWD', (($getcwd = getcwd()) ? $getcwd : '.'));
}
Still lost on how to solve the VB_SYSTEM_PATH one, though.
|
Wonderful!
Thank you very much for the solution.
In another problem such as I, it is difficult to understand!
Continue to investigate