annotate install/step5.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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
40
a935b4789aff fix: bug
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
1 <?php
a935b4789aff fix: bug
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
2 include_once( "../config.php");
a935b4789aff fix: bug
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
3 include_once( INSTALL_PATH."/Settings.class.php" );
a935b4789aff fix: bug
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
4
a935b4789aff fix: bug
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
5 $settings = Settings::factory();
a935b4789aff fix: bug
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
6
a935b4789aff fix: bug
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
7 echo 'EPGの初回受信を行います。20~50分程度後に<a href="'.$settings->install_url.'">epgrecのトップページ</a>を開いてください。';
a935b4789aff fix: bug
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
8
a935b4789aff fix: bug
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
9 @system( INSTALL_PATH."/getepg.php &" );
a935b4789aff fix: bug
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
10
a935b4789aff fix: bug
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
11 exit();
a935b4789aff fix: bug
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
12
a935b4789aff fix: bug
Sushi-k <epgrec@park.mda.or.jp>
parents:
diff changeset
13 ?>