Home
last modified time | relevance | path

Searched refs:doc_root (Results 1 – 13 of 13) sorted by relevance

/PHP-5.5/sapi/cli/tests/
H A Dphp_cli_server.inc8 $doc_root = __DIR__;
11 file_put_contents($doc_root . '/' . ($router ?: 'index.php'), '<?php ' . $code . ' ?>');
21 $cmd = "{$php_executable} -t {$doc_root} -n -S " . PHP_CLI_SERVER_ADDRESS;
26 …$handle = proc_open(addslashes($cmd), $descriptorspec, $pipes, $doc_root, NULL, array("bypass_shel…
28 $cmd = "exec {$php_executable} -t {$doc_root} -n -S " . PHP_CLI_SERVER_ADDRESS;
34 $handle = proc_open($cmd, $descriptorspec, $pipes, $doc_root);
H A Dphp_cli_server_012.phpt11 $doc_root = __DIR__;
12 file_put_contents($doc_root . '/request.php', '<?php print_r($_REQUEST); ?>');
37 @unlink($doc_root . '/request.php');
/PHP-5.5/ext/opcache/tests/
H A Dphp_cli_server.inc8 $doc_root = __DIR__;
17 $cmd = "{$php_executable} -t {$doc_root} $ini -S " . PHP_CLI_SERVER_ADDRESS;
18 …$handle = proc_open(addslashes($cmd), $descriptorspec, $pipes, $doc_root, NULL, array("bypass_shel…
20 $cmd = "exec {$php_executable} -t {$doc_root} $ini -S " . PHP_CLI_SERVER_ADDRESS . " 2>/dev/null";
21 $handle = proc_open($cmd, $descriptorspec, $pipes, $doc_root);
/PHP-5.5/ext/curl/tests/
H A Dserver.inc13 $doc_root = __DIR__;
23 $cmd = "{$php_executable} -t {$doc_root} -n -S " . PHP_CURL_SERVER_ADDRESS;
25 …$handle = proc_open(addslashes($cmd), $descriptorspec, $pipes, $doc_root, NULL, array("bypass_shel…
27 $cmd = "exec {$php_executable} -t {$doc_root} -n -S " . PHP_CURL_SERVER_ADDRESS;
31 $handle = proc_open($cmd, $descriptorspec, $pipes, $doc_root);
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_main.c732 s1 = (char *) doc_root;
737 s2 = (char *) doc_root;
771 char *path, *doc_root, *server_name; local
817 if (doc_root) {
818 doc_root_len = strlen(doc_root);
819 if (doc_root_len > 0 && IS_SLASH(doc_root[doc_root_len - 1])) {
824 doc_root = estrndup(doc_root, doc_root_len);
825 zend_str_tolower(doc_root, doc_root_len);
832 efree(doc_root);
1143 if (!env_document_root && PG(doc_root)) {
[all …]
/PHP-5.5/sapi/cgi/
H A Dcgi_main.c791 s1 = (char *) doc_root;
796 s2 = (char *) doc_root;
833 char *path, *doc_root, *server_name; local
886 doc_root = FCGI_GETENV(request, "DOCUMENT_ROOT");
888 doc_root = getenv("DOCUMENT_ROOT");
891 if (doc_root) {
892 doc_root_len = strlen(doc_root);
898 doc_root = estrndup(doc_root, doc_root_len);
899 zend_str_tolower(doc_root, doc_root_len);
904 efree(doc_root);
[all …]
/PHP-5.5/main/
H A Dphp_globals.h82 char *doc_root; member
H A Dfopen_wrappers.c411 if (PG(doc_root) && path_info && (length = strlen(PG(doc_root))) &&
412 IS_ABSOLUTE_PATH(PG(doc_root), length)) {
416 memcpy(filename, PG(doc_root), length);
H A Dmain.c524 …STD_PHP_INI_ENTRY("doc_root", NULL, PHP_INI_SYSTEM, OnUpdateStringUnempty, doc_root, php_c…
/PHP-5.5/sapi/nsapi/
H A Dnsapi-readme.txt49 # directive, e.g. doc_root="/path"
/PHP-5.5/win32/
H A Dinstall.txt305 follow the next step. Set the doc_root to point to your web servers
308 doc_root = c:\inetpub\wwwroot // for IIS
310 doc_root = c:\apache\htdocs // for Apache
401 * Be sure the extension_dir and doc_root PHP directives are
405 extensions_dir value is "c:\php\ext" and an example IIS doc_root
/PHP-5.5/
H A Dphp.ini-development702 ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
707 doc_root =
H A Dphp.ini-production702 ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
707 doc_root =

Completed in 46 milliseconds