Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Installation Pw server v 1.1.6 - 1.5.4

Joined
Nov 18, 2013
Messages
9
Reaction score
0
131_cpackage.meiguo.tar.gz

The Link failed , Please share again ,Thanks.



In regards to your 1.3.1 v10 files, they are a different version. The elements.data file used in your
release is v7, not v10. Also, the gs file size is 135,643,138 bytes when it should be 137,937,435 bytes.
You may want to try and properly identify what the actual release is that you have. The original
release of 1.3.1 v10 is linked below so you can update, as needed.

Original release:

UPDATE: Examining the files, your version 1.3.1 v10 is actually 1.2.6 v7.





131_cpackage.meiguo.tar.gz

The Link failed , Please share again ,Thanks.


 
Initiate Mage
Joined
Dec 18, 2020
Messages
2
Reaction score
0
Need the location where the folders or PHAT is, whatever but without the location it will never work
example

#!/bin/sh
PW_PATH=/home
if [ ! -d $PW_PATH/logs ]; then
mkdir $PW_PATH/logs
fi
echo "${GREEN}::: iWeb :::${NORMAL}"
/usr/local/jakarta/bin/startup.sh
sleep 5
echo "${GREEN}::: Ready :::${NORMAL}"
echo ""
echo "${GREEN}::: Log Service :::${NORMAL}"
cd $PW_PATH/logservice; ./logservice logservice.conf >$PW_PATH/logs/logservice.log &
sleep 3
echo "${GREEN}::: Ready :::${NORMAL}"

it is an example
without the right path of the files it will not work
 
Initiate Mage
Joined
Apr 13, 2021
Messages
22
Reaction score
1
I tried to install every single version. but I didn't find any client. where can we download all client that's compatible in every versions?
 
Initiate Mage
Joined
Apr 13, 2021
Messages
22
Reaction score
1
Clients for: (english versions)
1.1.6 v6
1.2.6 v7
1.3.1 v10
1.4.2 v27
1.4.2 v29
1.4.4 v60
1.4.5 v63
1.4.5 v69
1.4.6 v70
1.4.7 v80
1.5.0 v88
1.5.1 v101
thank you in advance...:kiss:
 
Joined
Jul 26, 2011
Messages
2,030
Reaction score
396
1.1.6 I've never seen, v7 I believe is the MY-en client? 1.4.2 should be around somewhere it's v404 and you can patch all the way up to 1.5.1 v101 from 1.4.5 v62
 
Last edited:
Initiate Mage
Joined
Jul 18, 2022
Messages
6
Reaction score
0
SQL Error , Register Page error

Debian 7 - 8

qdVw0bk - Installation Pw server v 1.1.6 - 1.5.4 - RaGEZONE Forums


Debian 7

KQ7q2Tz - Installation Pw server v 1.1.6 - 1.5.4 - RaGEZONE Forums


Debian 8

LWlecrV - Installation Pw server v 1.1.6 - 1.5.4 - RaGEZONE Forums

Code:
[B][COLOR=#666666]wget -O - "http://pwbash.ddns.net/Server/pwbash.sh" | bash [/COLOR][/B]
Please Help

anyone can help me to fix this ?
i've installed PW1.5.4 server on debian 8

Could not connect to MySQL."); //Connects to your MySQL server using the parameters you specified above. MySQL_Select_Db($mysqldb, $Link) or die ("Database ".$mysqldb." does not exists."); //Connects to the MySQL database you specified above. $Login = $_POST['login']; $Pass = $_POST['passwd']; $Repass = $_POST['repasswd']; $Email = $_POST['email']; //The above grabs the information entered in the form and puts it to PHP variables. $pass = $_POST['idnumber']; $ip = $_POST['$ip']; $Login = mysql_real_escape_string(StrToLower(Trim($Login))); $Pass = mysql_real_escape_string(StrToLower(Trim($Pass))); $Repass = mysql_real_escape_string(StrToLower(Trim($Repass))); $Email = mysql_real_escape_string(Trim($Email)); //The above strips the information into lower case and adds SQL inject protection. $idnumber = mysql_real_escape_string(StrToLower(Trim($Pass))); $ip = $_SERVER['REMOTE_ADDR']; if (empty($Login) || empty($Pass) || empty($Repass) || empty($Email)) //Checks to make sure all the fields have been entered. { echo "Please complete all fields.
"; //If the fields haven't been entered, display this message. } else { $Result = MySQL_Query("SELECT name FROM users WHERE name='$Login'") or ("Can't execute username check."); //Checks the entered username against the database for a match. if (MySQL_Num_Rows($Result)) { echo "Username ".$Login." has already been registered.
"; //If the username already exists, display this message. } elseif ($Pass != $Repass) //Checks the entered passwords against eachother for a match. { echo "Passwords do not match.
"; //If they don't match, display this message. } else //If there were no errors, continue with registration. { $Salt = $Login.$Pass; $Salt = md5($Salt); $Salt = "0x".$Salt; //Salts the password in md5. MySQL_Query("call adduser('$Login', $Salt, '0', '0', '0', '$idnumber', '$Email', '$ip', '0', '0', '0', '0', '0', '0', '', '0', '')") or die ("Can't execute query."); //Writes the information into the database. echo "game username ".$Login." created successfully!
"; //Message to say the registration was successful. } } } error_reporting(0) ?>
 

Attachments

You must be registered for see attachments list
Initiate Mage
Joined
Jan 8, 2016
Messages
33
Reaction score
11
<? ---> <?php



Please Help

anyone can help me to fix this ?
i've installed PW1.5.4 server on debian 8

Could not connect to MySQL."); //Connects to your MySQL server using the parameters you specified above. MySQL_Select_Db($mysqldb, $Link) or die ("Database ".$mysqldb." does not exists."); //Connects to the MySQL database you specified above. $Login = $_POST['login']; $Pass = $_POST['passwd']; $Repass = $_POST['repasswd']; $Email = $_POST['email']; //The above grabs the information entered in the form and puts it to PHP variables. $pass = $_POST['idnumber']; $ip = $_POST['$ip']; $Login = mysql_real_escape_string(StrToLower(Trim($Login))); $Pass = mysql_real_escape_string(StrToLower(Trim($Pass))); $Repass = mysql_real_escape_string(StrToLower(Trim($Repass))); $Email = mysql_real_escape_string(Trim($Email)); //The above strips the information into lower case and adds SQL inject protection. $idnumber = mysql_real_escape_string(StrToLower(Trim($Pass))); $ip = $_SERVER['REMOTE_ADDR']; if (empty($Login) || empty($Pass) || empty($Repass) || empty($Email)) //Checks to make sure all the fields have been entered. { echo "Please complete all fields.
"; //If the fields haven't been entered, display this message. } else { $Result = MySQL_Query("SELECT name FROM users WHERE name='$Login'") or ("Can't execute username check."); //Checks the entered username against the database for a match. if (MySQL_Num_Rows($Result)) { echo "Username ".$Login." has already been registered.
"; //If the username already exists, display this message. } elseif ($Pass != $Repass) //Checks the entered passwords against eachother for a match. { echo "Passwords do not match.
"; //If they don't match, display this message. } else //If there were no errors, continue with registration. { $Salt = $Login.$Pass; $Salt = md5($Salt); $Salt = "0x".$Salt; //Salts the password in md5. MySQL_Query("call adduser('$Login', $Salt, '0', '0', '0', '$idnumber', '$Email', '$ip', '0', '0', '0', '0', '0', '0', '', '0', '')") or die ("Can't execute query."); //Writes the information into the database. echo "game username ".$Login." created successfully!
"; //Message to say the registration was successful. } } } error_reporting(0) ?>
 
Elite Diviner
Joined
Jan 5, 2017
Messages
475
Reaction score
345
this will no longer work on debian 8 or older since there is no more official package support... most likely mysql is not installed and mariadb is the new default... it is still possible to install pw on other linux distros including debian 10...
 
Back
Top