打开phpmyadmin时发生致命错误,浏览器在访问wp-admin时显示空白页面。
确切的错误是
Fatal error: Call to undefined function mb_detect_encoding() in C:\xampp\phpMyAdmin\libraries\php-gettext\gettext.inc on line 177
我的路径是http://localhost/phpmyadmin/
此错误的另一部分是在访问wp-admin页面时,该页面只显示一个空白页面,没有显示任何错误。
路径http://localhost/eCommerce/wp-admin/
我正在尝试在IIS-8中返回默认的404错误页。我使用的是以下代码:
// Return 404 in case no product was found
if($product_index == -1) {
header('HTTP/1.0 404 Not Found');
exit;
}
这段代码返回404-错误,但是页面是空白的。
有没有办法使用PHP包含默认的404错误页面?
我有一个重定向页面的PHP函数:
function _IS_Redirect_($url) {
if(!headers_sent()) {
//If headers not sent yet... then do php redirect
header('Location: '.$url);
exit;
} else {
//If headers are sent... do javascript redirect... if javascript disabled, do html redirec