dwisn wrote: #1 ) Thanks again Steve, you saved my butt
#2 ) I promise, I'll start learning framework....
&3 ) For anyone having issues using MS IE and trying to download across SSL and having problems... I found a fix that works...
For a per-computer setting, locate the following registry key:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings
On the Edit menu, click Add Value, and then add the following registry values:
"BypassSSLNoCacheCheck"=Dword:00000001
PER USER SETTING
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet
Settings
"BypassSSLNoCacheCheck"=Dword:00000001
I HAVE AN UPDATE.. TESTED ACROSS SSL XP ServicePack 3 07/19/2009
In ~/actions
file export_csv.php
current lines:
header("Content-type: text/csv; charset={$app->_conf['oe']}");
header('Content-disposition: attachment; filename="'.$query['-table'].'_results_'.date('Y_m_d_H_i_s').'.csv"');
add:
header("Content-type: text/csv; charset={$app->_conf['oe']}");
header("Pragma: public");
header('Content-disposition: attachment; filename="'.$query['-table'].'_results_'.date('Y_m_d_H_i_s').'.csv"');
and this solved the issue. you should not have to edit within regedit