This is the ENG version from Pokemon Sky ..
The ENG Translation is in 70%
New Link!:
pokemon sky english
Screenshots:
![]()
This is the ENG version from Pokemon Sky ..
The ENG Translation is in 70%
New Link!:
pokemon sky english
Screenshots:
![]()
Last edited by Lucila; 20-01-17 at 07:41 AM.
This is pretty handy thank you for sharing this for everyone!
Thanks so much for release
But I have a problem I'm trying to load the DB
This is what appears to me:
CREATE TABLE `2014` (
`id` INT (11) NOT NULL AUTO_INCREMENT,
`name` VARCHAR (30) NOT NULL,
`desc` TEXT NOT NULL,
`image` VARCHAR (100) CHARACTER SET latin1 NOT NULL,
`needTwo` INT (11) NOT NULL,
`needZero` INT (11) NOT NULL,
`needOne` INT (11) NOT NULL,
`needFour` INT (11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE = INNODB AUTO_INCREMENT = 7 DEFAULT CHARSET = utf8;
Tnx 4The Help
Forbidden
You don't have permission to access /pokemonskyenglish/index.php on this server.
Apache/2.2.8 (Win32) PHP/5.2.6 Server at localhost Port 80
help me...
[QUOTE = Lucila; 8492019] ".htaccess" dosyasını silin [/ QUOTE]
I delete the file. But the same error
.htaccess need have this inside
in "include" folder, edit the "config.php" file..Code:php_flag display_errors off php_value error_reporting 0 order deny,allow php_flag display_startup_errors on php_flag display_errors on php_flag html_errors on
$dbhost = "localhost"; //Host, most likely localhost
$dblogin = "root"; //MySQL account username, default = root
$dbpassword = ""; //Password for MySQL account
$dbdatabase = "pokemon"; //Database
Edit this lines with your credentials
I use APPSERV Maybe it's the problem?
I solved the problem. I delete the .htaccess file in the folder and the problem was solved sky just do not get in the game.
The source is by Mursak (more like 30% eng). It still has the <?php= bug to fix it you have to replace every '<?php=' with '<?php '.
ex. <?php=$r will be <?php $r
Also I replace ajax_call folder with develix because Mursak version of ajax_call never work for me. The only other bug that i know of that is left is attack were it stuck on loading on your turn.
More info here:
https://forum.ragezone.com/f705/rele...ml#post8370986
Here my include/config.php (I update the code to what php doc has for mysql):
Code:<?php //error_reporting(E_ALL ^ E_DEPRECATED); error_reporting(0); $dbhost = "192.168.1.51"; //Host, most likely localhost $dblogin = "user"; //MySQL account username, default = root $dbpassword = "pass"; //Password for MySQL account $dbdatabase = "pokemon"; //Database //Creates connection variable & tries to connect $connection = mysql_connect($dbhost, $dblogin, $dbpassword); // @Mysql_select_db($dbdatabase); if (!$connection) { die('Not connected : ' . mysql_error()); } $db_selected = mysql_select_db($dbdatabase, $connection); if(!$db_selected) die ("Configure the SQL connection at includes/config.php ".mysql_error()); include('site_names.php'); /* Warning, this code might be vunerable because its using MySQL code which is outdated and the code isn't best either */ ?>