Re: [PHP] POST multipart/form-data temp files not being created. File_upload directive is resetting to "No."

2005-03-11 Thread Shawn Kelly
Richard Lynch you are my new best friend! grep -n uploads /etc/httpd/conf/httpd.conf tells me "279:php_admin_value file_uploads off". I don't know how I could have missed it! I changed httpd.conf to have php_admin_value file_uploads On and everything worked like it was supposed to this morning be

[PHP] Re: Sending data via POST

2005-03-11 Thread Shawn Kelly
This is from php.net: Just change the $out to fill with your POST request (instead of the GET).  Works good, you can change ports. :)   $fp = fsockopen("www.example.com", 80, $errno, $errstr, 30);if (!$fp) {   echo "$errstr ($errno)\n";} else {   $out = "GET / HTTP/1.1\r\n";   $out .= "Host:

[PHP] POST multipart/form-data temp files not being created. File_upload directive is resetting to "No."

2005-03-11 Thread Shawn Kelly
so causing my $_FILES variable to be empty and my actual file data to be thrown into the trash. If you read all the way to the bottom, I must thank you for your time! My respect and admiration to the PHP community! cudos, Shawn Kelly. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php