Файл: install/inc/step_2.php
Строк: 44
<?php
$set['title'] = 'Проверка CHMOD';
require_once 'inc/head.php';
if (isset($_GET['chmod_ok'])) {
@chmod(H . 'install/', 0777);
@chmod(H . 'sys/avatar/', 0777);
@chmod(H . 'sys/ini/', 0777);
@chmod(H . 'sys/classes/', 0777);
@chmod(H . 'sys/gallery/foto/', 0777);
@chmod(H . 'sys/gallery/48/', 0777);
@chmod(H . 'sys/gallery/128/', 0777);
@chmod(H . 'sys/gallery/640/', 0777);
@chmod(H . 'sys/obmen/files/', 777);
@chmod(H . 'sys/obmen/screens/', 777);
@chmod(H . 'sys/inc/', 0777);
@chmod(H . 'sys/wall/', 0777);
@chmod(H . 'sys/files/', 0777);
@chmod(H . 'sys/files/screens/', 0777);
@chmod(H . 'sys/txt/', 0777);
@chmod(H . 'sys/js/', 0777);
@chmod(H . 'sys/fnc/', 0777);
@chmod(H . 'sys/news/', 0777);
@chmod(H . 'sys/update/', 0777);
@chmod(H . 'sys/tmp/', 0777);
@chmod(H . 'style/themes/', 0777);
msg('Права успешно получены!');
}
echo "<form class = 'razd' method = 'POST' action = '?chmod_ok'>";
echo "<div class = 'button_blue'>";
echo "<button>Получить права!</button>";
echo "</div></form>";
echo "<div class = 'razd'>";
require_once H . 'sys/inc/chmod_test.php';
echo "</div>";
if (isset($err)) {
if (is_array($err)) {
foreach ($err as $key => $value) {
echo "<div class='err'>$value</div>n";
}
} else {
echo "<div class='err'>$err</div>n";
}
} elseif (isset($_GET['step']) && $_GET['step'] == '3') {
$_SESSION['install_step'] ++;
header("Location: index.php?$passgen&" . SID);
exit;
}
echo "<form method="get" class = 'razd' action="index.php">n";
echo "<input name='gen' value='$passgen' type='hidden' />n";
echo "<input name="step" value="" . ($_SESSION['install_step'] + 1) . "" type="hidden" />n";
echo "<div class = 'button_blue'>";
echo "<button class = 'clik' value="" . (isset($err) ? 'Cкрипт не готов к установке' : 'Продолжить') . "" type="submit"" . (isset($err) ? ' disabled="disabled"' : null) . ">Далее</button>";
echo "</div></form>";
require_once 'inc/foot.php';