Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 88

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 215

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 216

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 217

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 218

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 219

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 220
--TEST-- FR #62702 (Make baseuri case-insensitive) --SKIPIF-- --INI-- yaf.use_namespace=0 --FILE-- route($request); var_dump($request->getControllerName()); $request = new Yaf_Request_Http("/Sample/ABC", "/sample"); $router->route($request); var_dump($request->getControllerName()); $router = new Yaf_Route_Map(true); $request = new Yaf_Request_Http("/sample/A/B/C", "/sample"); $router->route($request); var_dump($request->getControllerName()); $request = new Yaf_Request_Http("/sample", "/sAmplE/"); $router->route($request); var_dump($request->getControllerName()); $router = new Yaf_Route_Regex("#^/test#", array("controller" => "info"), array()); $request = new Yaf_Request_Http("/test/", "/Test"); $router->route($request); var_dump($request->getControllerName()); $request = new Yaf_Request_Http("/sample/test", "/sAmplE"); $router->route($request); var_dump($request->getControllerName()); $router = new Yaf_Route_Rewrite("/test", array("controller" => "info"), array()); $request = new Yaf_Request_Http("/test/", "/Test"); $router->route($request); var_dump($request->getControllerName()); $request = new Yaf_Request_Http("/sample/test", "/sAmplE"); $router->route($request); var_dump($request->getControllerName()); $router = new Yaf_Route_Rewrite("/sample/", array("controller" => "info"), array()); $request = new Yaf_Request_Http("/sample/test", "/sam"); $router->route($request); var_dump($request->getControllerName()); ?> --EXPECTF-- NULL string(3) "Abc" string(5) "A_B_C" NULL NULL string(4) "Info" NULL string(4) "Info" string(4) "Info"