Jump to content

paltar

Newbie
  • Posts

    1
  • Joined

  • Last visited

Everything posted by paltar

  1. Проблема в следующем: На сайте все изображения хранятся в директории недоступной с под веб. Для вывода изображений я написал небольшой скрип (download_uploads.php). $fh = fopen($path_to_file,r); $file = fread($fh, filesize($path_to_file)); fclose($fh); header("Pragma: public"); header("Expires: 0"); header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header("Cache-Control: public"); header("Content-Description: File Transfer"); $header_to_output = "Content-type: " . $upload_data['mime']; header($header_to_output); $header="Content-Disposition:inline;filename=".$upload_data['original_name']; header($header); header("Content-Transfer-Encoding: binary"); header("Content-Length: ".filesize($path_to_file)); echo $file; Изображения отображаются прекрасно. Мне необходимо изменить "Document Title" которое по умолчанию "download_uploads.php (JPEG image ...)". Возможно ли это ??
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy