view install/step2.php @ 76:69e0dabc765a

fixed: Reservation.class.php modified: config.php.sample modified: index.php modified: install/step1.php modified: install/step3.php install/grscan.php
author Sushi-k <epgrec@park.mda.or.jp>
date Tue, 23 Feb 2010 19:58:30 +0900
parents a935b4789aff
children
line wrap: on
line source

<?php
include_once("../config.php");
include_once("../Smarty/Smarty.class.php");
include_once("../Settings.class.php");

$settings = Settings::factory();

$smarty = new Smarty();
$smarty->template_dir = "../templates/";
$smarty->compile_dir = "../templates_c/";
$smarty->cache_dir = "../cache/";

$smarty->assign( "settings", $settings );
$smarty->assign( "install_path", INSTALL_PATH );
$smarty->assign( "post_to", "step3.php" );
$smarty->assign( "sitetitle", "インストールステップ2" );
$smarty->assign( "message", "システム設定を行います。このページの設定が正しく行われないとepgrecは機能しません。" );

$smarty->display("systemSetting.html");
?>