1
Hello can anybody prompt to me why in installation process i'm getting error about mainfile.php.
If in detail on step
.../install/index.php - Line 228
case "dbsave":
include_once "./class/mainfilemanager.php";
$title = _INSTALL_L88;
$mm = new mainfile_manager("../mainfile.php");
$ret = $mm->copyDistFile();
if(! $ret){
$content = _INSTALL_L60;
include 'install_tpl.php';
exit();
}
.../install/class/mainfilemanager.php - Line 52
function copyDistFile(){
if ( ! copy($this->distfile, $this->path) ) {
// ...
return false;
}
A state of variables are
$this->distfile - ../mainfile.dist.php
$this->path - ../mainfile.php
I think i can fix it, but why this error is throw in clear installation.
Sorry for bad english.