RE: [PHP] Re: File Upload Size Limits

2001-07-27 Thread Michael Conley
, 2001 7:27 AM To: [EMAIL PROTECTED] Subject: [PHP] Re: File Upload Size Limits I think you need to check your Apache time limits too. Michael Conley wrote: I am running PHP 4.0pl1 with Apache 1.3.14 on RedHat Linux 7.1. I am trying to do a file upload from the users PC to my web server. If I do

[PHP] File Upload Size Limits

2001-07-26 Thread Michael Conley
I am running PHP 4.0pl1 with Apache 1.3.14 on RedHat Linux 7.1. I am trying to do a file upload from the users PC to my web server. If I do a small file, the transfer goes fine. If I do a large file ( 50 MB), the transfer fails saying either the file was not available for reading or my script

RE: [PHP] File Upload Size Limits

2001-07-26 Thread Michael Conley
Did anyone have any thoughts on this? I can upload an 8 MB file, but after that the upload fails. -Original Message- From: Michael Conley [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 26, 2001 7:41 AM To: '[EMAIL PROTECTED]' Subject: [PHP] File Upload Size Limits I am running PHP

[PHP] Using PHP Variables with a Header

2001-07-09 Thread Michael Conley
I have a form that requires a user to enter various information (name, address, phone number, etc...). When they submit this form, the next PHP page checks to make sure that the required fields were filled in. What I would like to do is check to see if the required fields are all filled in and

[PHP] URL Variables

2001-05-22 Thread Michael Conley
First, I realize this isn't really a PHP question. If I include variables in a URL that I am passing to a web server over HTTPS, is the URL (and hence, the variables) encrypted? example: https://www.yourdomain.com?firstname=michaellastname=conley I need to make sure that the firstname and

RE: [PHP] xmlHTTP.send equiv?

2001-05-17 Thread Michael Conley
does anyone have info on this? -Original Message- From: Todd Kennedy [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 01, 2001 1:38 PM To: [EMAIL PROTECTED] Subject: [PHP] xmlHTTP.send equiv? Does anyone know of an equivilent for ASP's xmlHTTP.send command for PHP? i need to send a XML

[PHP] Incoming XML request

2001-05-17 Thread Michael Conley
I want to set up a page that can accept an XML string, which I will then parse for the data I need, perform a database lookup based on that data and return an XML string to the client. I am unsure of where to start this. 1. I don't know how to have my PHP page capture the XML string they send

[PHP] XML Parsing

2001-04-30 Thread Michael Conley
I am posting information to a credit card processing server. This is done over HTTPS (with cURL) and seems to work fine. I get the response that I want from the server, which consists of an XML doc with about 20 tags and their corresponding values. I have gone through the mailing list and

[PHP] fsockopen question

2001-04-26 Thread Michael Conley
I am looking to process credit card transactions on my site. In order to do this, I need to open a socket to a particular URL. I then submit an XML string to them. They process the string and send me a response. I am going to a certain (secure) location on the site of my credit card processor

RE: [PHP] fsockopen question

2001-04-26 Thread Michael Conley
); to parse. Should be easily modified Matthew Luchak Webmaster Kaydara Inc. [EMAIL PROTECTED] -Original Message- From: Michael Conley [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 26, 2001 12:37 PM To: '[EMAIL PROTECTED]' Subject: [PHP] fsockopen

[PHP] Compressing an upload

2001-04-25 Thread Michael Conley
I am going to have a page that will be used for visitors to upload a file to my web server. I already use gzcompress to compress some of the pages that I send to visitors, but can I also compress files that they are uploading to my web server? They will be text files and some may be fairly

[PHP] File Transfer over HTTPS

2001-04-24 Thread Michael Conley
script, but now I need to figure out how to do it without the browser interface. Any help is appreciated Michael Conley -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators

RE: [PHP] File Transfer over HTTPS

2001-04-24 Thread Michael Conley
the file c:\wow\info.txt from the user to my web server over https? -Original Message- From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 24, 2001 2:45 PM To: Michael Conley Cc: '[EMAIL PROTECTED]' Subject: RE: [PHP] File Transfer over HTTPS My goal is to have someone

RE: [PHP] Variable value doesn't stay Null

2001-03-15 Thread Michael Conley
e database table. If I recall correctly, some MySQL numeric field types default to "0" when an empty string gets written to them. The problem (and solution) may not be in the PHP script at all. Kirk -Original Message- From: Michael Conley [mailto:[EMAIL PROTECTED]] Sent: Thursd

[PHP] Files only available via HTTPS

2001-02-01 Thread Michael Conley
I have several PHP files that I only want users to be able to access via HTTPS. How can I control that on an Apache 1.3.14 server running on RedHat 7? I have openssl and mod_ssl working fine. Currently, I can access all of the files on my site via either http or https. I want to keep certain