• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook pagefor updates, or we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.)

[RELEASE] Pokemon Helios

Newbie Spellweaver
Joined
Jun 18, 2014
Messages
45
Reaction score
3
Try debug your register.php
what u mean??? can explane me?

<?phprequire_once 'config.php';
require_once 'functions.php';
require_once 'recaptchalib.php';


$privatekey = "6LcoouYSAAAAAPqMC4MyP8wRieWRNvfGoJw7-LdJ";
$publickey = "6LcoouYSAAAAAGdxiM-0G2jv8BHKCOFqArqz0gwQ";


if (isLoggedIn()) { redirect('membersarea.php'); }


define('DEFAULT_STARTER_LEVEL', 15);
define('DEFAULT_STARTER_COLUMNS', 4);
define('DEFAULT_USER_MONEY', 20000);


$pokemonNames = array(
'Bulbasaur' , 'Charmander' , 'Squirtle' , 'Chikorita' ,
'Cyndaquil' , 'Totodile' , 'Treecko' , 'Torchic' ,
'Mudkip' , 'Turtwig' , 'Chimchar' , 'Piplup' ,
'Snivy' , 'Tepig' , 'Oshawott' , 'Eevee'
);


$username = isset( $_POST['username'] ) ? $_POST['username'] : '' ;
$email = isset( $_POST['email'] ) ? $_POST['email'] : '' ;
$password = isset( $_POST['password'] ) ? $_POST['password'] : '' ;
$password2 = isset( $_POST['password2'] ) ? $_POST['password2'] : '' ;
$pokemon = isset( $_POST['pokemon'] ) ? $_POST['pokemon'] : '' ;


$username = trim($username);
$errorMessage = '';


if(count($_POST) > 0) {


$sqlUsername = cleanSql( trim($username) );
$sqlPassword = sha1($password);
$sqlEmail = cleanSql($email);
$sqlPokemon = cleanSql($pokemon);
$time = time();
$errors = array();




if( $username == '' ) {
$errors[] = $lang['register_empty_username'];
}

if( strlen($username) < 5){
$errors[] = $lang['register_contain_username'];
}

if( strlen($username) > 40){
$errors[] = $lang['register_contain_username_max'];
}


if( !in_array($pokemon, $pokemonNames) ) {
$errors[] = $lang['register_not_starter'];
}

if($password != $password2) {
$errors[] = $lang['register_match_pwd'];
}

if(strlen($password) <= 6) {
$errors[] = $lang['register_contain_pwd'];
}

if(filter_var($email, FILTER_VALIDATE_EMAIL) === false) {
$errors[] = $lang['register_valid_email'];
}

if (isset($_POST["recaptcha_challenge_field"]) && isset($_POST["recaptcha_response_field"])) {
$resp = recaptcha_check_answer(
$privatekey,
$_SERVER["REMOTE_ADDR"],
$_POST["recaptcha_challenge_field"],
$_POST["recaptcha_response_field"]
);

if(!$resp->is_valid) {
$errors[] = $lang['register_captcha_wrong'];
}
} else {
$errors[] = $lang['register_captcha_missing'];
}

$query = mysql_query("SELECT `id` FROM `users` WHERE `username`='{$sqlUsername}' LIMIT 3");
if(mysql_num_rows($query) == 3) {
$errors[] = $lang['register_taken_username'];
}

if (isset($_SERVER['HTTP_X_FORWARDED_FOR']) && $_SERVER['HTTP_X_FORWARDED_FOR'] != '') {
$ip = cleanSql($_SERVER['HTTP_X_FORWARDED_FOR']);
} else {
$ip = cleanSql($_SERVER['REMOTE_ADDR']);
}

if (isset($_GET['ref'])) {
$refId = (int) $_GET['ref'];
$query = mysql_query("SELECT * FROM `users` WHERE `id`='{$refId}'");
$refRow = mysql_fetch_assoc($query);
if ($refRow['ip'] == $ip) {
$errors[] = $lang['register_match_ip'];
}
}

$oneDayAgo = time() - (60*60*24);
$query = mysql_query("SELECT `id` FROM `users` WHERE `ip`='{$ip}' AND `signup_date`>='{$oneDayAgo}' LIMIT 1");
if(mysql_num_rows($query) == 1) {
$errors[] = $lang['register_already_ip'];
}



/* if(mysql_num_rows(mysql_query("SELECT id FROM users WHERE ip = '{$ip}'")) != 0) {
include '_header.php';
echo '<div class="ip-error">Sorry, but there\'s already an account registered under this IP. <br />
If you wish to reclaim this account or delete it, please contact one of our administrators.</div>';
die();
} */


if (count($errors) > 0) {
$errorMessage = '<p style="top: 0; margin: 2px 0;" class="error">'.implode('</p><p style="top: 0; margin: 2px 0;" class="error">', $errors).'</p>';
} else {

// make them a user account
$money = DEFAULT_USER_MONEY;
$refId = isset($_GET['ref']) ? (int) $_GET['ref'] : 0 ;
mysql_query("
INSERT INTO `users` (
`username`, `password`, `email`,`signup_date`, `money`, `ip`, `register_ip`, `ref_id`
) VALUES (
'{$sqlUsername}', '{$sqlPassword}', '{$sqlEmail}', '{$time}', '{$money}', '{$ip}', '{$ip}', '$refId')
");
$uid = mysql_insert_id();


$pokeQuery = mysql_query("SELECT * FROM `pokemon` WHERE `name`='{$pokemon}'");
$pokemonRow = mysql_fetch_assoc($pokeQuery);
$level = DEFAULT_STARTER_LEVEL;
$exp = levelToExp($level);

// give them a pokemon
$query = mysql_query("
INSERT INTO `user_pokemon` (
`uid`, `name`, `level`, `exp`, `move1`, `move2`, `move3`, `move4`
) VALUES (
'{$uid}', '{$pokemon}', '{$level}', '{$exp}', '{$pokemonRow['move1']}', '{$pokemonRow['move2']}', '{$pokemonRow['move3']}', '{$pokemonRow['move4']}'
)
");
$pid = mysql_insert_id();

// put the pokemon in the first slot
mysql_query("UPDATE `users` SET `poke1`='{$pid}' WHERE `id`='{$uid}'");


//give them some items
mysql_query("
INSERT INTO `user_items` (
`uid`, `poke_ball`, `great_ball`, `ultra_ball`, `master_ball`,
`potion`, `super_potion`, `hyper_potion`, `burn_heal`, `full_heal`,
`parlyz_heal`, `antidote`, `awakening`, `ice_heal`, `dawn_stone`,
`dusk_stone`, `fire_stone`, `leaf_stone`, `moon_stone`, `oval_stone`,
`shiny_stone`, `sun_stone`, `thunder_stone`, `water_stone`
) VALUES (
'{$uid}', '20', '15', '10', '5', '20', '10', '5',
'5', '5', '5', '5', '5', '5', '5', '5', '5',
'5', '5', '5', '5', '5', '5', '5'
);
");

if (isset($_GET['ref'])) {
$refId = (int) $_GET['ref'];
mysql_query("UPDATE `users` SET `Referals`=`Referals`+1 WHERE `id`='{$refId}'");
}

$_SESSION['register'] = '<div class="success">'.$lang['register_success'].'</div>';

redirect('login.php');
}
}


$starterCells = array();
foreach ($pokemonNames as $name) {
$starterCells[] = '
<label>
<img src="http://forum.ragezone.com/images/pokemon/'.$name.'.png" alt="'.$name.'" /><br /><br />
<input type="radio" name="pokemon" value="'.$name.'" />
</label>
';
}


include '_header.php';
?>


<div class="content">
<div class="wrap">
<table>
<tr>
<td>
<div class="poke three"></div>

<div class="register">

<?=$errorMessage?>

<div class="title" align="center"><?=$lang['register_title']?></div>

<form action="" method="post" autocomplete="off">
<table style=" text-align: left;">
<tr class="block">
<th><?=$lang['register_username']?></th>
<td><input type="text" name="username" value="<?=htmlentities($username, ENT_QUOTES, 'UTF-8')?>" autofocus="on" /></td>
</tr>

<tr class="block">
<th><?=$lang['register_pwd']?></th>
<td><input type="password" name="password" /></td>
</tr>

<tr class="block">
<th><?=$lang['register_pwd_again']?></th>
<td><input type="password" name="password2" /></td>
</tr>

<tr class="block">
<th><?=$lang['register_email']?></th>
<td><input type="text" name="email" value="<?=htmlentities($email, ENT_QUOTES, 'UTF-8')?>" /></td>
</tr>

<tr class="block">
<th colspan="2" style="vertical-align: top;"><?=$lang['register_starter']?></th>
</tr>

<tr class="block">
<td colspan="2">
<table class="table" style="text-align: center">
<?=cellsToRows($starterCells, DEFAULT_STARTER_COLUMNS)?>
</table>
</td>
</tr>

<tr class="block">
<th colspan="2"><?=$lang['register_captcha']?></th>
</tr>

<tr>
<td colspan="2"><?php echo recaptcha_get_html($publickey); ?></td>
</tr>

<tr class="block">
<td colspan="2"><center><input type="submit" value="<?=$lang['register_signup']?>" name="submit" class="button"></center></td>
</tr>
</table>
</form>
</div>
<? include '_footer.php'; ?>
</td>
</tr>
</table>
</div>
</div>
 
Banned
Banned
Joined
Jul 19, 2016
Messages
29
Reaction score
1
Add this code on your register.php code after that you will see the problem how to fix it

<?php
ini_set('display_errors', 'On');
error_reporting(E_ALL);

 
Newbie Spellweaver
Joined
Jun 18, 2014
Messages
45
Reaction score
3
Add this code on your register.php code after that you will see the problem how to fix it


Parse error: syntax error, unexpected '<' in /home/a9834343/public_html/register.php on line 5

AGAIN ERROR I ADDED

Could not open socket
 
Banned
Banned
Joined
Jul 19, 2016
Messages
29
Reaction score
1
Parse error: syntax error, unexpected '<' in /home/a9834343/public_html/register.php on line 5

AGAIN ERROR I ADDED

​What is your line 5 on your register.php?Can you post here.
 
Newbie Spellweaver
Joined
Jun 18, 2014
Messages
45
Reaction score
3
​What is your line 5 on your register.php?Can you post here.
<?phprequire_once 'config.php';
require_once 'functions.php';
require_once 'recaptchalib.php';


$privatekey = "6LcoouYSAAAAAPqMC4MyP8wRieWRNvfGoJw7-LdJ";
$publickey = "6LcoouYSAAAAAGdxiM-0G2jv8BHKCOFqArqz0gwQ";


if (isLoggedIn()) { redirect('membersarea.php'); }


define('DEFAULT_STARTER_LEVEL', 15);
define('DEFAULT_STARTER_COLUMNS', 4);
define('DEFAULT_USER_MONEY', 20000);


$pokemonNames = array(
'Bulbasaur' , 'Charmander' , 'Squirtle' , 'Chikorita' ,
'Cyndaquil' , 'Totodile' , 'Treecko' , 'Torchic' ,
'Mudkip' , 'Turtwig' , 'Chimchar' , 'Piplup' ,
'Snivy' , 'Tepig' , 'Oshawott' , 'Eevee'
);


$username = isset( $_POST['username'] ) ? $_POST['username'] : '' ;
$email = isset( $_POST['email'] ) ? $_POST['email'] : '' ;
$password = isset( $_POST['password'] ) ? $_POST['password'] : '' ;
$password2 = isset( $_POST['password2'] ) ? $_POST['password2'] : '' ;
$pokemon = isset( $_POST['pokemon'] ) ? $_POST['pokemon'] : '' ;


$username = trim($username);
$errorMessage = '';


if(count($_POST) > 0) {


$sqlUsername = cleanSql( trim($username) );
$sqlPassword = sha1($password);
$sqlEmail = cleanSql($email);
$sqlPokemon = cleanSql($pokemon);
$time = time();
$errors = array();




if( $username == '' ) {
$errors[] = $lang['register_empty_username'];
}

if( strlen($username) < 5){
$errors[] = $lang['register_contain_username'];
}

if( strlen($username) > 40){
$errors[] = $lang['register_contain_username_max'];
}


if( !in_array($pokemon, $pokemonNames) ) {
$errors[] = $lang['register_not_starter'];
}

if($password != $password2) {
$errors[] = $lang['register_match_pwd'];
}

if(strlen($password) <= 6) {
$errors[] = $lang['register_contain_pwd'];
}

if(filter_var($email, FILTER_VALIDATE_EMAIL) === false) {
$errors[] = $lang['register_valid_email'];
}

if (isset($_POST["recaptcha_challenge_field"]) && isset($_POST["recaptcha_response_field"])) {
$resp = recaptcha_check_answer(
$privatekey,
$_SERVER["REMOTE_ADDR"],
$_POST["recaptcha_challenge_field"],
$_POST["recaptcha_response_field"]
);

if(!$resp->is_valid) {
$errors[] = $lang['register_captcha_wrong'];
}
} else {
$errors[] = $lang['register_captcha_missing'];
}

$query = mysql_query("SELECT `id` FROM `users` WHERE `username`='{$sqlUsername}' LIMIT 3");
if(mysql_num_rows($query) == 3) {
$errors[] = $lang['register_taken_username'];
}

if (isset($_SERVER['HTTP_X_FORWARDED_FOR']) && $_SERVER['HTTP_X_FORWARDED_FOR'] != '') {
$ip = cleanSql($_SERVER['HTTP_X_FORWARDED_FOR']);
} else {
$ip = cleanSql($_SERVER['REMOTE_ADDR']);
}

if (isset($_GET['ref'])) {
$refId = (int) $_GET['ref'];
$query = mysql_query("SELECT * FROM `users` WHERE `id`='{$refId}'");
$refRow = mysql_fetch_assoc($query);
if ($refRow['ip'] == $ip) {
$errors[] = $lang['register_match_ip'];
}
}

$oneDayAgo = time() - (60*60*24);
$query = mysql_query("SELECT `id` FROM `users` WHERE `ip`='{$ip}' AND `signup_date`>='{$oneDayAgo}' LIMIT 1");
if(mysql_num_rows($query) == 1) {
$errors[] = $lang['register_already_ip'];
}



/* if(mysql_num_rows(mysql_query("SELECT id FROM users WHERE ip = '{$ip}'")) != 0) {
include '_header.php';
echo '<div class="ip-error">Sorry, but there\'s already an account registered under this IP. <br />
If you wish to reclaim this account or delete it, please contact one of our administrators.</div>';
die();
} */


if (count($errors) > 0) {
$errorMessage = '<p style="top: 0; margin: 2px 0;" class="error">'.implode('</p><p style="top: 0; margin: 2px 0;" class="error">', $errors).'</p>';
} else {

// make them a user account
$money = DEFAULT_USER_MONEY;
$refId = isset($_GET['ref']) ? (int) $_GET['ref'] : 0 ;
mysql_query("
INSERT INTO `users` (
`username`, `password`, `email`,`signup_date`, `money`, `ip`, `register_ip`, `ref_id`
) VALUES (
'{$sqlUsername}', '{$sqlPassword}', '{$sqlEmail}', '{$time}', '{$money}', '{$ip}', '{$ip}', '$refId')
");
$uid = mysql_insert_id();


$pokeQuery = mysql_query("SELECT * FROM `pokemon` WHERE `name`='{$pokemon}'");
$pokemonRow = mysql_fetch_assoc($pokeQuery);
$level = DEFAULT_STARTER_LEVEL;
$exp = levelToExp($level);

// give them a pokemon
$query = mysql_query("
INSERT INTO `user_pokemon` (
`uid`, `name`, `level`, `exp`, `move1`, `move2`, `move3`, `move4`
) VALUES (
'{$uid}', '{$pokemon}', '{$level}', '{$exp}', '{$pokemonRow['move1']}', '{$pokemonRow['move2']}', '{$pokemonRow['move3']}', '{$pokemonRow['move4']}'
)
");
$pid = mysql_insert_id();

// put the pokemon in the first slot
mysql_query("UPDATE `users` SET `poke1`='{$pid}' WHERE `id`='{$uid}'");


//give them some items
mysql_query("
INSERT INTO `user_items` (
`uid`, `poke_ball`, `great_ball`, `ultra_ball`, `master_ball`,
`potion`, `super_potion`, `hyper_potion`, `burn_heal`, `full_heal`,
`parlyz_heal`, `antidote`, `awakening`, `ice_heal`, `dawn_stone`,
`dusk_stone`, `fire_stone`, `leaf_stone`, `moon_stone`, `oval_stone`,
`shiny_stone`, `sun_stone`, `thunder_stone`, `water_stone`
) VALUES (
'{$uid}', '20', '15', '10', '5', '20', '10', '5',
'5', '5', '5', '5', '5', '5', '5', '5', '5',
'5', '5', '5', '5', '5', '5', '5'
);
");

if (isset($_GET['ref'])) {
$refId = (int) $_GET['ref'];
mysql_query("UPDATE `users` SET `Referals`=`Referals`+1 WHERE `id`='{$refId}'");
}

$_SESSION['register'] = '<div class="success">'.$lang['register_success'].'</div>';

redirect('login.php');
}
}


$starterCells = array();
foreach ($pokemonNames as $name) {
$starterCells[] = '
<label>
<img src="http://forum.ragezone.com/images/pokemon/'.$name.'.png" alt="'.$name.'" /><br /><br />
<input type="radio" name="pokemon" value="'.$name.'" />
</label>
';
}


include '_header.php';
?>


<div class="content">
<div class="wrap">
<table>
<tr>
<td>
<div class="poke three"></div>

<div class="register">

<?=$errorMessage?>

<div class="title" align="center"><?=$lang['register_title']?></div>

<form action="" method="post" autocomplete="off">
<table style=" text-align: left;">
<tr class="block">
<th><?=$lang['register_username']?></th>
<td><input type="text" name="username" value="<?=htmlentities($username, ENT_QUOTES, 'UTF-8')?>" autofocus="on" /></td>
</tr>

<tr class="block">
<th><?=$lang['register_pwd']?></th>
<td><input type="password" name="password" /></td>
</tr>

<tr class="block">
<th><?=$lang['register_pwd_again']?></th>
<td><input type="password" name="password2" /></td>
</tr>

<tr class="block">
<th><?=$lang['register_email']?></th>
<td><input type="text" name="email" value="<?=htmlentities($email, ENT_QUOTES, 'UTF-8')?>" /></td>
</tr>

<tr class="block">
<th colspan="2" style="vertical-align: top;"><?=$lang['register_starter']?></th>
</tr>

<tr class="block">
<td colspan="2">
<table class="table" style="text-align: center">
<?=cellsToRows($starterCells, DEFAULT_STARTER_COLUMNS)?>
</table>
</td>
</tr>

<tr class="block">
<th colspan="2"><?=$lang['register_captcha']?></th>
</tr>

<tr>
<td colspan="2"><?php echo recaptcha_get_html($publickey); ?></td>
</tr>

<tr class="block">
<td colspan="2"><center><input type="submit" value="<?=$lang['register_signup']?>" name="submit" class="button"></center></td>
</tr>
</table>
</form>
</div>
<? include '_footer.php'; ?>
</td>
</tr>
</table>
</div>
</div>
<?php
ini_set('display_errors', 'On');
error_reporting(E_ALL);

Could not open socket :/
 
Newbie Spellweaver
Joined
Jun 18, 2014
Messages
45
Reaction score
3
Re: [RELEASE] Pokemon Helios[Pkmnhelios.net] &amp; Pokemon Dusk[pkmndusk.in]

​Check your config.php and function.php
can add my skype please morgan_hacker



<?php@session_save_path("tmp");
@session_start();


error_reporting(0);
/*
We log to the DataBase
For new connection, Replace -
database_user with db username
password with db password
database_name with db name
for any other query, contact @ ziddle.net
*/
$connection = @mysql_connect('server9.000webhost.com', 'root', 'root');


if (!$connection) {
include '_header.php';
echo '<div class="error">Error connecting to the database 1!</div>';
//if (isset($_SESSION['admin']) && $_SESSION['admin']==1) { echo mysql_error(); }
include '_footer.php';
die();
}


$dbSelected = mysql_select_db('pokemon');


if (!$dbSelected) {
include '_header.php';
echo '<div class="error">Error connecting to the database 2!</div>';
//if (isset($_SESSION['admin']) && $_SESSION['admin']==1) { echo mysql_error(); }
include '_footer.php';
die();
}


// asdd stuffz
$filename = end(explode('/', $_SERVER["SCRIPT_NAME"]));


if ($filename != 'battle.php' && $filename != 'battle2.php' && $filename != 'map_users.php') {
unset($_SESSION['battle']);
}


if (isset($_SESSION['lastseen']) && (time() - $_SESSION['lastseen'] > 1800)) {
// last request was more than 30 minutes ago
session_unset(); // unset $_SESSION variable for the run-time
session_destroy(); // destroy session data in storage
} else {
$_SESSION['lastseen'] = time();
}


if (isset($_SESSION['userid'])) {
$uid = (int) $_SESSION['userid'];

// Check if they are banned
$banquery = mysql_query("SELECT `banned` FROM `users` WHERE `id`='{$uid}'");
$banrow = mysql_fetch_assoc($banquery);
if ($banrow['banned'] == 1 && $filename != 'logout.php') {
header('Location: logout.php');
die();
}

$time = $_SESSION['lastseen'];
//$id = (int) $_SESSION['userid'];
mysql_query("UPDATE `users` SET `lastseen`='{$time}' WHERE `id`='{$uid}' LIMIT 1");

//$selectTime = mysql_fecth_array(mysql_query("SELECT `lastseen` FROM `users` WHERE `id` = '{$uid}'"));
//$_SESSION['lastseen'] =
}


// Basic check for SQL injection
if (
stripos($_SERVER['QUERY_STRING'], 'UNION') !== false ||
stripos($_SERVER['QUERY_STRING'], 'SELECT') !== false ||
stripos($_SERVER['QUERY_STRING'], 'SCRIPT') !== false
) {
if (
isset($_SERVER['HTTP_X_FORWARDED_FOR']) &&
$_SERVER['HTTP_X_FORWARDED_FOR'] != ''
) {
$ip = cleanSql($_SERVER['HTTP_X_FORWARDED_FOR']);
} else {
$ip = cleanSql($_SERVER['REMOTE_ADDR']);
}
$fh = @fopen('sqli_attempts.txt', 'a') or die();
fwrite($fh, $ip . ' ' . $_SERVER['SCRIPT_NAME'] . '?' . urldecode($_SERVER['QUERY_STRING']) . PHP_EOL);
fclose($fh);
}


if (!function_exists('stripslashes_deep')) {
function stripslashes_deep($value) {
$value = is_array($value) ? array_map('stripslashes_deep', $value) : stripslashes($value);
return $value;
}
}


// Stop Magic Quotes
if (get_magic_quotes_gpc()) {
$_POST = stripslashes_deep($_POST);
$_GET = stripslashes_deep($_GET);
}




// If some important updates
if (!isset($_SESSION['admin']) || $_SESSION['admin'] != 1) {
/* include 'updates.html';
die();*/
}


/*
if ($_SERVER['REMOTE_ADDR'] != '212.93.114.91') {
include 'updates.html';
die();
}*/


$allowed_lang = array('en', 'es', 'ph', 'lv');


if(isset($_GET['lang']) === true && in_array($_GET['lang'], $allowed_lang) === true) {
$_SESSION['lang'] = $_GET['lang'];
} else if(isset($_SESSION['lang']) === false){
$_SESSION['lang'] = 'en';
}


include 'lang/' . $_SESSION['lang'] . '.php';


define('GOT_CONFIG', true);


?>

my config is this have somthig worng?
 
Newbie Spellweaver
Joined
Jul 18, 2016
Messages
5
Reaction score
0
bad file full version pokemon helios could you give me the download link
 
Last edited:
Newbie Spellweaver
Joined
Dec 20, 2014
Messages
15
Reaction score
1
Seems this source still has some bugs and need some more work. (Ex: Battle with EVs and IVs etc)
Anyone need any help regarding this source, Kindly contact me on Skype - Cruzer922Thank You.
 
Newbie Spellweaver
Joined
Dec 20, 2014
Messages
15
Reaction score
1
Reup Pokemon Dusk PLS
Better version of Pokemon Helios is already up on another thread.Pokemon Dusk is still live, you can check the game @ although its source is no longer available. :) If you really want it's source I can make one of its old version available at GitHub. Follow me on Github -
 
Newbie Spellweaver
Joined
Nov 19, 2006
Messages
10
Reaction score
0
Can someone explain to me how I upload the bd of the link in myphpadmin of my webhosting?
gen1us - [RELEASE] Pokemon Helios - RaGEZONE Forums
gen1us - [RELEASE] Pokemon Helios - RaGEZONE Forums


gen1us - [RELEASE] Pokemon Helios - RaGEZONE Forums

gen1us - [RELEASE] Pokemon Helios - RaGEZONE Forums


after being touching and I think I uploaded the database to the host it appears like this

gen1us - [RELEASE] Pokemon Helios - RaGEZONE Forums
 
Last edited:
Newbie Spellweaver
Joined
Jan 17, 2016
Messages
56
Reaction score
0
Better version of Pokemon Helios is already up on another thread.Pokemon Dusk is still live, you can check the game @ although its source is no longer available. :) If you really want it's source I can make one of its old version available at GitHub. Follow me on Github -

would be good if you can do it, i want to have that source.
 
Moderator
Staff member
Moderator
Joined
Jan 13, 2013
Messages
1,186
Reaction score
360
Can someone explain to me how I upload the bd of the link in myphpadmin of my webhosting?
gen1us - [RELEASE] Pokemon Helios - RaGEZONE Forums
gen1us - [RELEASE] Pokemon Helios - RaGEZONE Forums


gen1us - [RELEASE] Pokemon Helios - RaGEZONE Forums

gen1us - [RELEASE] Pokemon Helios - RaGEZONE Forums


after being touching and I think I uploaded the database to the host it appears like this

gen1us - [RELEASE] Pokemon Helios - RaGEZONE Forums

I was wondering whether you configured you server configuration files properly with the correct username, host, password and database.
 
Back
Top