Skip to content

Latest commit

 

History

History
executable file
·
54 lines (32 loc) · 1.27 KB

limit-debug-mode.md

File metadata and controls

executable file
·
54 lines (32 loc) · 1.27 KB

title: Limiting debug mode to development environment


version: 0.0.3


authors: marcus


tags: debug, config


problem: Often times, one forgets to switch off ProcessWire's debug mode before deploying to the live environment


solution: Here's a Laravel-inspired mini tutorial to prevent that - in this case utilizing MAMP Pro 3:

Step 1: Set an environment variable

When managing/creating your virtual host, click the "Extended" tab and fill in Additional parameters for Virtual Host:

SetEnv ENV development

Doing this we set an environment variable called ENV to a value of "development", for example:

Step 2: Slight modification of /site/config.php

Within aforementioned virtual host...

$_ENV["ENV"]

...now returns "development". We can use this to add a small switch to ProcessWire's main debug setting:

$config->debug = ($_ENV["ENV"] == "development") ? true : false;

This is just a concise way of saying: if $_ENV["ENV"] is "development", turn debug on (true), else leave it off (false).

As long as your production server has not set an environment variable of this name AND filled it with development, which would be kind of crazy, you're able use debug mode - and free to forget about it.


resources: