mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 00:24:23 +00:00
1066fff9a2
A lot has happened here. Here's the list: 1. autoloader was added that should prevent various "failed to open stream" errors when trying to load new classes 2. PHP-based data generation was replaced by MySQL-based one, hopefully fixing the installation problems when insert payload it too high and the DB wouldn't populate with some users 3. thanks to step 2, the installation should be really almost instantenious, instead of waiting a long time for many SQL connections and queries to populate the world 4. World Data & Oasis generation and population is done in 1 step now
54 lines
2.2 KiB
Smarty
54 lines
2.2 KiB
Smarty
<?php
|
|
#################################################################################
|
|
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Project: TravianZ ##
|
|
## Version: 22.06.2015 ##
|
|
## Filename dataform.tpl ##
|
|
## Developed by: Mr.php , Advocaite , brainiacX , yi12345 , Shadow , ronix ##
|
|
## Fixed by: Shadow - STARVATION , HERO FIXED COMPL. ##
|
|
## Fixed by: InCube - double troops ##
|
|
## License: TravianZ Project ##
|
|
## Copyright: TravianZ (c) 2010-2015. All rights reserved. ##
|
|
## URLs: http://travian.shadowss.ro ##
|
|
## Source code: https://github.com/Shadowss/TravianZ ##
|
|
## ##
|
|
#################################################################################
|
|
include_once('../GameEngine/config.php');
|
|
|
|
if(isset($_GET['c']) && $_GET['c'] == 1) {
|
|
echo "<div class=\"headline\"><span class=\"f10 c5\">Error importing database. Check configuration.</span></div><br>";
|
|
}
|
|
|
|
if(isset($_GET['err']) && $_GET['err'] == 1) {
|
|
echo "<br /><hr /><br /><div class=\"headline\"><span class=\"f10 c5\">Existing structure was found in the database! Please remove old game tables with the <i>".TB_PREFIX."</i> prefix from the '<strong>".SQL_DB."</strong>' database before continuing.</span></div><br /><br />";
|
|
}
|
|
?>
|
|
<form action="process.php" method="post" id="dataform">
|
|
<input type="hidden" name="substruc" value="1">
|
|
|
|
<p>
|
|
<span class="f10 c">Create Database Structure</span>
|
|
|
|
<table>
|
|
<tr>
|
|
<td>
|
|
Warning: This can take some time. Please wait until the next page has been loaded. Click Create to proceed...
|
|
<br />
|
|
<br />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<center>
|
|
<input type="submit" name="Submit" id="Submit" value="Create" onClick="return proceed()" />
|
|
<br />
|
|
<br />
|
|
</center>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</p>
|
|
</form>
|
|
</div>
|