I'm using the mime class to try and send an attachment with php.....if i use the default php.ini settings, i get an error if trying to send a large file (it's about 2 M😎..if i send a 20k file, it works...the error i get is
Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 3242315 bytes) in /home/www/attach/mime_mail.inc on line 49
so if i change the php.ini file to say
memory_limit = "10M"
then I get an Internal Server Error
anyone know what is going on?