Skip to content

Commit 99868d4

Browse files
committed
DOC-3505: Update self-hosted trial docs with confirmed option name and features
Replace placeholder cloud_services_trial with online_license_services_opt_in (confirmed from release/8 source). Remove Autocorrect from cloud features table (client-side only). Add Tiny Drive. Refine behavior descriptions and narrow network requirement to *.api.tiny.cloud.
1 parent e472689 commit 99868d4

3 files changed

Lines changed: 19 additions & 19 deletions

File tree

modules/ROOT/pages/8.6.0-release-notes.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ include::partial$misc/admon-releasenotes-for-stable.adoc[]
2323

2424
=== Self-hosted trial with cloud services
2525

26-
{productname} {release-version} introduces self-hosted trials with optional access to cloud-powered premium features. Integrators can install {productname} and premium plugins via NPM, configure a trial license key, and optionally enable a connection to {cloudname} services by setting `+cloud_services_trial+` to `+true+`.
26+
{productname} {release-version} introduces self-hosted trials with optional access to cloud-powered premium features. Integrators can install {productname} and premium plugins via NPM, configure a trial license key, and optionally enable a connection to {cloudname} services by setting `+online_license_services_opt_in+` to `+true+`.
2727

28-
When enabled, cloud-powered features such as Spell Checker Pro, Link Checker, Enhanced Media Embed, Export to PDF, Export to Word, Import from Word, Image Editing, Autocorrect, and TinyMCE AI become available during the trial period without requiring a separate API key or cloud deployment.
28+
When enabled, cloud-powered features such as Spell Checker Pro, Link Checker, Enhanced Media Embed, Export to PDF, Export to Word, Import from Word, Image Editing, TinyMCE AI, and Tiny Drive become available during the trial period without requiring a separate API key or cloud deployment.
2929

30-
Without the `+cloud_services_trial+` option, the editor operates entirely self-hosted with no external network connection. All premium plugins that do not depend on cloud services continue to function regardless.
30+
Without the `+online_license_services_opt_in+` option, the trial license key still validates and the editor is fully operational. All premium plugins that do not depend on cloud services continue to function. Cloud-dependent plugins are not auto-configured but can be configured manually.
3131

3232
For setup instructions, see xref:self-hosted-trial.adoc[Self-hosted trial with cloud services].

modules/ROOT/pages/changelog.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ NOTE: This is the {productname} Community version changelog. For information abo
77
== xref:8.6.0-release-notes.adoc[8.6.0 - 2026-05-27]
88

99
### Added
10-
* Self-hosted trials with optional access to cloud-powered premium features via the `cloud_services_trial` option.
10+
* Self-hosted trials with optional access to cloud-powered premium features via the `online_license_services_opt_in` option.
1111
// #DOC-3505
1212

1313
== xref:8.5.0-release-notes.adoc[8.5.0 - 2026-04-29]

modules/ROOT/pages/self-hosted-trial.adoc

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@
33
:description: Set up a self-hosted {productname} trial with access to cloud-powered premium features using NPM.
44
:keywords: trial, self-hosted, npm, cloud services, premium plugins, license key, tinymce-premium
55

6-
// TODO: Update option name `cloud_services_trial` when final name is confirmed (TINY-14259).
7-
86
== Overview
97

108
A self-hosted trial provides access to {productname} premium plugins in a self-hosted environment. Integrators can optionally connect to {cloudname} services during the trial to evaluate cloud-powered features such as Spell Checker Pro, Export to PDF, and TinyMCE AI, without requiring a separate cloud deployment or additional scripts.
119

12-
Connecting to cloud services is opt-in. Setting the `+cloud_services_trial+` option to `+true+` enables the connection. Without this option, the editor operates entirely offline with no cloud dependency. No separate API key is required.
10+
Connecting to cloud services is opt-in. Setting the `+online_license_services_opt_in+` option to `+true+` enables the connection. Without this option, the editor is licensed and operational but cloud-dependent premium plugins are not auto-configured. No separate API key is required.
1311

1412
[NOTE]
1513
====
@@ -51,19 +49,21 @@ tinymce.init({
5149
'linkchecker', 'mediaembed', 'editimage', 'autocorrect', 'tinymceai'
5250
],
5351
toolbar: 'undo redo | blocks | bold italic | alignleft aligncenter alignright | bullist numlist outdent indent | help',
54-
cloud_services_trial: true
52+
online_license_services_opt_in: true
5553
});
5654
----
5755

5856
Replace the `+'your-trial-license-key'+` placeholder with the trial license key provided during sign-up.
5957

6058
=== Step 3: Enable cloud services
6159

62-
Set the `+cloud_services_trial+` option to `+true+` in the editor configuration. This option explicitly enables the connection to {cloudname} services for the duration of the trial.
60+
Set the `+online_license_services_opt_in+` option to `+true+` in the editor configuration. This option enables automatic configuration of cloud service URLs for all cloud-dependent premium plugins during the trial.
61+
62+
Without this option, the trial license key still validates and the editor is fully functional, but cloud-dependent plugins (such as Spell Checker Pro, Link Checker, and Export to PDF) are not auto-configured and will report that their service URL is not set.
6363

6464
[IMPORTANT]
6565
====
66-
Setting `+cloud_services_trial+` to `+true+` enables a network connection from the editor to {cloudname}. Features that depend on cloud services will not function without this option enabled. Remove or set this option to `+false+` to disable the cloud connection at any time.
66+
Setting `+online_license_services_opt_in+` to `+true+` enables a network connection from the editor to {cloudname}. Remove or set this option to `+false+` to disable the cloud connection at any time.
6767
====
6868

6969
=== Step 4: Ensure the license key manager is available
@@ -79,7 +79,7 @@ For hosting setups, ensure the `+licensekeymanager+` folder is present in the `+
7979

8080
== Cloud-powered features
8181

82-
The following premium features require a connection to {cloudname} services and will only function when `+cloud_services_trial+` is set to `+true+`:
82+
The following premium features require a connection to {cloudname} services and will only function when `+online_license_services_opt_in+` is set to `+true+`:
8383

8484
[cols="1,2", options="header"]
8585
|===
@@ -106,11 +106,11 @@ The following premium features require a connection to {cloudname} services and
106106
| xref:editimage.adoc[Image Editing]
107107
| Advanced image editing with cloud-based image proxy support.
108108

109-
| xref:autocorrect.adoc[Autocorrect]
110-
| Automatic text corrections powered by cloud-based language services.
111-
112109
| xref:tinymceai.adoc[TinyMCE AI]
113110
| AI-powered content generation and editing.
111+
112+
| xref:tinydrive-introduction.adoc[Tiny Drive]
113+
| Cloud-based file management and storage service.
114114
|===
115115

116116
All other premium plugins included in the `+tinymce-premium+` package function during the trial without a cloud connection.
@@ -119,7 +119,7 @@ For the full list of features included in a trial, see the link:https://www.tiny
119119

120120
== Network requirements
121121

122-
When `+cloud_services_trial+` is enabled, the editor connects to {cloudname} services. Ensure that `+*.tiny.cloud+` is allowed for outbound access if the network uses a forward proxy or firewall.
122+
When `+online_license_services_opt_in+` is enabled, the editor connects to {cloudname} services at `+*.api.tiny.cloud+`. Ensure that this domain pattern is allowed for outbound HTTPS access if the network uses a forward proxy or firewall.
123123

124124
For detailed Content Security Policy (CSP) configuration, see xref:tinymce-and-csp.adoc[{productname} and Content Security Policy].
125125

@@ -139,7 +139,7 @@ For detailed Content Security Policy (CSP) configuration, see xref:tinymce-and-c
139139
| The editor ceases to function when the trial license key expires. Purchase a commercial license to continue using {productname}.
140140

141141
| Cloud services
142-
| Cloud-powered features require an active internet connection and the `+cloud_services_trial+` option set to `+true+`. Without this option, no cloud connection is made.
142+
| Cloud-powered features require an active internet connection and the `+online_license_services_opt_in+` option set to `+true+`. Without this option, cloud-dependent plugins are not auto-configured.
143143
|===
144144

145145
== After the trial
@@ -160,16 +160,16 @@ To continue using {productname} after the trial period:
160160
| No. The trial license key is the only key required. There is no need to configure a separate API key for cloud services during the trial.
161161

162162
| Can the cloud connection be disabled?
163-
| Yes. Remove the `+cloud_services_trial+` option or set it to `+false+`. Cloud-powered features will not function without this option, but all self-hosted plugins will continue to operate.
163+
| Yes. Remove the `+online_license_services_opt_in+` option or set it to `+false+`. Cloud-powered features will not be auto-configured, but the editor and all self-hosted plugins will continue to operate.
164164

165165
| What happens when the trial expires?
166166
| {productname} disables the editor and displays a notification indicating that the license key has expired. Purchase a commercial license to continue use.
167167

168168
| Is a separate script tag required for cloud services?
169-
| No. Unlike a hybrid deployment, the self-hosted trial does not require an additional script tag. The `+cloud_services_trial+` option and the trial license key handle all cloud service connectivity.
169+
| No. Unlike a hybrid deployment, the self-hosted trial does not require an additional script tag. The `+online_license_services_opt_in+` option and the trial license key handle all cloud service connectivity.
170170

171171
| Which plugins work without cloud services?
172-
| All premium plugins that do not depend on an external service function during the trial regardless of the `+cloud_services_trial+` option value. Only the features listed in <<Cloud-powered features>> require the cloud connection to be enabled.
172+
| All premium plugins that do not depend on an external service function during the trial regardless of the `+online_license_services_opt_in+` option value. Only the features listed in <<Cloud-powered features>> require the cloud connection to be enabled.
173173

174174
| Can the trial be extended?
175175
| Trial extensions are not available through self-service. Contact link:https://support.tiny.cloud[{productname} Support] for assistance.

0 commit comments

Comments
 (0)