๐ง Installation
BP Garage Installation Document and Basic Concepts
Depencedies
In order for the script to run properly on your server, you must download the scripts below and install them on your server.
Place your scripts
The order on server.cfg should be like this.
start bob74_ipl
start qua_houses_s4
start bp_garage
Database Setup
And now, enter this SQL code into your mysql database and set up the table.
CREATE TABLE IF NOT EXISTS `bp_garages` (
`garageid` int(11) NOT NULL AUTO_INCREMENT,
`garagetype` longtext DEFAULT NULL,
`garageowner` longtext DEFAULT NULL,
`garagemeta` longtext DEFAULT NULL,
`garageimg` longtext DEFAULT NULL,
`garagename` longtext DEFAULT NULL,
`garageownername` longtext DEFAULT NULL,
PRIMARY KEY (`garageid`)
) ENGINE=InnoDB AUTO_INCREMENT=131 DEFAULT CHARSET=utf8mb4;
Installation Completed
You have successfully completed the bp-garage installation. Restart your server to make sure everything is working.
Last updated