|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2003-02-12 22:55 UTC] angel at mail dot hbu dot edu dot cn
I installed Redhat 8.0 as default,I can send a mail less than 4M successfully with function Mail() (PHP4.22),but when i send a mail over 4M,Error"The Page can't display" occurs how can i change this to a larger (for example 10M)? PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 06 15:00:02 2025 UTC |
May be the problem is in memory_limit configuration option? When you attach message of 4Mb PHP eats 4Mb from server memory to store message. Try to ini_set("memory_limit", "20M") before mail() in your script.