Skip to content

Installing/Updating Add-Ons

Preparation

Download the latest version of the desired add-on from store.lethal.network.

Uploading Files

Move into lethal.landings plugin folder. Below is an example of how to perform this operation.

cd /var/www/lethal.landing/plugins

If this is the first time adding an add-on you might need to crete the /plugins folder first. Move into that folder afterwards.

mkdir -p /var/www/lethal.landing/plugins
cd /var/www/lethal.landing/plugins

Upload the previously downloaded ZIP archive into it. The easiest way to do this is via FTP/SFTP. Once uploaded extract the contents by executing the following command.

unzip -o pluginname_x.x.x.zip

Setting File Permissions

Finally, set the correct permissions on the files so that the webserver can use them correctly. Below is an example of how to perform this operation.

chmod -R 755 /var/www/lethal.landing

# If using NGINX or Apache (not on CentOS):
chown -R www-data:www-data /var/www/lethal.landing/*

# If using NGINX on CentOS:
chown -R nginx:nginx /var/www/lethal.landing/*

# If using Apache on CentOS
chown -R apache:apache /var/www/lethal.landing/*

What's next?

If a plugin comes with any configurable settings you will find them in the admin areas sidebar, by clicking the puzzle piece and navigating to the plugins settings!

Tip: Add-on setup instructions can be found in the docs as well!

Tip2: To update an add-on you can follow the exact same steps!