production.php 844 B

1234567891011121314151617181920212223
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | ERROR DISPLAY
  5. |--------------------------------------------------------------------------
  6. | Don't show ANY in production environments. Instead, let the system catch
  7. | it and display a generic error message.
  8. */
  9. ini_set('display_errors', '0');
  10. error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT & ~E_USER_NOTICE & ~E_USER_DEPRECATED);
  11. /*
  12. |--------------------------------------------------------------------------
  13. | DEBUG MODE
  14. |--------------------------------------------------------------------------
  15. | Debug mode is an experimental flag that can allow changes throughout
  16. | the system. It's not widely used currently, and may not survive
  17. | release of the framework.
  18. */
  19. defined('CI_DEBUG') || define('CI_DEBUG', false);