Dragon-Knight/server/templates/install/first.php

39 lines
1.3 KiB
PHP
Raw Normal View History

2024-07-01 20:53:23 -05:00
<p class="mb-1">
Installation for Dragon Knight is a simple two-step process:
set up the database tables, then create the admin user. After
that, you're done.
</p>
<p class="mb-1">
You have two options for database setup: complete or partial.
<ul>
<li>
<b>Complete Setup</b> includes table structure and all
default data (items, drops, monsters, levels, spells,
towns) - after complete setup, the game is totally
ready to run.
</li>
<li>
<b>Partial Setup</b> only creates the table structure,
it does not populate the tables - use this if you are
2024-07-02 10:04:20 -05:00
going to be creating or importing your own customized
2024-07-01 20:53:23 -05:00
game data later.
</li>
</ul>
</p>
2024-07-13 23:15:25 -05:00
<p class="mb-1">
2024-07-01 20:53:23 -05:00
Click the appropriate button below for your preferred installation method.
2024-07-11 21:17:06 -05:00
<form action="/install/database" method="post">
<button type="submit" name="mode" value="complete">Complete Setup</button><br>
2024-07-01 20:53:23 -05:00
- OR - <br>
<button type="submit" name="mode" value="partial">Partial Setup</button>
</form>
</p>
2024-07-13 23:15:25 -05:00
<div class="alert is-danger my-2">
<b>WARNING:</b> if the database already exists, clicking either
option will delete all existing data. This is not reversible.
</div>