Upload filesize ... ???

féger
féger
Offline
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 ?
Responses (10)
  • Accepted Answer

    Friday, November 26 2010, 05:50 PM - #Permalink
    0
    1) what is your post_max_size?
    2) maybe your FTP account is full.. and there's no more space! is taht possible?
    The reply is currently minimized Show
  • Accepted Answer

    féger
    féger
    Offline
    Saturday, November 27 2010, 08:38 AM - #Permalink
    0
    post_max_size is okay ...
    and the ftp account is not full ... I can keep uploading files ... It just stops after 8.36 mb

    any other clue ?
    The reply is currently minimized Show
  • Accepted Answer

    féger
    féger
    Offline
    Saturday, November 27 2010, 08:50 AM - #Permalink
    0
    Is the upload using ftp parameters from the joomla system ?

    And file upload is not working at all anymore ... Could it be the quoto thing ?
    never used quotas .. what should i be looking for to solve the problem (if you have any clue) ?
    The reply is currently minimized Show
  • Accepted Answer

    féger
    féger
    Offline
    Sunday, November 28 2010, 04:55 PM - #Permalink
    0
    think 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 ?
    The reply is currently minimized Show
  • Accepted Answer

    Sunday, November 28 2010, 05:00 PM - #Permalink
    0
    hello!!

    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
    The reply is currently minimized Show
  • Accepted Answer

    féger
    féger
    Offline
    Sunday, November 28 2010, 05:03 PM - #Permalink
    0
    yep 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 ...
    The reply is currently minimized Show
  • Accepted Answer

    Sunday, November 28 2010, 05:19 PM - #Permalink
    0
    well, basically just /components/com_muscol/views/album/tmpl/form.php

    this is the album form.

    you can add a DIV at the beginning and also some JavaScript code, that, when you SUBMIT the form, it shows some "upload in progress" information on that DIV... do you know what I mean?
    The reply is currently minimized Show
  • Accepted Answer

    féger
    féger
    Offline
    Sunday, November 28 2010, 06:14 PM - #Permalink
    0
    yep 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');
    });
    Attachments:
    The reply is currently minimized Show
  • Accepted Answer

    Dustin
    Dustin
    Offline
    Monday, December 27 2010, 11:27 PM - #Permalink
    0
    How did you fix the uploading problem all my limits are at 200mb??? it uploads on my computer but not from a users computer. WHat could be the problem?
    The reply is currently minimized Show
  • Accepted Answer

    Dustin
    Dustin
    Offline
    Monday, December 27 2010, 11:49 PM - #Permalink
    0
    and if you could email the html code for the prgress .gif i would be very greatful. Thank you my email= L_Griggs1989@yahoo.com
    The reply is currently minimized Show
Your Reply