|
You last visited: Today at 19:34
Advertisement
Azure Do Server
Discussion on Azure Do Server within the DarkOrbit forum part of the Browsergames category.
05/15/2013, 13:44
|
#46
|
elite*gold: 0
Join Date: Jun 2011
Posts: 424
Received Thanks: 238
|
Xdr olé, te has ganado otro thanks mío, buenísima cms, voy a descargarla ^^
Quote:
|
para qué hackear cosas mas grandes? yo solo hackeo las ilegales,mira como todos hacen servers cuando le dan el trabajo hecho,y simplemente lo cojen y sin esfuerzo abren un server,y además ponen anuncios para ganar dinero
|
Eso lo llego a entender y más si ganan dinero por ello como vendría siendo un negocio de algo que entras a km y tienes todo a mano y actualmente hasta niños de 10 años podrían crear un holo, pero piensa que el dinero no sale solo y de algo necesitan pagar el vps o servidor dedicado ¿no? o necesitan alguna ayudita de dinero para la familia y mil motivos mas, no sé, eso pienso yo.
|
|
|
05/15/2013, 15:43
|
#47
|
elite*gold: 0
Join Date: Aug 2012
Posts: 20
Received Thanks: 2
|
Help me!!skype stas123908
|
|
|
05/15/2013, 18:35
|
#48
|
elite*gold: 0
Join Date: Aug 2011
Posts: 188
Received Thanks: 48
|
haz un video tutorial porfavor!!!
|
|
|
05/15/2013, 18:45
|
#49
|
elite*gold: 0
Join Date: Aug 2012
Posts: 20
Received Thanks: 2
|
Help me!!skype stas123908
|
|
|
05/15/2013, 19:27
|
#50
|
elite*gold: 0
Join Date: Oct 2012
Posts: 267
Received Thanks: 29
|
Please make you tutorial!
???
Parse error: parse error in C:\xampp\htdocs\DO\index.php on line 12
Code:
<?php
require '../KERNEL-DOCMS/Init.php';
if(isset($_POST['loginForm_default_username'], $_POST['loginForm_default_password'], $_POST['loginForm_default_login_submit']) && $_POST['loginForm_default_login_submit'] === 'Login'):
$errorData = "";
if(strlen($_POST['loginForm_default_password']) < 6 || strlen($_POST['loginForm_default_password']) > 20 || !preg_match('`[0-9]`', $_POST['loginForm_default_password']) || $_POST['loginForm_default_password'] === '******' || strlen($_POST['loginForm_default_username']) < 3 || strlen($_POST['loginForm_default_username']) > 20):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">Username and password combination doesn\'t exist.<br>Please check your info and try again.</p>';
else:
$query = $MySQLi->query('SELECT ID, Email FROM users WHERE Name = \'' .$_POST['loginForm_default_username'] . '\' AND pwHash = \'' . md5($_POST['loginForm_default_password']) . '\' LIMIT 1');
if($query->num_rows === 1):
$row = $query->fetch_assoc();
$sessionId = $Core::GenerateRandom(18, true, false);
$MySQLi->query('UPDATE users SET sessionId = \' ' . $sessionId . '\' WHERE ID = ' . $row['ID'] . '');
$_SESSION['server1']['user']['sessionId'] = $sessionId;
$_SESSION['server1']['user']['email'] = $row['Email'];
header('Location: /indexInternal.es?action=internalStart');
else:
$errorData .= '<p class="singup_errorMessage signup_errorMessage">Username and password combination doesn\'t exist.<br>Please check your info and try again.</p>';
endif;
endif;
elseif(isset($_POST['signup_winnings'], $_POST['signup_username'], $_POST['signup_submit'], $_POST['signup_province'], $_POST['signup_passwordRepeat'], $_POST['signup_password'], $_POST['signup_newsletter'], $_POST['signup_instance'], $_POST['signup_email'], $_POST['signup_country'], $_POST['signup_birthdayYear'], $_POST['signup_birthdayMonth'], $_POST['signup_birthdayDay'])):
if($_POST['signup_submit'] == 'Register'):
$errorData = "";
if(strlen($_POST['signup_password']) < 6):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">The password is too short. Please choose a new password which has between 4 and 20 characters.</p>';
elseif(strlen($_POST['signup_password']) > 20):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">The password is too long. Please choose a new password which has between 4 and 20 characters.</p>';
elseif(!preg_match('`[0-9]`', $_POST['signup_password'])):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">The password must include numbers.</p>';
endif;
if(strlen($_POST['signup_username']) < 3):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">This username is too short. Please choose a new username which has between 3 and 20 characters.</p>';
elseif(strlen($_POST['signup_username']) > 20):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">This username is too long. Please choose a new username which has between 3 and 20 characters.</p>';
endif;
if(empty($_POST['signup_email']) || strlen($_POST['signup_email']) > 50 || preg_match("/^[a-z0-9_\.-]+@([a-z0-9]+([\-]+[a-z0-9]+)*\.)+[a-z]{2,7}$/i", $_POST['signup_email']) !== 1):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">Your e-mail address doesn\'t seem to be correct. Please enter a valid e-mail address.</p>';
endif;
if(!isset($_POST['signup_termsAndCondition']) || $_POST['signup_termsAndCondition'] !== '1'):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">Please confirm that you have accepted our Terms & Conditions. Afterwards, you may continue with your registration.</p>';
endif;
if($errorData === ''):
if($MySQLi->query('SELECT null FROM users WHERE Name = \'' .$_POST['signup_username'] . '\'')->num_rows > 0):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">This username already exists. Please select another username.</p>';
else:
$sessionId = $Core::GenerateRandom(18, true, false);
if($MySQLi->query('INSERT INTO users (Email, Name, pwHash, Servers, sessionId) VALUES (\'' . $_POST['signup_email'] . '\', \'' . $_POST['signup_username'] . '\', \'' . md5($_POST['signup_password']) . '\', \'\', ' . $sessionId . ');')):
$userId = $MySQLi->insert_id;
$MySQLi->multi_query('INSERT INTO server_1_players (userId) VALUES (' . $userId . ');UPDATE users SET Servers = \'[{1:' . $MySQLi->insert_id . '}]\' WHERE ID = \'' . $userId . '\'');
$_SESSION['server1']['user']['sessionId'] = $sessionId;
$_SESSION['server1']['user']['email'] = $_POST['signup_email'];
header('Location: /indexInternal.es?action=internalCompanyChoose');
endif;
endif;
endif;
endif;
endif;
require GLOBALS . 'doc.html';
require GLOBALS . 'header.html';
require FILES . 'INDEX/header.html';
require GLOBALS . 'sajax.html';
require GLOBALS . 'xajax.html';
require GLOBALS . 'headerEndJS.html';
require FILES . 'INDEX/jsSubmit.html';
echo '</head>';
require FILES . 'INDEX/bodyHeader.html';
require FILES . 'INDEX/body.html';
require FILES . 'INDEX/bodyFooter.html';
?>
Help me
|
|
|
05/15/2013, 19:48
|
#51
|
elite*gold: 0
Join Date: Apr 2012
Posts: 37
Received Thanks: 177
|
Quote:
Originally Posted by megasuperleader
Please make you tutorial!
???
Parse error: parse error in C:\xampp\htdocs\DO\index.php on line 12
Code:
<?php
require '../KERNEL-DOCMS/Init.php';
if(isset($_POST['loginForm_default_username'], $_POST['loginForm_default_password'], $_POST['loginForm_default_login_submit']) && $_POST['loginForm_default_login_submit'] === 'Login'):
$errorData = "";
if(strlen($_POST['loginForm_default_password']) < 6 || strlen($_POST['loginForm_default_password']) > 20 || !preg_match('`[0-9]`', $_POST['loginForm_default_password']) || $_POST['loginForm_default_password'] === '******' || strlen($_POST['loginForm_default_username']) < 3 || strlen($_POST['loginForm_default_username']) > 20):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">Username and password combination doesn\'t exist.<br>Please check your info and try again.</p>';
else:
$query = $MySQLi->query('SELECT ID, Email FROM users WHERE Name = \'' .$_POST['loginForm_default_username'] . '\' AND pwHash = \'' . md5($_POST['loginForm_default_password']) . '\' LIMIT 1');
if($query->num_rows === 1):
$row = $query->fetch_assoc();
$sessionId = $Core::GenerateRandom(18, true, false);
$MySQLi->query('UPDATE users SET sessionId = \' ' . $sessionId . '\' WHERE ID = ' . $row['ID'] . '');
$_SESSION['server1']['user']['sessionId'] = $sessionId;
$_SESSION['server1']['user']['email'] = $row['Email'];
header('Location: /indexInternal.es?action=internalStart');
else:
$errorData .= '<p class="singup_errorMessage signup_errorMessage">Username and password combination doesn\'t exist.<br>Please check your info and try again.</p>';
endif;
endif;
elseif(isset($_POST['signup_winnings'], $_POST['signup_username'], $_POST['signup_submit'], $_POST['signup_province'], $_POST['signup_passwordRepeat'], $_POST['signup_password'], $_POST['signup_newsletter'], $_POST['signup_instance'], $_POST['signup_email'], $_POST['signup_country'], $_POST['signup_birthdayYear'], $_POST['signup_birthdayMonth'], $_POST['signup_birthdayDay'])):
if($_POST['signup_submit'] == 'Register'):
$errorData = "";
if(strlen($_POST['signup_password']) < 6):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">The password is too short. Please choose a new password which has between 4 and 20 characters.</p>';
elseif(strlen($_POST['signup_password']) > 20):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">The password is too long. Please choose a new password which has between 4 and 20 characters.</p>';
elseif(!preg_match('`[0-9]`', $_POST['signup_password'])):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">The password must include numbers.</p>';
endif;
if(strlen($_POST['signup_username']) < 3):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">This username is too short. Please choose a new username which has between 3 and 20 characters.</p>';
elseif(strlen($_POST['signup_username']) > 20):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">This username is too long. Please choose a new username which has between 3 and 20 characters.</p>';
endif;
if(empty($_POST['signup_email']) || strlen($_POST['signup_email']) > 50 || preg_match("/^[a-z0-9_\.-]+@([a-z0-9]+([\-]+[a-z0-9]+)*\.)+[a-z]{2,7}$/i", $_POST['signup_email']) !== 1):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">Your e-mail address doesn\'t seem to be correct. Please enter a valid e-mail address.</p>';
endif;
if(!isset($_POST['signup_termsAndCondition']) || $_POST['signup_termsAndCondition'] !== '1'):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">Please confirm that you have accepted our Terms & Conditions. Afterwards, you may continue with your registration.</p>';
endif;
if($errorData === ''):
if($MySQLi->query('SELECT null FROM users WHERE Name = \'' .$_POST['signup_username'] . '\'')->num_rows > 0):
$errorData .= '<p class="singup_errorMessage signup_errorMessage">This username already exists. Please select another username.</p>';
else:
$sessionId = $Core::GenerateRandom(18, true, false);
if($MySQLi->query('INSERT INTO users (Email, Name, pwHash, Servers, sessionId) VALUES (\'' . $_POST['signup_email'] . '\', \'' . $_POST['signup_username'] . '\', \'' . md5($_POST['signup_password']) . '\', \'\', ' . $sessionId . ');')):
$userId = $MySQLi->insert_id;
$MySQLi->multi_query('INSERT INTO server_1_players (userId) VALUES (' . $userId . ');UPDATE users SET Servers = \'[{1:' . $MySQLi->insert_id . '}]\' WHERE ID = \'' . $userId . '\'');
$_SESSION['server1']['user']['sessionId'] = $sessionId;
$_SESSION['server1']['user']['email'] = $_POST['signup_email'];
header('Location: /indexInternal.es?action=internalCompanyChoose');
endif;
endif;
endif;
endif;
endif;
require GLOBALS . 'doc.html';
require GLOBALS . 'header.html';
require FILES . 'INDEX/header.html';
require GLOBALS . 'sajax.html';
require GLOBALS . 'xajax.html';
require GLOBALS . 'headerEndJS.html';
require FILES . 'INDEX/jsSubmit.html';
echo '</head>';
require FILES . 'INDEX/bodyHeader.html';
require FILES . 'INDEX/body.html';
require FILES . 'INDEX/bodyFooter.html';
?>
Help me 
|
You have PHP 5.4?
|
|
|
05/15/2013, 19:53
|
#52
|
elite*gold: 0
Join Date: Oct 2012
Posts: 267
Received Thanks: 29
|
I honestly do not even know what it is.
|
|
|
05/15/2013, 20:54
|
#53
|
elite*gold: 0
Join Date: Oct 2010
Posts: 41
Received Thanks: 1
|
hi.
i have this error:
( ! ) Parse error: syntax error, unexpected '[' in C:\wampp\KERNEL-DOCMS\Init.php on line 16
Call Stack
# Time Memory Function Location
1 0.0009 412704 {main}( ) ..\index.php:0
What's the problem ? :/ i run this with WampServer.
|
|
|
05/15/2013, 21:27
|
#54
|
elite*gold: 0
Join Date: Sep 2012
Posts: 24
Received Thanks: 1
|
fix KERNEL-DOCMS/Server.cfg
@password=' '
please create video tutorial edit and run client and server
my skype a--shrec--
|
|
|
05/16/2013, 00:07
|
#55
|
elite*gold: 1
Join Date: Feb 2013
Posts: 175
Received Thanks: 16
|
pls make a tutorial
|
|
|
05/16/2013, 09:50
|
#56
|
elite*gold: 0
Join Date: Mar 2010
Posts: 614
Received Thanks: 452
|
there is an error in init.php. look
Parse error: syntax error, unexpected '[' in C:\xampp\KERNEL-DOCMS\Init.php on line 16
|
|
|
05/16/2013, 12:20
|
#57
|
elite*gold: 0
Join Date: Apr 2012
Posts: 37
Received Thanks: 177
|
Quote:
Originally Posted by dushkov
hi.
i have this error:
( ! ) Parse error: syntax error, unexpected '[' in C:\wampp\KERNEL-DOCMS\Init.php on line 16
Call Stack
# Time Memory Function Location
1 0.0009 412704 {main}( ) ..\index.php:0
What's the problem ? :/ i run this with WampServer.
|
Quote:
Originally Posted by xkekko95x
there is an error in init.php. look
Parse error: syntax error, unexpected '[' in C:\xampp\KERNEL-DOCMS\Init.php on line 16
|
You need PHP 5.4 in your server.
|
|
|
05/16/2013, 12:29
|
#58
|
elite*gold: 0
Join Date: Mar 2010
Posts: 614
Received Thanks: 452
|
Quote:
Originally Posted by Xdr1
You need PHP 5.4 in your server.
|
i resolved it.. now i have another proble for java when i start the game
i fixed register page... but game now start
|
|
|
05/16/2013, 12:50
|
#59
|
elite*gold: 0
Join Date: Apr 2012
Posts: 37
Received Thanks: 177
|
Quote:
Originally Posted by xkekko95x
i resolved it.. now i have another proble for java when i start the game
i fixed register page... but game now start
|
The game is not developed in Java LOL
|
|
|
05/16/2013, 12:50
|
#60
|
elite*gold: 0
Join Date: Jul 2012
Posts: 161
Received Thanks: 126
|
I downloaded the GalaxyGates of darkorbit official, then I removed all the unnecessary stuff and stayed only what you see in the image.
Image:
Now some of you have to help me make it work.
My skype is: the_black_end_white
|
|
|
 |
|
Similar Threads
|
[WTS] 16x Summoner 13x Azure 15x Azure 15x Aloken
04/19/2012 - Dekaron Trading - 13 Replies
Selling 164 Summoner, 3 Inventorys, Pet, 2 Costumes, Clean name, Naked, Non-hacked. All infos - 50€ negotiable (pm me for infos)
Selling 152 Azure, 1 Costume, naked, All infos - 20€ (pm me for infos) - SOLD
Selling 155 Aloken, 2 Costumes, 4 Inventorys, Naked, All infos - 35€ (pm me for infos) - THIS ACCOUNT GOT BAGI LEVEL 101 with 14 DAYS LEFT OF 100% AMMY, AND FULL L3 GEAR +0
Selling 131 Azure, 1 Costume, Naked, 15€, All infos - (pm me for infos)
Taking only Paypal payments! PM
...
|
WTS FULL HELION AZURE SET +7 102-117 + azure lvl 121
09/01/2011 - Dekaron Trading - 2 Replies
Today's items are:
magic asca helmet +7 4 x +62
DN asca armor +7 4 x +62
magic asca pants +7
magic x 2 asca boots +7
DN 115 axes +7 (3 x 5% ice,3 x 5% light)
Magic sword lvl 115 +7
Magic shield lvl 117 +7
I am only looking for helion dil.
|
WTS 146 Azure Knight Siz Server
12/25/2010 - Dekaron Trading - 3 Replies
-146
-1 extra backpack
-formal costume
-full 0 ozer set
-crit ring
-comes with registered email and secret answer
looking for a 130+9 DN tb for the account
we will use middle man for the trade
|
new server called Azure
06/22/2009 - Dekaron Private Server - 5 Replies
hi everyone we made a new server come to the server and help us test the server its at here
and you can register there too so come and play with us
WE have the new class in the server
download the client and register
rates 500X, we are going to change the ip soon, idont much about the server i am helping out the server go check out the server and you will see .
|
All times are GMT +1. The time now is 19:39.
|
|