Hi there,
I had issue with clear installation of EPESI 1.6.0 on our Windows Server 2008 with Apache 2.4, PHP 5.4..
When I confirmed database settings, i had gotten blank page. If I tried to refresh it want to delete config.php.
The problem was in backslash on the end of string with EPESI url in config.php:
define("EPESI_URL","http://my.domain\");
So I directly replaced
$other_conf .= "\n".'define("EPESI_URL","'.$url.'");';
with
$other_conf .= "\n".'define("EPESI_URL","http://my.domain");';
in setup.php on line 403.
I also tested it on linux server, there it works...
So I'm not sure, if it is just problem with our Windows Server settings or it is some bug.
Anyway, I hope, this could be helpfull for someone.
Ladis