ここの情報は古いです。ご理解頂いた上でお取り扱いください。

source: OpenPNE/branches/2.8.x/webapp/modules/setup/templates/setup.tpl @ 3115

Last change on this file since 3115 was 3115, checked in by ogawa, 16 years ago

#859:セットアップ画面で表示されているSQLファイルのパスが間違っている

File size: 2.5 KB
Line 
1({ext_include file="inc_header.tpl"})
2
3<p>必ず下記の設定をおこなってからセットアップを実行してください。</p>
4<ul>
5<li>setup/sql/mysql4x/install-2.8-create_tables.sql の実行</li>
6<li>setup/sql/mysql4x/install-2.8-insert_data.sql の実行</li>
7<li>config.php の設定</li>
8</ul>
9<p>一度、セットアップを実行した後でこのページを表示することはできません。<br>
10セットアップをやり直したい場合はデータベースを空にしてからこのページへアクセスしてください。</p>
11
12({if $errors})
13<ul class="caution">
14({foreach from=$errors item=item})
15<li>({$item})</li>
16({/foreach})
17</ul>
18({/if})
19
20({t_form m=setup a=do_setup})
21
22<table>
23<tr>
24<th colspan="2">SNS名</th>
25</tr>
26<tr>
27<th>SNS名</th>
28<td><input type="text" name="SNS_NAME" value="({$requests.SNS_NAME})" size="30"></td>
29</tr>
30
31<tr><td colspan="2" style="padding:0;background:#000"><img src="skin/dummy.gif" height="1"></td></tr>
32
33<tr>
34<th colspan="2">初期メンバー</th>
35</tr>
36<tr>
37<td colspan="2" style="background-color: #ffc">初期メンバーのログイン情報の設定をします。<br>
38プロフィールやその他の設定項目はログイン後に設定してください。</td>
39</tr>
40<tr>
41<th>PCメールアドレス</th>
42<td><input type="text" name="pc_address" value="({$requests.pc_address})" size="30"></td>
43</tr>
44<tr>
45<th>パスワード</th>
46<td><input type="password" name="password" value="" size="15"></td>
47</tr>
48<tr>
49<th>パスワード(確認)</th>
50<td><input type="password" name="password2" value="" size="15"></td>
51</tr>
52
53<tr><td colspan="2" style="padding:0;background:#000"><img src="skin/dummy.gif" height="1"></td></tr>
54
55<tr>
56<th colspan="2">管理用アカウント</th>
57</tr>
58<tr>
59<td colspan="2" style="background-color: #ffc">管理画面へのログイン用アカウントの設定をします。</td>
60</tr>
61<tr>
62<th>管理用アカウント名</th>
63<td><input type="text" name="admin_username" value="({$requests.admin_username})" size="20"></td>
64</tr>
65<tr>
66<th>管理用パスワード</th>
67<td><input type="password" name="admin_password" value="" size="15"></td>
68</tr>
69<tr>
70<th>管理用パスワード(確認)</th>
71<td><input type="password" name="admin_password2" value="" size="15"></td>
72</tr>
73
74<tr><td colspan="2" style="padding:0;background:#000"><img src="skin/dummy.gif" height="1"></td></tr>
75
76<tr>
77<th>&nbsp;</th>
78<td><input type="submit" value="セットアップ実行"></td>
79</tr>
80</table>
81</form>
82
83({ext_include file="inc_footer.tpl"})
Note: See TracBrowser for help on using the repository browser.