annotate install/step5.php @ 77:cb7da56c4198

modified: Keyword.class.php modified: config.php.sample modified: index.php modified: install/step1.php modified: keywordTable.php modified: programTable.php modified: simpleReservation.php modified: templates/index.html modified: templates/keywordTable.html modified: templates/programTable.html
author Sushi-k <epgrec@park.mda.or.jp>
date Wed, 24 Feb 2010 20:22:19 +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 ?>