Re: [PHP] Problems downloading files via https in IE 6

2003-12-06 Thread Kelly Hallman
On Sat, 6 Dec 2003, Geoffrey Thompson wrote: header(Content-Type:application/csv); header(Content-Disposition:attachment; filename=downloadFile.csv); header(Content-Transfer-Encoding:binary); fpassthru($fp); This works great in Mozilla and IE 6 via http, and it works in Mozilla via

Re: [PHP] Problems with files!!!!!

2001-04-01 Thread David Robley
On Sat, 31 Mar 2001 21:31, Ales Kunst wrote: Hi, I have a strange kind of a problem. I'm cannot write to files on a server (i'm having virtual host) where i got my domain name. The server is running Apache 1.3.x and is having php3.0.8 installed. The code looks like this: html body ?php

Re: [PHP] Problems with files!!!!!

2001-04-01 Thread Jon Jacob
David Robley wrote: On Sat, 31 Mar 2001 21:31, Ales Kunst wrote: Hi, I have a strange kind of a problem. I'm cannot write to files on a server (i'm having virtual host) where i got my domain name. The server is running Apache 1.3.x and is having php3.0.8 installed. The code looks

RE: [PHP] Problems with files!!!!!

2001-04-01 Thread Tyrone Mills
: Sunday, April 01, 2001 7:40 PM Cc: Ales Kunst; [EMAIL PROTECTED] Subject: Re: [PHP] Problems with files! David Robley wrote: On Sat, 31 Mar 2001 21:31, Ales Kunst wrote: Hi, I have a strange kind of a problem. I'm cannot write to files on a server (i'm having virtual host) where i

Re: [PHP] Problems with files!!!!!

2001-04-01 Thread Jon Jacob
Tyrone Mills wrote: I don't know if it's been mentioned or not, but I have found that unless the file exists, I can't open it. Have you verified that the file exists and the user that the script will run as has the appropriate permissions? I think you are mistaken. According to the PHP

Re: [PHP] Problems uploading Files

2001-03-23 Thread Carsten Gehling
From: "Kilian" [EMAIL PROTECTED] Sent: Thursday, March 22, 2001 7:28 PM The user the webserver process runs under may not have the permission to upload the file. In many cases, the webserver runs as nobody. Thus, if you want to upload a file, nobody needs write-access to the directory into

RE: [PHP] Problems uploading Files

2001-03-23 Thread PHPBeginner.com
You have to chmod that directory (not needed for FTP of course) Sincerely, Maxim Maletsky Founder, Chief Developer PHPBeginner.com (Where PHP Begins) [EMAIL PROTECTED] www.phpbeginner.com -Original Message- From: Renzi, Sebastian [mailto:[EMAIL PROTECTED]] Sent: Friday, March

RE: [PHP] Problems uploading Files

2001-03-22 Thread John Almberg
Hello Sebastian, What a timely posting! I am trying to figure out how to allow a user (using any internet-connected pc) to upload a file to my PHP-enabled server. I am trying to use PHP and the FTP functions, but can't figure out how to address the file on the user's machine. Any hints from

Re: [PHP] Problems uploading Files

2001-03-22 Thread Kilian
Renzi, Sebastian [EMAIL PROTECTED] wrote: Hello again ! , i have a script that uploads a file , when i use the function move_uploaded_file() an error raises ,"Permission denied ." ,but if i upload the same file thru an ftp client it works correctly ! The user the webserver process runs

Re: [PHP] Problems uploading Files

2001-03-22 Thread Kilian
John Almberg [EMAIL PROTECTED] wrote: [...] Someone else suggested that I use an HTML 'upload', but I can't find anything about this in my HTML documentation. input type="file" ... -- Kilian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: [PHP] Problems uploading Files

2001-03-22 Thread Julian Wood
Sebastian, Apache is running as a user, usually nobody:nobody, or sometimes www:www. That user is trying to move the file when you do the move in php. When you login through an ftp client, a different user is doing the move (you). You need to make sure that the user nobody has enough