<?php
define('_IN_JOHNCMS', 1);
$textl = ' Страница';
$rootpath = '';// если в корне
$rootpath = '../';// если в
папке
require_once ("incfiles/
core.php");// если в корне
require_once ("../incfiles/
core.php");// если в папке
require_once ("incfiles/
head.php");// если в корне
require_once ("../incfiles/
head.php");// если в папке
echo 'текст страницы';
require_once ("incfiles/
end.php");// если в корне
require_once ("../incfiles/
end.php");// если в папке
?>