I am trying to download or view documents in a blob over ssl. It works over http but not https.
Here is a code snippet...
ociexecute ($stmt,OCI_DEFAULT);
while (ocifetchinto($stmt,&$arr,OCI_RETURN_LOBS+OCI_ASSOC))
{
header("Content-Type: $arr[FILETYPE]");
header("Pragma: no-cache");
header("Expires: 0");
print $arr[UPFILE];
}
ocifreestatement($stmt);
ocilogoff($conn);
Thanks in advance for you help. I appreciate it.