Ah, yes,
My http://localhost server doc root is
d:/websites/
and my VirtualHost http://qcodo.con docroot is
d:/websites/qcodo.con/
and if I shorten the path in 'assets/php/_require_prepend.inc.php'
from
require(dirname(FILE) . '/../../../includes/prepend.inc.php');
to
require(dirname(FILE) . '/../../includes/prepend.inc.php');
then everything works fine.
and my configuration file is set up as so
define ('__DOCROOT__', 'd:/websites/qcodo.con');
define ('__VIRTUAL_DIRECTORY__', '');
define ('__SUBDIRECTORY__', '');
Thank you,
=-)