/PHP-5.5/tests/security/ |
H A D | open_basedir_error_log_variation.phpt | 9 test_open_basedir_before("error_log"); 13 var_dump(error_log("Hello World!", DESTINATION_IS_FILE, $initdir."/test/bad/bad.txt")); 14 var_dump(error_log("Hello World!", DESTINATION_IS_FILE, $initdir."/test/bad.txt")); 15 var_dump(error_log("Hello World!", DESTINATION_IS_FILE, $initdir."/bad.txt")); 16 var_dump(error_log("Hello World!", DESTINATION_IS_FILE, $initdir."/test/ok/ok.txt")); 18 test_open_basedir_after("error_log"); 26 *** Testing open_basedir configuration [error_log] *** 35 Warning: error_log(%s/test/bad/bad.txt): failed to open stream: %s in %s on line %d 40 Warning: error_log(%s/test/bad.txt): failed to open stream: %s in %s on line %d 45 Warning: error_log(%s/bad.txt): failed to open stream: %s in %s on line %d [all …]
|
H A D | open_basedir_error_log.phpt | 5 error_log= 10 test_open_basedir_before("error_log"); 13 var_dump(ini_set("error_log", $initdir."/test/bad/bad.txt")); 14 var_dump(ini_set("error_log", $initdir."/test/bad.txt")); 15 var_dump(ini_set("error_log", $initdir."/bad.txt")); 16 var_dump(ini_set("error_log", $initdir."/test/ok/ok.txt")); 17 var_dump(ini_set("error_log", $initdir."/test/ok/ok.txt")); 19 test_open_basedir_after("error_log"); 27 *** Testing open_basedir configuration [error_log] *** 44 *** Finished testing open_basedir configuration [error_log] ***
|
/PHP-5.5/ext/opcache/ |
H A D | zend_accelerator_debug.c | 47 if (!ZCG(accel_directives).error_log || in zend_accel_error() 48 !*ZCG(accel_directives).error_log || in zend_accel_error() 49 strcmp(ZCG(accel_directives).error_log, "stderr") == 0) { in zend_accel_error() 53 fLog = fopen(ZCG(accel_directives).error_log, "a+"); in zend_accel_error()
|
H A D | README | 196 opcache.error_log 197 OPcache error_log file name. Empty string assumes "stderr".
|
H A D | ZendAccelerator.h | 234 char *error_log; member
|
H A D | zend_accelerator_module.c | 281 … , "" , PHP_INI_SYSTEM, OnUpdateString, accel_directives.error_log, … 679 …directives, "opcache.error_log", STRING_NOT_NULL(ZCG(accel_directives).error_log), 1); in ZEND_FUNCTION()
|
/PHP-5.5/ext/standard/tests/general_functions/ |
H A D | bug60723.phpt | 2 Bug #60723 (error_log error time has changed to UTC ignoring default timezo) 10 ini_set("error_log", $log); 12 error_log("dummy");
|
/PHP-5.5/ext/exif/ |
H A D | test.txt | 45 error_log($msg,0); 65 //error_log("search_file($root,$path)",0); 69 //error_log("search_file($root$path):$type=$found",0); 88 //error_log("search_file($root$path) add:$path/$found",0); 90 error_log("exif test page - counting files: $cnt",0); 121 //error_log("SCRIPT_FILENAME($path)",0); 124 //error_log("argv($path)",0); 128 error_log("exif test page - counting files in $path"); 130 error_log("exif test page - counting files: ".count($possible)." done.",0); 263 if ( !((++$num)%100)) error_log("exif test page - checking files: $num",0); [all …]
|
/PHP-5.5/sapi/fpm/fpm/ |
H A D | fpm_stdio.c | 268 if (!strcasecmp(fpm_global_config.error_log, "syslog")) { 282 fd = open(fpm_global_config.error_log, O_WRONLY | O_APPEND | O_CREAT, S_IRUSR | S_IWUSR); 284 zlog(ZLOG_SYSERROR, "failed to open error_log (%s)", fpm_global_config.error_log);
|
H A D | fpm_conf.h | 28 char *error_log; member
|
H A D | fpm_conf.c | 96 { "error_log", &fpm_conf_set_string, GO(error_log) }, 1168 if (!fpm_global_config.error_log) { in fpm_conf_post_process() 1169 fpm_global_config.error_log = strdup("log/php-fpm.log"); in fpm_conf_post_process() 1187 if (strcasecmp(fpm_global_config.error_log, "syslog") != 0) in fpm_conf_post_process() 1190 fpm_evaluate_full_path(&fpm_global_config.error_log, NULL, PHP_LOCALSTATEDIR, 0); in fpm_conf_post_process() 1226 free(fpm_global_config.error_log); in fpm_conf_cleanup() 1229 fpm_global_config.error_log = 0; in fpm_conf_cleanup() 1547 zlog(ZLOG_NOTICE, "\terror_log = %s", STR2STR(fpm_global_config.error_log)); in fpm_conf_dump()
|
/PHP-5.5/Zend/tests/ |
H A D | bug39542.phpt | 15 error_log('Error: Autoload class: '.$class.' not found!');
|
/PHP-5.5/ext/session/tests/ |
H A D | rfc1867_invalid_settings_2-win.phpt | 5 error_log=
|
H A D | rfc1867_invalid_settings_2.phpt | 5 error_log=
|
H A D | rfc1867_invalid_settings-win.phpt | 5 error_log=
|
H A D | rfc1867_invalid_settings.phpt | 5 error_log=
|
/PHP-5.5/sapi/fpm/tests/ |
H A D | 003.phpt | 14 error_log = $logfile
|
/PHP-5.5/main/ |
H A D | php_globals.h | 80 char *error_log; member
|
H A D | main.c | 527 …STD_PHP_INI_ENTRY("error_log", NULL, PHP_INI_ALL, OnUpdateErrorLog, error_log, php_core_… 621 if (PG(error_log) != NULL) { in php_log_err() 623 if (!strcmp(PG(error_log), "syslog")) { in php_log_err() 629 fd = VCWD_OPEN_MODE(PG(error_log), O_CREAT | O_APPEND | O_WRONLY, 0644); in php_log_err()
|
/PHP-5.5/ext/soap/tests/bugs/ |
H A D | bug31422.phpt | 12 error_log=
|
/PHP-5.5/ext/standard/ |
H A D | basic_functions.h | 79 PHP_FUNCTION(error_log);
|
/PHP-5.5/sapi/fpm/ |
H A D | php-fpm.conf.in | 32 ;error_log = log/php-fpm.log 467 ; (error_log, sessions.save_path, ...). 530 ;php_admin_value[error_log] = /var/log/fpm-php.www.log
|
/PHP-5.5/ |
H A D | php.ini-development | 480 ; server-specific log, STDERR, or a location specified by the error_log 489 ; Set maximum length of log_errors. In error_log information about the source is 572 ;error_log = php_errors.log 574 ;error_log = syslog 1913 ; OPcache error_log file name. Empty string assumes "stderr". 1914 ;opcache.error_log=
|
H A D | php.ini-production | 480 ; server-specific log, STDERR, or a location specified by the error_log 489 ; Set maximum length of log_errors. In error_log information about the source is 572 ;error_log = php_errors.log 574 ;error_log = syslog 1913 ; OPcache error_log file name. Empty string assumes "stderr". 1914 ;opcache.error_log=
|
H A D | UPGRADING | 506 - opcache.error_log (default "" which means stderr)
|