Installing JSON web token
You can download the extension package from the JSON web token Squiz Marketplace listing.
How to install the extension package
To complete this procedure you must be a Matrix server administrator with command-line access to the Matrix server. |
Matrix packages are provided as a package archive (.tgz
).
You install packages by extracting the archive into the /packages
directory of your Matrix system.
Follow these steps to install an extension package on your Matrix system:
-
Open a terminal and navigate into the target Matrix system directory. For example:
cd /var/www/squiz_matrix
-
Download the package archive to a location accessible to your Matrix system. For example,
/path/to/package.tgz
. -
Install the package by extracting the archive into the
squiz_matrix/packages
directory.cd /var/www/squiz_matrix tar -xvf /path/to/package.tgz
-
Run the installation steps in order.
sudo -u apache php install/step_02.php $PWD sudo -u apache php install/step_03.php $PWD --package=[package_name] (1)
1 | [package_name] - Specify the name of the Matrix extension package.
The name is the same as the installation package name, excluding any version information. |