[PHP] Temp File missing Win2k

2001-12-28 Thread Ben Edwards
I am ruining PHP with IIS on Win2k. I am using a PHP app which was working fine but when the app douse a file/upload/submit in the page posted to the temporary file seems not to exist. This was working fine on my Win98 setup. Any idea what is wrong? Ben -- PHP General Mailing List

[PHP] temp file part II

2001-04-18 Thread Randy Johnson
I have not managed to get IE to download my file on the fly as suggested. so I was wondering if there are any other suggestions on how I can create a temp file for download and after the download is complete the file is deleted. thanks randy Instead of: header("Content-disposition:

[PHP] temp file help

2001-04-17 Thread Randy Johnson
The following code downloads information on the fly and saves it as a file on the user's hard drive. It works great in Netscape downloads data properly but in Internet explorer it doesn't work. Here is the error I get any ideas? IE was not able to open this site the site is either unavailable

Re: [PHP] temp file help

2001-04-17 Thread Joe Stump
This is a wonderful IE "feature" - it just tries to open everything regardless of the browser type. I'd be interested in any working workarounds for this. I've even sent my own type headers ... all to no avail. --Joe On Mon, Apr 16, 2001 at 03:30:30PM -0700, Randy Johnson wrote: The following

Re: [PHP] temp file help

2001-04-17 Thread Phil Driscoll
Instead of: header("Content-disposition: filename=backup.csv"); try header('Content-Disposition: attachment; filename=backup.csv'); Cheers -- Phil Driscoll Dial Solutions +44 (0)113 294 5112 http://www.dialsolutions.com http://www.dtonline.org -- PHP General Mailing List

RE: [PHP] temp file help

2001-04-17 Thread Randy Johnson
: [PHP] temp file help Instead of: header("Content-disposition: filename=backup.csv"); try header('Content-Disposition: attachment; filename=backup.csv'); Cheers -- Phil Driscoll Dial Solutions +44 (0)113 294 5112 http://www.dialsolutions.com http://www.dtonline.org -- PHP General Ma

[PHP] TEmp File

2001-03-29 Thread Randy Johnson
Here is the scenario: I want to let my users download their history of transactions from a mysql database. I have that part working...they click a link a csv file is created for them to download. now here is my question. Is there a way to have the file delete after they have downloaded it?

Re: [PHP] TEmp File

2001-03-29 Thread David Robley
On Fri, 30 Mar 2001 15:10, Randy Johnson wrote: Here is the scenario: I want to let my users download their history of transactions from a mysql database. I have that part working...they click a link a csv file is created for them to download. now here is my question. Is there a way to