Skip to content

Commit

Permalink
Merge pull request #217 from mautic/password-complexity
Browse files Browse the repository at this point in the history
Update password complexity
  • Loading branch information
RCheesley authored Jan 9, 2024
2 parents 862f2ff + 06f4c09 commit 1272bef
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/getting_started/how_to_install_mautic.rst
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ Click **login** to continue working on your Mautic instance.
Installing with command line
============================

You can also install Mautic using the command line. You can either pass the settings parameters in the command, or create a local PHP file with your database settings. You can also define properties in this file using the syntax expected by the command-line options.
You can also install Mautic using the command line. You can either pass the settings parameters in the command, or create a local PHP file with your database settings. You can also define properties in this file using the syntax expected by the command-line options. Note that Mautic requires a complex password from version 5.1.

Use the command ``path/to/php bin/console mautic:install --help`` for the list of options and flags available.

Expand Down Expand Up @@ -195,7 +195,7 @@ Use the syntax below within a ``local.php`` file:
'db_backup_tables' => false,
'db_backup_prefix' => 'bak_',
'admin_email' => '[email protected]',
'admin_password' => 'mautic',
'admin_password' => 'Maut1cR0cks!',
'mailer_transport' => null,
'mailer_host' => null,
'mailer_port' => null,
Expand All @@ -221,7 +221,7 @@ If desired, you can also add parameters in the install command:
--mailer_from_name="Example From Name" --mailer_from_email="mautic@localhost"
--mailer_transport="smtp" --mailer_host="localhost" --mailer_port="1025"
--db_driver="pdo_mysql" --db_host="db" --db_port="3306" --db_name="db" --db_user="db" --db_password="db"
--db_backup_tables="false" --admin_email="[email protected]" --admin_password="mautic"
--db_backup_tables="false" --admin_email="[email protected]" --admin_password="Maut1cR0cks!"
As the installation process begins, it flags up warnings and aborts if there are any critical errors.

Expand Down Expand Up @@ -298,7 +298,7 @@ You can use :xref:`DDEV` which is recommended for testing and development with M
This spins up a DDEV instance (which includes Mailhog, PHPMyAdmin, and Redis Commander) - by default at ``https://mautic.ddev.site`` - and also gives the option to set up Mautic ready for you to use.
.. vale on
This runs through the Composer install process, and installs Mautic at the command line with a default username of ``admin`` and password of ``mautic``.
This runs through the Composer install process, and installs Mautic at the command line with a default username of ``admin`` and password of ``Maut1cR0cks!`` (note: pre Mautic 5.1 the password is just `mautic`.

Installing with Composer
************************
Expand Down Expand Up @@ -508,4 +508,4 @@ Often there is a need to have a local environment for testing Mautic - for examp

In Mautic, DDEV is the tool of choice for this purpose. It's very easy to work with.

To learn how to set up DDEV with Mautic, please review the documentation in the Contributors :xref:`Handbook`.
To learn how to set up DDEV with Mautic, please review the documentation in the Contributors :xref:`Handbook`.

0 comments on commit 1272bef

Please sign in to comment.