Files
ViciDialSVN/agc_2-X/trunk/www/chat_customer/options-example.php
T
mattf 3be624eb17 Code updates for PHP8 compatibility in all PHP scripts
Added PHP_error_reporting_OVERRIDE options for each web directory

git-svn-id: svn://192.168.202.10@3863 3d104415-ff17-0410-8863-d5cf3c621b8a
2024-08-06 15:02:09 +00:00

24 lines
1.0 KiB
PHP

<?php
# options.php - manually defined options for vicidial admin scripts
#
# Copyright (C) 2024 Matt Florell <vicidial@gmail.com>, Joe Johnson <joej@vicidial.com> LICENSE: AGPLv2
#
# rename this file to options.php for the settings here to go into effect
#
# CHANGELOG
# 160818-0200 - First build
# 240802-1250 - Added options to customize PHP error output
#
# If this option is set to 1, then the error_reporting in php.ini will be ignored and settings below will be used for this directory
$PHP_error_reporting_OVERRIDE = 0;
# PHP error reporting options, set to 1 to keep the type of error from being displayed, either on-screen or to the error logs.
$PHP_error_reporting_HIDE_ERRORS = 0; # STRONGLY advise leaving this value alone, but you do you.
$PHP_error_reporting_HIDE_WARNINGS = 0;
$PHP_error_reporting_HIDE_PARSES = 0;
$PHP_error_reporting_HIDE_NOTICES = 0;
$PHP_error_reporting_HIDE_DEPRECATIONS= 0;
$use_agent_colors = '1'; # set to 1 to use the agent_screen_colors setting in the system settings
?>