Размер файла: 3.2Kb
<?php
//////////////////////////////////////////////////////////////////////////////////////////////
// //
// ---------- WAP-engine ---------- //
// //
// Автор : CHUMA //
// e-mail : [email protected] //
// Site : http:// //
// WAP : http:// //
// ICQ : 111-75-74 //
// //
//////////////////////////////////////////////////////////////////////////////////////////////
// ВЫ НЕ ИМЕЕТЕ ПРАВО ИЗМЕНЯТЬ КОД СКРИПТА ДЛЯ ДАЛЬНЕЙШЕГО РАСПРОСТРАНЕНИЯ //
//////////////////////////////////////////////////////////////////////////////////////////////
Error_Reporting(E_ALL & ~E_NOTICE);
Error_Reporting (ERROR | WARNING);
extract($HTTP_GET_VARS);
extract($HTTP_POST_VARS);
extract($HTTP_COOKIE_VARS);
extract($HTTP_SERVER_VARS);
extract($HTTP_SESSION_VARS);
session_name("SESID");
session_start();
require ("config.php"); //Подключаем настройки сайта. (config.php)
if ($papka && $file)
{
$filename = "$papka/$file.$ras_pages";
if (!file_exists($filename))
{
header ("Location: index.php?err=1");
}
}
if ($file)
{
$filename = "$file.$ras_pages";
if (!file_exists($filename))
{
header ("Location: index.php?err=1");
}
}
if ($gzip=="1") // gzip сжатие
{
ob_start('ob_gzhandler');
}
require ("themes/$themes.php"); //Вставляем скин сайта.
if ($portal=="off") //Проверка включен портал или нет, если выключен, то выводим $offmes
{
print ("<center> $offmes </center>");
}
if ($portal=="on") //Проверка включен портал или нет, если включен, то выводим содержимое сайта
{
if ($papka && $file)
{
include"$papka/$file.$ras_pages";
} elseif ($file)
{
include"$file.$ras_pages";
}elseif ($url)
{
include"$url";
} else {
//выводи ошибку
if($err==1)
{
echo"<center><font color=990000>Данный файл не существует</font></center>";
}
//Показываем время суток
if($show_days=="1")
{
echo'<div align="center">';
include"templates/vremyasutok.php";
echo'</div>';
}
//Показываем дату
if($show_date=="1")
{
echo'<div align="center">';
include"templates/date.php";
echo'</div>';
}
//Показываем часы
if($show_time=="1")
{
echo'<div align="center">';
include"templates/time.php";
echo'</div>';
}
echo'<br>';
//приветствие
if($welcome=="1")
{
echo'<div align="center">';
include_once"data/welcome.txt";
echo'</div>';
}
if ($_SESSION['login']==$nickadmina && $_SESSION['pass']==$passadmina)
{
echo'<div class=b><a href="admin/main.php">Админка</a></div>';
}
include"index.txt";
}
}
require ("templates/foot.php"); //Вставляем низ сайта. (templates/foot.php)
?>