Lines Matching full:php
1 <?php
4 * Forwarder/Router to doku.php
6 …* In normal usage, this script simply redirects to doku.php. However it can also be used as a rout…
7 …* script with PHP's builtin webserver. It takes care of .htaccess compatible rewriting, directory/…
12 * php -S localhost:8000 index.php
20 require_once(DOKU_INC . 'inc/init.php');
34 require $_SERVER['DOCUMENT_ROOT'] . '/lib/exe/fetch.php';
38 require $_SERVER['DOCUMENT_ROOT'] . '/lib/exe/detail.php';
43 require $_SERVER['DOCUMENT_ROOT'] . '/doku.php';
45 $_SERVER['SCRIPT_NAME'] !== '/index.php' &&
59 if (str_ends_with($_SERVER['SCRIPT_NAME'], '.php')) {
60 # php scripts
68 // working around https://bugs.php.net/bug.php?id=61286
72 } elseif ($request_path != '/' && $request_path != '/index.php') {
76 require $_SERVER['DOCUMENT_ROOT'] . '/doku.php';