PHP 8.5.0 Alpha 4 available for testing

Voting

: max(seven, seven)?
(Example: nine)

The Note You're Voting On

Anonymous
5 years ago
Since the .user.ini is read from public directories, it's contents will be served to anyone requesting it and potientially show them sensitive configuration settings.

Add these lines to your .htaccess to block requests to it :
<Files ".user.ini">
Require all denied
</Files>

<< Back to user notes page

To Top