Home
last modified time | relevance | path

Searched refs:status (Results 1 – 25 of 271) sorted by last modified time

1234567891011

/PHP-5.5/win32/build/
H A Dprojectgen.js537 var status = (PHP_DEBUG == "no" ? 'Release' : 'Debug');
538 var statusts = status + (ts ? "_" + ts.toUpperCase() : "");
605 … + '"' + ' /libpath:"' + outpath + '"' + ' /libpath:"..\\' + path + 'bindlib_w32\\' + status + '"';
/PHP-5.5/win32/
H A Dinstall.txt466 php-cgi.exe) then check "Set extension status to Allowed" and click OK.
830 Your script can get the HTTP status code with $_SERVER['ERROR_TYPE'].
868 You can check the status by using the phpinfo() function.
1802 response status can be sent with header(). If only GET and POST methods
/PHP-5.5/
H A Dserver-tests.php311 if (preg_match("/^HTTP\/1\.. (\d+).*/s",$match[1],$status) && !$status[1]) {
312 $this->errmsg = "HTTP Response $status[1] Not Found";
323 $this->response_headers['Status']=$status[1];
605 function showstatus($item, $status, $reason = '') { argument
607 switch($status) {
990 $status = "failed";
992 $status = "success";
1033 … !post_result_data("status=$status&version=".urlencode(TESTED_PHP_VERSION),$failed_tests_data)) {
/PHP-5.5/scripts/dev/
H A Dphpextdist15 rm -rf modules *.lo *.o *.la config.status config.cache \
/PHP-5.5/sapi/phttpd/
H A Dphttpd.c283 int status; in pm_request() local
292 status = php_doit(TSRMLS_C); in pm_request()
295 return status; in pm_request()
/PHP-5.5/sapi/roxen/
H A Droxen.c613 int status = 1; in f_php_roxen_request_handler() local
666 status = php_roxen_module_main(TSRMLS_C); in f_php_roxen_request_handler()
672 push_int(status); in f_php_roxen_request_handler()
/PHP-5.5/sapi/thttpd/
H A Dthttpd.c193 TG(hc)->status = SG(sapi_headers).http_response_code; in sapi_thttpd_send_headers()
H A Dthttpd_patch260 hc->status = status;
276 - hc->protocol, status, title, EXPOSED_SERVER_SOFTWARE, fixed_type,
298 + smart_str_append_long(&s, status);
381 - send_mime( hc, status, title, "", extraheads, "text/html", -1, 0 );
385 status, title, status, title );
399 - send_mime( hc, status, title, "", extraheads, "text/html", -1, 0 );
443 + hc->status = 0;
531 - hc->status = 0;
893 - hc->status, bytes, hc->referer, hc->useragent );
901 - hc->status, bytes, hc->referer, hc->useragent );
[all …]
/PHP-5.5/scripts/
H A DMakefile.frag48 $(builddir)/phpize: $(srcdir)/phpize.in $(top_builddir)/config.status
49 (CONFIG_FILES=$@ CONFIG_HEADERS= $(top_builddir)/config.status)
51 $(builddir)/php-config: $(srcdir)/php-config.in $(top_builddir)/config.status
52 (CONFIG_FILES=$@ CONFIG_HEADERS= $(top_builddir)/config.status)
/PHP-5.5/sapi/litespeed/
H A Dlsapi_main.c948 int status; in start_children() local
989 pid = wait( &status ); in start_children()
H A Dlsapilib.c2539 int status, pid; in lsapi_sigchild() local
2543 pid = waitpid( -1, &status, WNOHANG|WUNTRACED ); in lsapi_sigchild()
2548 if ( WIFSIGNALED( status )) in lsapi_sigchild()
2550 int sig_num = WTERMSIG( status ); in lsapi_sigchild()
2551 int dump = WCOREDUMP( status ); in lsapi_sigchild()
/PHP-5.5/sapi/milter/
H A Dphp_milter.c115 int status; in ZEND_DECLARE_MODULE_GLOBALS() local
181 int status; in mlfi_connect() local
245 int status; in mlfi_helo() local
280 int status; in mlfi_envfrom() local
320 int status; in mlfi_envrcpt() local
361 int status; in mlfi_header() local
401 int status; in mlfi_eoh() local
430 int status; in mlfi_body() local
466 int status; in mlfi_eom() local
495 int status; in mlfi_abort() local
[all …]
/PHP-5.5/sapi/nsapi/
H A Dnsapi-readme.txt111 the "code" parameter out. Your script can get the HTTP status code
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_sockets.c262 int status; in fpm_socket_af_inet_listening_socket() local
301 if ((status = getaddrinfo(addr, port_str, &hints, &servinfo)) != 0) { in fpm_socket_af_inet_listening_socket()
302 zlog(ZLOG_ERROR, "getaddrinfo: %s\n", gai_strerror(status)); in fpm_socket_af_inet_listening_socket()
H A Dfpm_children.c179 int status; in fpm_children_bury() local
183 while ( (pid = waitpid(-1, &status, WNOHANG | WUNTRACED)) > 0) { in fpm_children_bury()
190 if (WIFEXITED(status)) { in fpm_children_bury()
192 snprintf(buf, sizeof(buf), "with code %d", WEXITSTATUS(status)); in fpm_children_bury()
201 if (WEXITSTATUS(status) != FPM_EXIT_OK) { in fpm_children_bury()
205 } else if (WIFSIGNALED(status)) { in fpm_children_bury()
206 const char *signame = fpm_signal_names[WTERMSIG(status)]; in fpm_children_bury()
218 if (child && child->idle_kill && WTERMSIG(status) == SIGQUIT) { in fpm_children_bury()
222 if (WTERMSIG(status) != SIGQUIT) { /* possible request loss */ in fpm_children_bury()
225 } else if (WIFSTOPPED(status)) { in fpm_children_bury()
[all …]
H A Dfpm_conf.c849 char *status = wp->config->pm_status_path; in fpm_conf_process_all_pools() local
851 if (*status != '/') { in fpm_conf_process_all_pools()
852 …zlog(ZLOG_ERROR, "[pool %s] the status path '%s' must start with a '/'", wp->config->name, status); in fpm_conf_process_all_pools()
856 if (strlen(status) < 2) { in fpm_conf_process_all_pools()
857 zlog(ZLOG_ERROR, "[pool %s] the status path '%s' is not long enough", wp->config->name, status); in fpm_conf_process_all_pools()
861 for (i = 0; i < strlen(status); i++) { in fpm_conf_process_all_pools()
862 …if (!isalnum(status[i]) && status[i] != '/' && status[i] != '-' && status[i] != '_' && status[i] !… in fpm_conf_process_all_pools()
863 … path '%s' must contain only the following characters '[alphanum]/_-.'", wp->config->name, status); in fpm_conf_process_all_pools()
/PHP-5.5/sapi/fpm/
H A Dinit.d.php-fpm.in94 status)
H A Dphp-fpm.conf.in297 ; http://www.foo.bar/status
298 ; http://www.foo.bar/status?json
299 ; http://www.foo.bar/status?html
300 ; http://www.foo.bar/status?xml
302 ; By default the status page only outputs short status. Passing 'full' in the
305 ; http://www.foo.bar/status?full
306 ; http://www.foo.bar/status?json&full
307 ; http://www.foo.bar/status?html&full
308 ; http://www.foo.bar/status?xml&full
355 ;pm.status_path = /status
[all …]
H A DMakefile.frag23 @$(INSTALL_DATA) sapi/fpm/status.html $(INSTALL_ROOT)$(datadir)/fpm/status.html
H A Dconfig.m4148 int status;
157 waitpid(child, &status, 0);
639 …-fpm.conf sapi/fpm/init.d.php-fpm sapi/fpm/php-fpm.service sapi/fpm/php-fpm.8 sapi/fpm/status.html)
/PHP-5.5/sapi/cli/tests/
H A Dbug65066_100.phpt2 Bug #65066 (Cli server not responsive when responding with 422 http status code): 100 status code
H A Dbug65066_422.phpt2 Bug #65066 (Cli server not responsive when responding with 422 http status code): 422 status code
H A Dbug65066_511.phpt2 Bug #65066 (Cli server not responsive when responding with 422 http status code): 511 status code
/PHP-5.5/sapi/cli/
H A Dphp_cli_server.c1187 int color = 0, effective_status = status; in php_cli_server_log_response()
1198 if (status == 200) { in php_cli_server_log_response()
1922 const char *status_string = get_status_string(status); in php_cli_server_send_error_page()
1923 const char *content_template = get_template_string(status); in php_cli_server_send_error_page()
1978 append_http_status_line(&buffer, client->request.protocol_version, status, 1); in php_cli_server_send_error_page()
1998 php_cli_server_log_response(client, status, errstr ? errstr : "?" TSRMLS_CC); in php_cli_server_send_error_page()
2039 int status = 200; in php_cli_server_begin_send_static() local
2063 append_http_status_line(&buffer, client->request.protocol_version, status, 1); in php_cli_server_begin_send_static()
2360 int status = php_cli_server_client_read_request(client, &errstr TSRMLS_CC); in php_cli_server_recv_event_read_request() local
2361 if (status < 0) { in php_cli_server_recv_event_read_request()
[all …]
/PHP-5.5/sapi/apache_hooks/
H A Dmod_php5.c370 ((request_rec *) SG(server_context))->status = SG(sapi_headers).http_response_code; in sapi_apache_send_headers()
586 SG(sapi_headers).http_response_code = r->status; in init_request_info()
1332 int status = DECLINED; in php_access_hook() local
1336 status = sapi_stack_apply_with_argument_stop_if_http_error(&conf->access_handlers, in php_access_hook()
1339 return status; in php_access_hook()

Completed in 85 milliseconds

1234567891011