Home
last modified time | relevance | path

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

1234567891011

/PHP-7.0/win32/
H A Dinstall.txt457 php-cgi.exe) then check "Set extension status to Allowed" and click OK.
821 Your script can get the HTTP status code with $_SERVER['ERROR_TYPE'].
859 You can check the status by using the phpinfo() function.
1793 response status can be sent with header(). If only GET and POST methods
/PHP-7.0/scripts/dev/
H A Dphpextdist15 rm -rf modules *.lo *.o *.la config.status config.cache \
/PHP-7.0/
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];
604 function showstatus($item, $status, $reason = '') { argument
606 switch($status) {
989 $status = "failed";
991 $status = "success";
1032 … !post_result_data("status=$status&version=".urlencode(TESTED_PHP_VERSION),$failed_tests_data)) {
H A Drun-tests.php413 $status = "failed";
415 $status = "success";
470 …if ($just_save_results || !mail_qa_team($failed_tests_data, $compression, $status) && !TRAVIS_CI) {
1021 function mail_qa_team($data, $compression, $status = false) argument
1051 fwrite($fs, "POST " . $path . "?status=$status&version=$php_version HTTP/1.1\r\n");
/PHP-7.0/scripts/
H A DMakefile.frag49 $(builddir)/phpize: $(srcdir)/phpize.in $(top_builddir)/config.status
50 (CONFIG_FILES=$@ CONFIG_HEADERS= $(top_builddir)/config.status)
52 $(builddir)/php-config: $(srcdir)/php-config.in $(top_builddir)/config.status
53 (CONFIG_FILES=$@ CONFIG_HEADERS= $(top_builddir)/config.status)
/PHP-7.0/sapi/phpdbg/
H A Dphpdbg.init.d110 status)
111 status $PHPDBG
/PHP-7.0/sapi/fpm/tests/
H A Dfcgi.inc156 * Get the keep alive status
181 * Get the pesistent socket status
H A D010.phpt2 FPM: Test status page
24 pm.status_path = /status
33 echo run_request('127.0.0.1', $port, '/status');
35 $html = run_request('127.0.0.1', $port, '/status', 'html');
38 $json = run_request('127.0.0.1', $port, '/status', 'json');
41 $xml = run_request('127.0.0.1', $port, '/status', 'xml');
/PHP-7.0/sapi/fpm/
H A Dwww.conf.in180 ; http://www.foo.bar/status
181 ; http://www.foo.bar/status?json
182 ; http://www.foo.bar/status?html
183 ; http://www.foo.bar/status?xml
185 ; By default the status page only outputs short status. Passing 'full' in the
188 ; http://www.foo.bar/status?full
189 ; http://www.foo.bar/status?json&full
190 ; http://www.foo.bar/status?html&full
191 ; http://www.foo.bar/status?xml&full
238 ;pm.status_path = /status
[all …]
H A Dconfig.m4148 int status;
157 waitpid(child, &status, 0);
670 …/www.conf sapi/fpm/init.d.php-fpm sapi/fpm/php-fpm.service sapi/fpm/php-fpm.8 sapi/fpm/status.html)
H A DMakefile.frag28 @$(INSTALL_DATA) sapi/fpm/status.html $(INSTALL_ROOT)$(datadir)/fpm/status.html
/PHP-7.0/sapi/litespeed/
H A Dlsapi_main.c1151 int status; in start_children() local
1192 pid = wait( &status ); in start_children()
H A Dlsapilib.c2594 int status, pid; in lsapi_sigchild() local
2598 pid = waitpid( -1, &status, WNOHANG|WUNTRACED ); in lsapi_sigchild()
2603 if ( WIFSIGNALED( status )) in lsapi_sigchild()
2605 int sig_num = WTERMSIG( status ); in lsapi_sigchild()
2606 int dump = WCOREDUMP( status ); in lsapi_sigchild()
/PHP-7.0/sapi/fpm/fpm/
H A Dfpm_sockets.c259 int status; in fpm_socket_af_inet_listening_socket() local
288 if ((status = getaddrinfo(addr, port_str, &hints, &servinfo)) != 0) { in fpm_socket_af_inet_listening_socket()
289 zlog(ZLOG_ERROR, "getaddrinfo: %s\n", gai_strerror(status)); in fpm_socket_af_inet_listening_socket()
H A Dfpm_conf.c863 char *status = wp->config->pm_status_path; in fpm_conf_process_all_pools() local
865 if (*status != '/') { in fpm_conf_process_all_pools()
866 …zlog(ZLOG_ERROR, "[pool %s] the status path '%s' must start with a '/'", wp->config->name, status); in fpm_conf_process_all_pools()
870 if (strlen(status) < 2) { in fpm_conf_process_all_pools()
871 zlog(ZLOG_ERROR, "[pool %s] the status path '%s' is not long enough", wp->config->name, status); in fpm_conf_process_all_pools()
875 for (i = 0; i < strlen(status); i++) { in fpm_conf_process_all_pools()
876 …if (!isalnum(status[i]) && status[i] != '/' && status[i] != '-' && status[i] != '_' && status[i] !… in fpm_conf_process_all_pools()
877 … path '%s' must contain only the following characters '[alphanum]/_-.'", wp->config->name, status); in fpm_conf_process_all_pools()
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 …]
/PHP-7.0/sapi/cli/tests/
H A Dphp_cli_server.inc42 $status = proc_get_status($handle);
45 if (!($status && $status['running'])) {
83 $status = proc_get_status($handle);
84 if (!($status && $status['running'])) {
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-7.0/sapi/cli/
H A Dphp_cli_server.c1082 int color = 0, effective_status = status; in php_cli_server_log_response()
1093 if (status == 200) { in php_cli_server_log_response()
1894 const char *status_string = get_status_string(status); in php_cli_server_send_error_page()
1895 const char *content_template = get_template_string(status); in php_cli_server_send_error_page()
1950 append_http_status_line(&buffer, client->request.protocol_version, status, 1); in php_cli_server_send_error_page()
1970 php_cli_server_log_response(client, status, errstr ? errstr : "?"); in php_cli_server_send_error_page()
2011 int status = 200; in php_cli_server_begin_send_static() local
2048 append_http_status_line(&buffer, client->request.protocol_version, status, 1); in php_cli_server_begin_send_static()
2372 int status = php_cli_server_client_read_request(client, &errstr); in php_cli_server_recv_event_read_request() local
2373 if (status < 0) { in php_cli_server_recv_event_read_request()
[all …]
/PHP-7.0/sapi/apache2handler/
H A Dsapi_apache2.c156 ctx->r->status = SG(sapi_headers).http_response_code; in php_apache_sapi_send_headers()
309 r->status = SG(sapi_headers).http_response_code; in php_apache_sapi_flush()
483 SG(sapi_headers).http_response_code = !r->status ? HTTP_OK : r->status; in php_apache_request_ctor()
651 …if (parent_req && parent_req->status != HTTP_OK && parent_req->status != 413 && strcmp(r->protocol… in php_handler()
H A Dapache_config.c53 char status; member
57 … char *real_value_hnd(cmd_parms *cmd, void *dummy, const char *name, const char *value, int status) in real_value_hnd() argument
70 e.status = status; in real_value_hnd()
87 …st char *real_flag_hnd(cmd_parms *cmd, void *dummy, const char *arg1, const char *arg2, int status) in real_flag_hnd() argument
98 return real_value_hnd(cmd, dummy, arg1, bool_val, status); in real_flag_hnd()
129 if (new_per_dir_entry->status >= orig_per_dir_entry->status) { in should_overwrite_per_dir_entry()
131 …s (%d vs. %d)\n", ZSTR_VAL(hash_key->key), new_per_dir_entry->status, orig_per_dir_entry->status)); in should_overwrite_per_dir_entry()
180 …if (zend_alter_ini_entry_chars(str, data->value, data->value_len, data->status, data->htaccess?PHP… in apply_config()
H A Dphp_functions.c87 if (rr->status != HTTP_OK) { in PHP_FUNCTION()
133 if (rr->status == HTTP_OK) { in PHP_FUNCTION()
136 ADD_LONG(status); in PHP_FUNCTION()
/PHP-7.0/sapi/cgi/
H A Dcgi_main.c1742 int status = 0; local
2061 if (wait(&status) >= 0) {
2071 while (wait(&status) < 0) {

Completed in 120 milliseconds

1234567891011