Resource icon

Unclutter - Get Inactive Website Status 0.2

No permission to download

cronoszeu

New Member
Hi,

Version 1.4
member loop:
PHP:
$ch = curl_init($url);
if (!$ch) {
    die("Couldn't initialize a cURL handle");
}
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_NOBODY, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 2);

$c = curl_exec($ch);

$http_codes = parse_ini_file("./plugins/Unclutter/check.ini");

$http_status_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
$http_status_text = ($http_status_code > 0) ? $http_codes[curl_getinfo($ch, CURLINFO_HTTP_CODE)] : 'Failed';
curl_close($ch);

$extra .= "<td align=\"center\">{$http_status_code} | {$http_status_text}</td>";
Added the close but same thing white page. And this only with enabled plugin. Nothing in error log.
 

Basti

Administrator
Staff member
Then i would need to look at the issue personally and try few things.
I would need via Conversation
1) admin pass ( you can change when we done, or before )
2) url and ftp info ( can be a temporary created ftp account, not need your main )
 
Top