Файл: adultscript-2.0.3-pro/files/install/ajax.php
Строк: 17
<?php
define('_VALID', true);
require realpath('../libraries/bootstrap.php');
VF::load('framework.compat.functions.json');
session_write_close();
$data = array('progress' => 0, 'msg' => 'Initializing...');
$file = TMP_DIR.'/logs/migration_progress.log';
if (file_exists($file) && is_file($file)) {
$content = file_get_contents($file);
$progress = explode('^', $content);
$data['progress'] = $progress['0'];
$data['msg'] = $progress['1'];
}
echo json_encode($data);
?>