Как Запретить запуск страницы php

Вы сами же противоречите своим словам, перечитайте еще раз то что Вы написали в последних двух сообщениях и найдете решение проблемы.
 
всем спасибо за помощь все заработало последний вопрос
какой должен быть код чтобы фаил key был в корне сайта а а страница которую надо запретить запуск была в другой папке
тоесть так
home/key.php

а страница которою надо остановить надо
index.php

home/admin/login/index.php

будет ли так работать?
UPD ------------------------------------------
ребят подскажите вот начало моего файла index.php
PHP:
<?php
$file_key = $_SERVER['DOCUMENT_ROOT'].'/key.php';

if (file_exists($file_key)) {
include $file_key;
} else {
echo "Файл key отсутствует.";
exit;
}

define('ADMINAREA', true);
require('../init.php');

if (!function_exists('curl_init')) {
  echo '<div style="border: 1px dashed #cc0000;font-family:Tahoma;background-color:#FBEEEB;width:100%;padding:10px;color:#cc0000;"><strong>Critical Error</strong><br>CURL is not installed or is disabled on your server and it is required for WHMCS to run</div>';
  exit();
}

но при его открытие белая страница может чего то не хватает?
Тут ничего такого нет, возможно в файле key.php что-то не так. Включите вывод ошибок:
PHP:
error_reporting(E_ALL);
ini_set("display_errors", 1);

$file_key = $_SERVER['DOCUMENT_ROOT'].'/key.php';

if (file_exists($file_key)) {
include $file_key;
} else {
die("Файл key отсутствует.");
}

define('ADMINAREA', true);
require('../init.php');

if (!function_exists('curl_init')) {
  die('<div style="border: 1px dashed #cc0000;font-family:Tahoma;background-color:#FBEEEB;width:100%;padding:10px;color:#cc0000;"><strong>Critical Error</strong><br>CURL is not installed or is disabled on your server and it is required for WHMCS to run</div>');
}
 
Назад
Сверху