Results 1 to 3 of 3

Thread: Just A question

  1. #1
    eng_amer is offline Junior Member
    Join Date
    Oct 2010
    Location
    Egypt
    Posts
    4

    Exclamation Just A question

    hi all


    i uploaded a large file to the documents module 250 mega byte but when i get to download this file

    the page keeps loading and nothing happen any one can tell me what is error ...


    thanks

  2. #2
    kinshibuya's Avatar
    kinshibuya is offline A Sugar Hero
    Join Date
    Jul 2008
    Location
    brasil
    Posts
    521

    Default Re: Just A question

    Hi
    you need to change some attributes in httpd.conf so you can do this.
    Priscila Kin Yamamoto Joranhezon
    Phone: +55 61 32010000
    priscila.joranhezon@nct.com.br
    NCT Informática Ltda

  3. #3
    eng_amer is offline Junior Member
    Join Date
    Oct 2010
    Location
    Egypt
    Posts
    4

    Thumbs up Re: Just A question

    thank you kinshibuya

    i found the problem it was in the file download.php exactley the end of that file

    *****************************
    <?
    set_time_limit(0);

    @ob_end_clean();
    ob_start();

    echo file_get_contents($download_location);
    @ob_flush();


    ?>
    ***************************************



    i realized the use for buffer which work ok with small files as i will not use alot of memory



    so with large files size the problem appeared so i did not use the buffer to store the file before download



    also i replaced the function file_get_contents and the solution was in this bit of code

    ************************************************
    <?
    ob_end_clean();
    // ob_start();
    readfile($local_location);

    // ob_flush();

    ?>
    ****************************

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. hi - question
    By siran in forum Help
    Replies: 2
    Last Post: 2009-12-16, 12:21 PM
  2. php question
    By sarmenhb in forum Developer Help
    Replies: 1
    Last Post: 2008-02-15, 07:38 PM
  3. php question
    By sarmenhb in forum Installation and Upgrade Help
    Replies: 1
    Last Post: 2008-02-15, 10:21 AM
  4. ACL question
    By kbrill in forum Developer Help
    Replies: 6
    Last Post: 2006-09-16, 09:54 PM
  5. Question
    By gremln007 in forum Help
    Replies: 1
    Last Post: 2004-11-06, 10:32 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •