[thelist] STILL working on PHP reconfiguration.

Monique Angelich listmail at devedia.com
Wed Apr 7 02:18:36 CDT 2004


Ok. Ignore this. I found the problem. There was one more setting to use for the configurations, post max upload I believe its called.

Thank you for your tolerance w/ my questions.

--- Monique


Original Message:
-From: "Monique Angelich" <listmail at devedia.com>
-To: <thelist at lists.evolt.org>
-Subject: [thelist] STILL working on PHP reconfiguration.
-Date: Tue, 6 Apr 2004 23:37:26 -0700

-A summary of what I have tried: 
-
-OK, this isn't going to be fun to explain, but please bear with me.
-
-I need to upload files to the website. The maximum file size ever being uploaded will be 15 megs. PHP's default install is 2 megs.
-
-Now I already updated the php.ini file to the settings I need, the extra time to process the script, the extra memory needed AND changed the default max value to 16 megs (for wiggle room).
-
-The upload form errors out at anything over 2 megs. I tried the hidden form field w/ the maximum file upload value, in bytes. Still no dice. 
-[ input type="hidden" name="MAX_FILE_SIZE" value="17137664"  assuming bytes, this number equals 16.3 megs roughly]
-
-The php.ini is working, apache was restarted, the form has the hidden field and it STILL won't uplaod anything over 2 megs. 
-
-What could I be missing? I shouldn't have to do a full reinstall, since php.ini is set.. this is just driving me bonkers.
-
-my file: http://www.telasell.com/clients.htm
-username: test
-password: test
-
-it craps out on file move. I can't locate the temp directory it is using for the actual upload, but that doesn't seem to be the issue. Is there a max limit on the file move? here is my actual code, it craps out right before the file move error.
-
-if ($userfile!=null) {
-	if (file_exists($UploadDir.$userfile_name)){ 
-		$retmsg_error.= "file already exists<br>\n"; 
-		$err=true;
-	}
-	$res = move_uploaded_file($tmp_name, $UploadDir.$userfile_name);
-	if (!$res) {
-		$retmsg_error.= "file move failure!<br>\n"; 
-		$err=true;
-	}else{
-		$m_subject.=$companyname;
-		$retmsg.= "$userfile_name was uploaded successfully.<br>\n";
-	}
-}else{ 
-	$retmsg_error.= "No file uploaded\n";
-	$err=true;
-}
-
-if($err==true){
-	setcookie("auth","");
-	ReturnError($retmsg_error);
-}else{
-	SEND_MAIL_user($site_mail, $m_from, $m_subject, $userfile_name, $UploadDir);
-	SEND_MAIL_tela($site_mail, $site_mail, $m_subject, $userfile_name, $UploadDir);
-	setcookie("auth","");
-	DoResult();
-}
-
-
-The php info file shows that all my mods are in effect for the ini file. Any other suggestions?
-
---- Monique
-
-
--- 
-* * Please support the community that supports you.  * *
-http://evolt.org/help_support_evolt/
-
-For unsubscribe and other options, including the Tip Harvester 
-and archives of thelist go to: http://lists.evolt.org 
-Workers of the Web, evolt ! 
-
-




More information about the thelist mailing list