$url=JURI::root()."/404";
$data = file_get_contents($url) or die("Cannot open URL");
echo $data;
}
То уже пишет на странице: Cannot open URL и всё
<?php if($this->error->getCode()=='404') { header("HTTP/1.0 404 Not Found"); $url=JURI::root()."/404"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_TIMEOUT, 10); $data = curl_exec ($ch); curl_close($ch); echo $data; }
Обсуждают сегодня