0
I'm trying to send files from the administrator panel ... and there is a file size limit 8.36 MB my php ini upload_max_filesize = 100M
any idea what could be wrong ?
any idea what could be wrong ?
Responses (10)
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
0think I get it .. I think it was a session time ...
Anyway, I think it's gonna be okay for this ... I've got another question now :
- I think for huge files : that would be great to have a progress bar .. would that be possible ... like this users understand what's going on ...
- else .. much easier ... I actually looked for that progress bar thing .. but i think it may over complicate something tha should'nt be ...
Si what I'd like to do is when the user is saving or applying new tracks ... I'd like to have a div showing up on top saying "Upload in progress" ... In which file could I implement this function ...? any ideas ? -
Accepted Answer
0hello!!
the progress bar would be a great thing, but it's actually quite difficult to do. we are working on solutions for this.
we are improving the upload forms. the "upload in progress" is a good idea, I think we'll add this for next version.
if you want to do this yourself... well.. you need to know some JavaScript and HTML coding... :S -
Accepted Answer
0yep no worries ... just tell me where it is ...
I know it's quite diffuclt for the progress bar .. i just don"t have enought time for this (but I think the way to do this would be throught swfupload or something)..
Anyway I can have a look for what I said .... but if you can tell me chich files I should be looking for ... -
Accepted Answer
-
Accepted Answer
0yep done ... for those who might be interested (can't post html arfff)
anyway
make a div id="bs" and display:none in my exemple for your message ... add an animated gif to show 'something is going on'
$('toolbar-save').addEvent('click', function(){
$('bs').setStyle('display', 'block');
});
$('toolbar-apply').addEvent('click', function(){
$('bs').setStyle('display', 'block');
}); -
Accepted Answer
-
Accepted Answer
Your Reply

Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »