Приветствую всех!
Не могу подключить модули на сайте для личного кабинета, при заходе на сайт выдаёт Страница недоступна. В чём может быть проблема?
код php
<?php
require 'auth.php';
require '../engine/function.php';
require '../engine/authorization.php';
$template =
str_replace(array(
'{%isclass%}'
),
array(
),
file_get_contents('../templates/header.tpl')) .
str_replace(array(
'{%isclass%}'
),
array(
),
file_get_contents('ucp.tpl')) .
str_replace(array(
'{%footer%}',
),
array(
),
file_get_contents('../templates/footer.tpl'));
exit($template);
?>