-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is one puzzle piece for joomla/joomla-cms#43902
- Loading branch information
Showing
2 changed files
with
15 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -217,7 +217,7 @@ After the command, the 'Joomla Installer' screen remains open in the session. | |
|
||
:warning: The `/installation` folder is not deleted after the installation. | ||
This allows multiple runs of the command `installJoomla`. | ||
For production sites the `/installation` folder needs to be deleted after installation. | ||
For production sites the `/installation` folder needs to be deleted after installation. | ||
|
||
See also [installJoomlaMultilingualSite](#installjoomlamultilingualsite). | ||
|
||
|
@@ -230,7 +230,9 @@ cy.installJoomla(config) | |
##### Arguments | ||
|
||
- **`config`** *(object)*: Configuration object containing sitename, name, username, password, email, | ||
db_type, db_host, db_user, db_password, db_name and db_prefix. | ||
db_type, db_host, db_port, db_user, db_password, db_name and db_prefix. | ||
|
||
:point_right: The use of `db_port` for a non-standard database port currently (August 2024) only works for MariaDB and MySQL. | ||
|
||
##### Example | ||
|
||
|
@@ -243,6 +245,7 @@ const config = { | |
email: "[email protected]", | ||
db_type: "MySQLi", | ||
db_host: "localhost", | ||
db_port: "3316" | ||
db_user: "joomla", | ||
db_password: "joomla-db-user-password", | ||
db_name: "sample_joomla", | ||
|
@@ -273,9 +276,11 @@ cy.installJoomlaMultilingualSite(config, languages) | |
##### Arguments | ||
|
||
- **`config`** *(object)*: Configuration object containing sitename, name, username, password, email, | ||
db_type, db_host, db_user, db_password, db_name and db_prefix. | ||
db_type, db_host, db_port, db_user, db_password, db_name and db_prefix. | ||
- **`languages`** *(string[], optional, default: ["French"])*: Array of additional languages to be installed. | ||
|
||
:point_right: The use of `db_port` for a non-standard database port currently (August 2024) only works for MariaDB and MySQL. | ||
|
||
##### Example | ||
|
||
```javascript | ||
|
@@ -287,6 +292,7 @@ const config = { | |
email: "[email protected]", | ||
db_type: "MySQLi", | ||
db_host: "localhost", | ||
db_port: "3316", | ||
db_user: "joomla", | ||
db_password: "joomla-db-user-password", | ||
db_name: "sample_joomla", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters