Typo3: remove Email attachment size limit -


i have contact form on website possibility add attachment email. it's normal form configured this:

position* | *position=input name* | *name=input vorname* | *vorname=input firma | firma=input strasse | strasse=input plz / ort | plz_ort=input land | land=input telefon g | telefon_g=input telefon p | telefon_p=input mobile | mobile=input email* | *email=input website | homepage=input ihre nachricht | ihre_nachricht=textarea,,5 cv | attachment1=file, 4096000  | formtype_mail=submit  | html_enabled=hidden | 1  | subject=hidden | kontaktformular internet 

the problem is, files aren't attached email, if bigger 2mb. upload doesn't have problem, if add 2 or more attachments, smaller 2 mb. formmailmaxattachmentsize shouldn't problem, because it's set 25000000.

i've searched solutions on internet didn't find me solve issue.

the version of typo3 4.4.2

some operating systems (like debian) come default upload size of 2 mb php uploads.

please check configuration settings "upload_max_filesize" , "post_max_size" in php.ini of webserver.

do both contain value greater 2 mb? if not, please set limits value greater 2 mb. example below sets upload limit 10 mb.

upload_max_filesize = 10m post_max_size = 10m 

Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -