Размер файла: 4.51Kb
<?php
########################################
## WAP-ENGINE ##
########################################
## ##
## Автор : CHUMA (Токарев Владимир) ##
## e-mail : [email protected] ##
## WAP : http://wap-engine.ru ##
## ##
########################################
## ВЫ НЕ ИМЕЕТЕ ПРАВО ##
## ИЗМЕНЯТЬ КОД СКРИПТА ##
## ДЛЯ ДАЛЬНЕЙШЕГО РАСПРОСТРАНЕНИЯ! ##
########################################
include 'config.php';
include 'templates/run.php';
include 'templates/func.php';
$title_page = $textlogo;
if(!empty($autoupdate_gl))
{
echo'<meta http-equiv="Refresh" content="'.$autoupdate_gl.'" />';
}
file_get_contents(''.$home.'/modules/chat/index.php');
####################
if ($themes=='')
{
header ('Location: install.php');
}
####################
include 'themes/'.$themes.'.php';
####################
if ($portal=='off')
{
echo'<p align="center">'.$offmes.'</p>';
}
if ($portal=='on')
{
if($_GET[err]==404)
{
echo'<p class="err" align="center">Ошибка 404. Страница или файл не существует.</p>';
}
if($_GET[err]==403)
{
echo'<p class="err" align="center">Ошибка 403. Доступ к странице или файлу запрещен.</p>';
}
if(isset($_GET['papka']) && isset($_GET['file']))
{
$get_file = filter($_GET['file']);
$get_papka = filter($_GET['papka']);
if(preg_match("#^[a-z0-9_-]+$#i", $get_papka) && preg_match("#^[a-z0-9_-]+$#i", $get_file) && file_exists($get_papka.'/'.$get_file.'.'.$ras_pages))
{
include $_GET['papka'].'/'.$_GET['file'].'.'.$ras_pages;
}
else
{
echo'<p class="err">Неверные параметры страницы!!!<br /></p>';
}
}
else
{
$m_polozhenie = 'На главной';
if(file_exists('install.php'))
{
echo'<p class="err" align="center">Удалите срочно файл install.php</p>';
}
$users_f = file('data/nicks.php');
array_splice($users_f, 0, 2);
array_splice($users_f, -2, 2);
if(empty($users_f))
{
echo'<p class="err" align="center">Внимание! На данный момент нет ни одного пользователя в базе данных. Первый пользователь автоматически становится главным администратором сайта. <a href="modules/kabinet/reg.php?'.session_name().'='.session_id().'">Зарегистрируйтесь</a>.</p>';
}
if(!isset($_GET['papka']))
{
$file_gl_top = file_get_contents($dob_url.'/data/reklama_gl_top.txt');
if(!empty($file_gl_top))
{
echo'<p class="adv">'.$file_gl_top.'</p>';//реклама на главной вверху
}
}
if($show_date == '1' || $show_time == '1' || $welcome == '1')
{
echo'<p class="modul_name"align="center">
';
//Показываем дату
if($show_date == '1')
{
include'templates/date.php';
echo' ';
}
//Показываем часы
if($show_time == '1')
{
include'templates/time.php';
echo'<br />';
}
//приветствие
if($welcome == '1')
{
include'data/welcome.txt';
}
echo'</p>';
}
if(isset($_SESSION['sespass']) && isset($passw) && $_SESSION['sespass'] == $passw)
{
$model = $_SERVER['HTTP_X_OPERAMINI_PHONE_UA'];
$ip = $_SERVER['REMOTE_ADDR'];
$ip_lll = $_SERVER['HTTP_X_FORWARDED_FOR'];
$ip_ll = explode(',', $ip_lll);
$ip_l = $ip_ll[0];
$browser = $_SERVER['HTTP_USER_AGENT'];
$browser_soft = "$browser|$model";
$ip_ip = "$ip|$ip_l";
$str_to_user_file = str_user_data(); # Строка данных пользователя находится в файле templates/func.php
write_to_file('data/users/'.$login.'.php', "<?php\r\n/*\r\n$str_to_user_file\r\n*/\r\n?>");
}
$glav = '1';
if($web_skin == 1)
{ include'index_web.txt'; } else
{ include'index.txt'; }
}
}
####################
if(isset($glav))
{
$file_gl_bottom = file_get_contents($dob_url.'/data/reklama_gl_bottom.txt');
if(!empty($file_gl_bottom))
{
echo'<p class="adv">'.$file_gl_bottom.'</p>';//реклама на главной внизу
}
}
####################
if($mainlink == 1)
{
if(isset($glav))
{
include'modules/link/link.php';
}
}
####################
include 'templates/foot.php';
?>