Skip to content

Commit

Permalink
Correct exception_ignore_args (#1475)
Browse files Browse the repository at this point in the history
  • Loading branch information
glye committed Aug 8, 2024
1 parent 1a9ecca commit 06e3883
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cheatsheets/PHP_Configuration_Cheat_Sheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ For general PHP codebase security please refer to the two following great guides

Some of following settings need to be adapted to your system, in particular `session.save_path`, `session.cookie_path` (e.g. `/var/www/mysite`), and `session.cookie_domain` (e.g. `ExampleSite.com`).

You should be running a [supported version of PHP](https://www.php.net/supported-versions.php) (as of this writing, 8.1 is the oldest version receiving security support). Review the [core `php.ini` directives](https://www.php.net/manual/ini.core.php) in the PHP Manual for a complete reference on every value in the `php.ini` configuration file.
You should be running a [supported version of PHP](https://www.php.net/supported-versions.php) (as of this writing, 8.1 is the oldest version receiving security support from PHP, though distribution vendors often provide extended support). Review the [core `php.ini` directives](https://www.php.net/manual/ini.core.php) in the PHP Manual for a complete reference on every value in the `php.ini` configuration file.

You can find a copy of the following values in a [ready-to-go `php.ini` file here](https://github.com/danehrlich1/very-secure-php-ini).

Expand Down Expand Up @@ -105,7 +105,7 @@ post_max_size           = 20M
max_execution_time      = 60
report_memleaks         = On
html_errors             = Off
zend.exception_ignore_args = Off
zend.exception_ignore_args = On
```

### Snuffleupagus
Expand Down

0 comments on commit 06e3883

Please sign in to comment.