High Scripts

Documentation

Media Uploading

Configuring the media uploading services.

Fivemanage

Register on Fivemanage

Head on to their official website and create a new account!

Create a team

After registering, click Create New Team and create a team for your server.

Create a token

In the dashboard, on the left click Tokens and create a new token for media. You can name the token however you want.

Put the token into High Phone's configuration

By default, pre-signed URLs are enabled, so paste your API key only on the server-side!

Your server fivemanage config should look like this:

config/server.lua
fivemanage = {
    apiToken = "BOXjvkjmiwzdT46y2bxeemZASy1uu7tw"
},

If you've disabled pre-signed URLs, change it on the client-side.

Your client fivemanage config should look like this:

config/main.lua
uploading = {
    services = {
        ["fivemanage"] = {
            presigned = false,
            apiToken = 'BOXjvkjmiwzdT46y2bxeemZASy1uu7tw'
        },

Make sure you don't leave any API keys on the client config if you're using pre-signed URLs which are enabled by default!

Last updated on

On this page