License Activation
Install via Extension Manager
Step 1. Go to Extension module & Select “Get extensions” from the drop-down at top. Click on the Update Now button to get the Extension Repository.
Step 2. Now, Download the ns_license extension & install it.
Step 3. Switch to Admin Tools > T3Planet License > Add Your License Key.
Step 4. Go to Admin Tools > Extensions > Activate Your Purchased Extension.
Create and Get your License Key (Interactive Demo)
Step 1. Click Get Started on the demo page.
Step 2. Open the Products menu to explore available solutions.
Step 3. Select the News Comment extension.
Step 4. Click Start Free Trial to start the trial.
Step 5. Scroll down and click Start Free Trial once more.
- Step 6. Review and accept the Privacy Policy and Terms to proceed.
Fill
Name *,Email *, andTelephone (Optional).Tick the agreement checkbox.
Step 7. Click Continue.
- Step 8. Enter your 3 environment domains:
Local Domain *Staging DomainProduction Domain
Step 9. Click Send verification code.
- Step 10. Enter the
Verification codeand clickConfirm & get my license key. If you cannot find it, check your spam/junk folder (and use
Resend codewhen available).
Step 11. Close the window and continue.
After you receive your license key, you can activate the extension in TYPO3:
Step 12. Go to Admin Tools > T3Planet License > Add Your License Key (paste your key).
Step 13. Click Activate License & Download Extension and then activate the purchased extension in Admin Tools > Extensions.
Install via Composer
Step 1. Install EXT:ns_license
composer require nitsan/ns-license
vendor/bin/typo3 extension:setup
Step 2. Go to TYPO3 Backend > T3Planet License > Add Your License Key.
Step 4. Run Composer Command
Note
We have already sent the license key & composer credentials (like username, license key) via Email. If you need any help, then write to our support team https://t3planet.de/support
composer config repositories.t3planet '{
"type": "composer",
"url": "https://composer.t3planet.cloud",
"only": ["nitsan/<PACKAGE-NAME>"]
}'
Example:
If installing the extension ns_t3ai package, use the following command:
composer config repositories.nitsan '{
"type": "composer",
"url": "https://composer.t3planet.cloud",
"only": ["nitsan/ns-t3ai"]
}'
Note
If you don’t know the exact <PACKAGE-NAME>, check the composer.json file in the repository. The package name can be found in the first line as shown below:
"name": "nitsan/ns-t3ai"
composer config http-basic.composer.t3planet.cloud <USERNAME> <LICENSE-KEY>
composer req nitsan/<PACKAGE-NAME> --with-all-dependencies
vendor/bin/typo3 extension:setup
Attention
If you are installing EXT:ns_revolution_slider with TYPO3 >= v11 composer-based TYPO3 instance, Please don’t forget to run the below commands.
vendor/bin/typo3 nsrevolution:setup
Multiple Extensions Installation via Composer
If you want to install multiple premium TYPO3 extensions in your single TYPO3 instance, you can use our multiple dedicated Composer servers which support up to 99 extensions. Follow the steps below:
composer config repositories.t3planet1 '{
"type": "composer",
"url": "https://composer1.t3planet.cloud",
"only": ["nitsan/<PACKAGE-NAME>"]
}'
composer config http-basic.composer1.t3planet.cloud <USERNAME> <LICENSE-KEY>
composer req nitsan/<PACKAGE-NAME> --with-all-dependencies
vendor/bin/typo3 extension:setup
Adding More Extensions (Up to 99)
To add more extensions, you can repeat the same steps with the following changes:
Update the repository name to:
repositories.t3planet(n) — where n ranges from 1 to 99
Update the repository URL to:
https://composer(n).t3planet.cloud — where
nranges from 1 to 99Update the credentials
composer config http-basic.composer(n).t3planet.cloud <USERNAME> <LICENSE-KEY> — where n ranges from 1 to 99