mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-07-23 13:06:18 +00:00
fix: installation will not be allowed if old data are still in DB
This commit is contained in:
@@ -9,10 +9,13 @@
|
||||
include ("../../GameEngine/Database.php");
|
||||
include ("../../GameEngine/Admin/database.php");
|
||||
|
||||
|
||||
$conn = mysqli_connect(SQL_SERVER, SQL_USER, SQL_PASS);
|
||||
mysqli_select_db($conn, SQL_DB);
|
||||
|
||||
// check if we don't already have world data
|
||||
$data_exist = $database->query_return("SELECT * FROM " . TB_PREFIX . "odata LIMIT 1");
|
||||
if (count($data_exist)) {
|
||||
header("Location: ../index.php?s=6&err=1");
|
||||
exit;
|
||||
}
|
||||
|
||||
$database->populateOasisdata();
|
||||
$database->populateOasis();
|
||||
$database->populateOasisUnits2();
|
||||
|
||||
@@ -12,6 +12,12 @@
|
||||
|
||||
include("database.php");
|
||||
|
||||
// check if we don't already have world data
|
||||
$data_exist = $database->query_return("SELECT * FROM " . TB_PREFIX . "wdata LIMIT 1");
|
||||
if (count($data_exist)) {
|
||||
header("Location: ../index.php?s=3&err=1");
|
||||
exit;
|
||||
}
|
||||
|
||||
$xyas=(1+(2*WORLD_MAX));
|
||||
|
||||
|
||||
@@ -16,7 +16,11 @@
|
||||
#################################################################################
|
||||
|
||||
if(isset($_GET['c']) && $_GET['c'] == 1) {
|
||||
echo "<div class=\"headline\"><span class=\"f10 c5\">Error creating wdata. Check configuration or file.</span></div><br>";
|
||||
echo "<br /><hr /><br /><div class=\"headline\"><span class=\"f10 c5\">Error creating wdata. Check configuration or file.</span></div><br><br>";
|
||||
}
|
||||
|
||||
if(isset($_GET['err']) && $_GET['err'] == 1) {
|
||||
echo "<br /><hr /><br /><div class=\"headline\"><span class=\"f10 c5\">Existing World Data found in the database! Please clear your database before continuing.</span></div><br /><br />";
|
||||
}
|
||||
?>
|
||||
<form action="process.php" method="post" id="dataform">
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<?
|
||||
<?php
|
||||
//////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// TRAVIANX //
|
||||
// Only for advanced users, do not edit if you dont know what are you doing! //
|
||||
@@ -6,6 +6,11 @@
|
||||
// - TravianX = Travian Clone Project - //
|
||||
// DO NOT REMOVE COPYRIGHT NOTICE! //
|
||||
//////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
if(isset($_GET['err']) && $_GET['err'] == 1) {
|
||||
echo "<br /><hr /><br /><div class=\"headline\"><span class=\"f10 c5\">Existing Oasis data found in the database! Please clear the 'odata' table before continuing.</span></div><br /><br />";
|
||||
}
|
||||
|
||||
?>
|
||||
<form action="include/oasis.php" method="post" id="dataform">
|
||||
<p>
|
||||
|
||||
Reference in New Issue
Block a user