From 5970cc278277cb918cf8c8b5b48b0ca8f813f214 Mon Sep 17 00:00:00 2001 From: james Date: Thu, 6 Nov 2008 19:06:31 +0000 Subject: [PATCH] Make backup/restore work in Internet Exploder over SSL --- config/backuprestore.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/backuprestore.php b/config/backuprestore.php index 7269029..bd7909c 100644 --- a/config/backuprestore.php +++ b/config/backuprestore.php @@ -79,6 +79,8 @@ while($tr=mysql_fetch_row($tableq)) { header("Content-Type: text/sql"); header("Content-Disposition: attachment; filename=sfiab_backup_".date("Y-m-d-H-i-s",$ts).".sql"); header("Content-Length: ".strlen($dump)); +//Make IE with SSL work +header("Pragma: public"); echo $dump; } else if($_POST['action']=="restore") {