I have these settings in my php.ini file
memory_limit = 32M ;
set_time_limit = 3600;
max_input_time = 3600;
upload_max_filesize = 10M ;
post_max_size = 12M ;
max_execution_time = 500 ;
I can easily upload a file of 500k but it fails on a file of 2.7Mb with "Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 13056 bytes)"
I'm confused as I've looked all around the web for solutions and it seems I've covered all bases with my ini settings?
Any advice please?