Skip to content

Commit 2836c55

Browse files
committed
Documentation tweaks
1 parent f784e9c commit 2836c55

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,6 @@ You should take this generated password and populate it in the `DB_PASS` of your
5555
- `DB_PASS` should be set the password as detailed above.
5656
- `DB_NAME` should be set to `address_book`.
5757
- `SITE_URL` should be set to the address from which the system will be accessible from. Typically http://localhost/ is acceptable.
58-
- `TIMEZONE` should be set to the timezone you require. See the [PHP Manual](https://www.php.net/manual/en/timezones.php) for options.
59-
6058

6159
### 2. Manual Installation
6260

@@ -87,7 +85,6 @@ You should then set your `settings.local.inc.php` values to match your environme
8785
- `DB_PASS` should be set the password for the user which you created.
8886
- `DB_NAME` should be set to `address_book`, if you used the default set up.
8987
- `SITE_URL` should be the FQDN of the address of the server.
90-
- `TIMEZONE` should be set to the timezone you require. See the [PHP Manual](https://www.php.net/manual/en/timezones.php) for options.
9188
9289
#### Web Server Configuration
9390
@@ -102,6 +99,12 @@ If the system is working correctly then you should be prompted with a login wind
10299
- Username: `admin`
103100
- Password: `LetMeIn123`
104101
102+
## Local Settings Configuration Values
103+
104+
There are several configuration values which can be set in the `includes/settings.local.inc.php` file. Below lists settings with their appropriate values:
105+
106+
- `TIMEZONE` should be set to the timezone you require for the system. See the [PHP Manual](https://www.php.net/manual/en/timezones.php) for options.
107+
105108
## Screenshots
106109
107110
Screenshots of the system can be found in the [screenshots](screenshots/) directory, or by viewing the [SCREENSHOTS.md](SCREENSHOTS.md) file.

includes/EXAMPLE.settings.local.inc.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,6 @@
3434

3535
/**
3636
* The timezone to be used by the system.
37+
* See https://www.php.net/manual/en/timezones.php for a list of valid timezones.
3738
*/
3839
defined("TIMEZONE") ? null : define("TIMEZONE", "UTC");

0 commit comments

Comments
 (0)