So everything works fine with drop zone if it is a small image. But if you take a photo that is lets say over 1.5mb then it fails to upload. Is there something I am missing on this?
It happens on both the computer and the phone.
Anyone got any ideas??
Have you checked your server settings to see what the maximum upload size is set to?
If may be set too low i.e. 1.5 mb
2 Likes
Ah ha that would make sense, did not think of that, now to find the setting lol
1 Like
see tip 14 on this thread.
https://community.wappler.io/c/wappler-general/howto
mostly php.ini within xampo or lamp:
-
php.ini file in your Drupal root directory.
upload_max_filesize = 10M
post_max_size = 10M
- Or try code below to your .htaccess file in your Web root directory.
php_value upload_max_filesize 10M
php_value post_max_size 10M
Cheers @Hyperbytes that did the trick. Did not even think about that one… Duh
1 Like