Adam Howard
Well-known member
Adam Howard submitted a new resource:
How to comment out in your config file - The proper way to comment out content in PHP
Read more about this resource...
How to comment out in your config file - The proper way to comment out content in PHP
I am making a 'guide' on this because I have seen far to many people use the incorrect method of commenting out things in their config.php file.
The proper way to comment out something in your config.php is to use
And notPHP://
The correct method (example)PHP:<xen:comment> </xen:comment>
PHP:<?php // $config['enableListeners'] = false; // $config['debug'] = 1; // ini_set('display_errors', true); $config['db']['host'] = 'localhost';...
Read more about this resource...