Topic: Attach Document size

I tried attaching various documents file size,  the maximum single file that i can attached is about 123 kb, i tried higher file size about 700kb and 1500kb but it fails to attach.

Is there any limitation in the file size attachment or a solution to increase attach document size.

Re: Attach Document size

I guess there is a limitation on upload size in your php.ini file. Please increase this value inside the php.ini file.

/Joe

Re: Attach Document size

I changed the following in my php.ini file but still i cannot attached.

; Maximum allowed size for uploaded files.
upload_max_filesize = from to 10 to 1000M


; Maximum size of POST data that PHP will accept.
post_max_size = from 8 to 800M

Any further help?

Re: Attach Document size

Did you restart the Apache/IIS server?

/Joe

Re: Attach Document size

Yes my Apache/IIS server automatically restarts  but still not working
Also i refresh my browser but still the same

6 (edited by samar 10/04/2011 02:49:05 pm)

Re: Attach Document size

Try these different settings in C:\wamp\bin\apache\apache2.2.8\bin\php.ini


Find:
post_max_size = 8M
upload_max_filesize = 2M
max_execution_time = 30
max_input_time = 60
memory_limit = 8M

Change to:
post_max_size = 750M
upload_max_filesize = 750M
max_execution_time = 5000
max_input_time = 5000
memory_limit = 1000M

and then restart your server & mysql

Re: Attach Document size

Hi Samar,

I followed your procedure below, but still i cannot attached a large file around 700kb.
Looking forward for any further help!

________________
Change to:
post_max_size = 750M
upload_max_filesize = 750M
max_execution_time = 5000
max_input_time = 5000
memory_limit = 1000M

and then restart your server & mysql
_____________________