juce / fiveserver

Open-Source network server for PES5 and PES6 families of the game

Home Page:https://sites.google.com/site/fiveservercom/home

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

sites.google.com/site/fiveservercom/home offline !!

ToniFabri opened this issue · comments

I need the tutorial to get the mysql codes to work on the server, the site is offline, is there another place or on github I can get these codes, thank you

https://web.archive.org/web/20201102183724/https://sites.google.com/site/fiveservercom/win32-howto

mysql> create database fiveserver;
Query OK, 1 row affected (0.00 sec)

mysql> grant select,insert,update on fiveserver.* to 'fiveserver'@'%' identified by 'we9le';
Query OK, 0 rows affected (0.00 sec)

mysql> grant select,insert,update on fiveserver.* to 'fiveserver'@'localhost' identified by 'we9le';
Query OK, 0 rows affected (0.00 sec)

mysql> create database sixserver;
Query OK, 1 row affected (0.00 sec)

mysql> grant select,insert,update on sixserver.* to 'sixserver'@'%' identified by 'proevo';
Query OK, 0 rows affected (0.00 sec)

mysql> grant select,insert,update on sixserver.* to 'sixserver'@'localhost' identified by 'proevo';
Query OK, 0 rows affected (0.00 sec)

mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| fiveserver |
| mysql |
| performance_schema |
| sixserver |
| test |
+--------------------+
6 rows in set (0.00 sec)

Now we have the databases created and access to them configured, but we still need to create the schemas for these databases: meaning create the necessary tables. To do that execute these commands:

mysql> use fiveserver;
Database changed
mysql> source schema.sql
Query OK, 0 rows affected (0.11 sec)

Query OK, 0 rows affected (0.03 sec)

Query OK, 0 rows affected (0.05 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.03 sec)

Query OK, 0 rows affected (0.03 sec)

mysql> source alter_001_add_settings.sql
Query OK, 0 rows affected (0.00 sec)

mysql>
mysql>
mysql> use sixserver;
Database changed
mysql> source schema6.sql
Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.05 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.01 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.03 sec)

Query OK, 0 rows affected (0.05 sec)

mysql> source alter6_001_modify_profiles.sql
Query OK, 0 rows affected (0.00 sec)

mysql>

We're done with this step. Quit the mysql client too, by entering:

mysql> exit

Não tem como coloca servidor com Hamachi?