Hmm.. sounds like a PHP configuration issue. You have to adjust the post_max_size and upload_max_filesize to enable uploads larger than 10MB. Do you have direct access the php.ini file? If you are on a shared plan, you probably won't so for now you'll have to modify these values by using a .htaccess file.
Follow these steps:
1) Go to DFH's admin panel --> Info --> PHP info.
2) Check the current values of the two attributes mentioned above (post_max_size and upload_max_filesize)
3) Extract the .htaccess.rar included in the DFH zip file and modify the file.
4) Delete everything in the .htaccess file and paste the following:
- Code: Select all
php_value post_max_size 100M
php_value upload_max_filesize 100M
<Files *.dfh>
order allow,deny
deny from all
</Files>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]+)/?$ download.php?file=$1 [L]
Change 100M to whatever maximum file size upload you want.
5) Go back to DFH's admin panel --> Info --> PHP info and check if the values have changed.
6) If the values have changed, try to upload a file greater than 10MB.
Let me know what happens.