Jump to content

max file size help


aladiyat23

Recommended Posts

Hi,
I got my form working with attachments being sent, but only small file sizes.
After adjustments to php.ini by the host, and a .htaccess file my files are just getting "stuck" in transmission now...
and not refreshing to the confirmation page but freezing in between.

Does anyone know why this would happen? Should I format my confirmation redirection differently?

if (@mail($to, $subject, $message, $headers))
    echo '<META HTTP-EQUIV="REFRESH" CONTENT="0;URL=http://www.dmmipromotions.com/submission.html">';
else
echo "An error has occured. Please fill out the form and try again";
  }
} else {
?>

Thanks a lot for any advice :)
Link to comment
Share on other sites

php mail function relies on other binaries like sendmail etc. to send the mail through your server. Normally the mail function would queue the out going mails to the server queue for outgoing mails. Now if your server is busy and has many mail requests pending it should take time to go out of the server. Check details on the configurations of your server and the dependencies like sendmail or smtp etc.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.