Hello. I can't seem to get the file uploader to recognize audio (mp3) files. They are uploading fine but not being recognized by zaudio. Please see screenshot of file page below. Any thoughts / assistance would be greatly appreciated.
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by RaĆ¼l Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
- Jesse Robbins@jesserobbins
Jesse Robbins - 0 likes
- jbvk@jbvk
jbvk - 0 likes
- Jesse Robbins@jesserobbins
Jesse Robbins - 0 likes
- jbvk@jbvk
jbvk - 0 likes
- headtrip@headtr1p
headtrip - 0 likes
- headtrip@headtr1p
headtrip - 0 likes
You must log in to post replies.Please anyone with any help on this?!?!?!
ijust uploaded an over 10MB mp3 file and i have a blank icon just as in your screenshot. all other mp3s i've uploaded have shown music note icon ... perhaps there's a limit on filesize ?
if this checks out for you, can you tell me if you have zaudio working properly, if you have it enabled ?
thanks
Hey. Thanks for your reply. How do you change the file size limit?
i'm not sure ... may be a setting in the php.ini file ... your server admin could tell you ... but that said the max file size upload permitted by my php.ini is 128MB ... so maybe there's something in the file mod, if so, i haven't found it yet
Hi I'm having the same problem, have changed max file details in the file mod but still no luck.
I have posted this query in General discussion group but 3 days later still no response :(
Hope there's someone out there who can point us in the right direction.
You can change upload files limit in the .htaccess file - worked for me!
.htaccess:
# php 5, apache 1 and 2
<IfModule mod_php5.c>
# default memory limit to 64Mb
php_value memory_limit 64M
# to make sure register global is off
php_value register_globals 0
# max post size to 10Mb
php_value post_max_size 10485760
# upload size limit to 10Mb
php_value upload_max_filesize 10485760
# hide errors, enable only if debug enabled
php_value display_errors 0
</IfModule>
or whatever size you need
Hope it helps