Skip to content

Installation

Mark Friedrich edited this page Jan 8, 2016 · 38 revisions

Pregame

Make sure your server environment fulfils all Requirements. I assume that you have FTP or SSH access to your server/webspace and you can see a dummy index.html. Server configuration help is not included...


Main Install

Option 1

Navigate to your desired install location and git clone the repo:

git clone https://github.com/exodus4d/pathfinder.git
Option 2
  • Download the latest version of PATHFINDER.
  • Un-zip everything and push it to your webspace (e.g. use a FTP client)

Bootstrapping the Main DB - Clean Data Export [CDE]

If using PHPMyAdmin you probably have to increase upload_max_filesize to get it imported. Importing by SSH is much more prefered!

The SQL dump is now part of this repository: download

wget https://raw.githubusercontent.com/exodus4d/pathfinder/master/pathfinder.sql
mysql -u root -p pathfinder_clean < pathfinder.sql // This will create a *pathfinder_clean* database and import the .sql file. Replace _root_ with your mysql user.

Make sure, that all column indexes and foreign key constraints have been imported correct! Otherwise you will get DB errors and the cache engine can not track all tables (Models), which may result in bad performance!

Bootstrapping the (CCP) Static Data Export [SDE]

You also need to import the Eve SDE into the database specified in the DB_CCP_* settings. You can do this like the following:

wget https://www.fuzzwork.co.uk/dump/mysql-latest.tar.bz2
tar xf mysql-latest.tar.bz2
cd vanguard-[..] // go to the extracted folder
mysql -u root -p -e "create database vanguard"; // Create the SDE database.
mysql -u root -p __DATABASE_NAME__ < db_file.sql // Upload the sql file. It might be named like "mysql56-vanguard-[...].sql", Also replace "root" with your mysql user.

You don´t have to import all tables into your DB! PATHFINDER requires only the following:

- invTypes
- mapConstellations
- mapDenormalize
- mapLocationWormholeClasses
- mapRegions
- mapSolarsystems
Clone this wiki locally