Skip to content

Commit

Permalink
more comments/warnings on deactivating security checks
Browse files Browse the repository at this point in the history
  • Loading branch information
bef committed Aug 27, 2014
1 parent a69f95f commit 46a48a3
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions phpconfigcheck.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,17 @@
*/

/*****************************************************************************/
/* *** *** *** DANGER ZONE!! *** *** *** */

// uncomment to disable IP restrictions by default
// putenv("PCC_ALLOW_IP=*");
// WARNING: better keep access restricted, e.g. set PCC_ALLOW_IP=10.0.0.*
//putenv("PCC_ALLOW_IP=*");

// uncomment to disable mtime check by default
// putenv("PCC_DISABLE_MTIME=1");
// This script will deactivate after 48 hours automatically.
// To disable this feature, uncomment the line below.
// WARNING: better keep this commented out unless further restrictions apply, e.g. IP check
//putenv("PCC_DISABLE_MTIME=1");

/*****************************************************************************/

Expand Down

0 comments on commit 46a48a3

Please sign in to comment.