fix: if no php-curl, can show error message now
parent
326e7ba0e5
commit
be07cced24
|
@ -67,7 +67,9 @@ if (isset($_SERVER['USER'])&&$_SERVER['USER']==='qcloud') {
|
||||||
} else {
|
} else {
|
||||||
include 'platform/Normal.php';
|
include 'platform/Normal.php';
|
||||||
if (!function_exists('curl_init')) {
|
if (!function_exists('curl_init')) {
|
||||||
return message('<font color="red">Need curl</font>, please install php-curl.', 'Error', 500);
|
http_response_code(500);
|
||||||
|
echo '<font color="red">Need curl</font>, please install php-curl.';
|
||||||
|
exit(1);
|
||||||
}
|
}
|
||||||
$path = getpath();
|
$path = getpath();
|
||||||
//echo 'path:'. $path;
|
//echo 'path:'. $path;
|
||||||
|
|
Loading…
Reference in New Issue