If you want to work with big files uploads (photos, videos, CSV data dumps) you might need to prepare your PHP server for this — increase the values of these variables in your php.ini
:
upload_max_filesize = 512M
post_max_size = 512M
memory_limit = 512M
The same should be done if you try to upload SQL dumps by phpMyAdmin and get a correspondent error message.