Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

getting Fatal Error Out of memory in index.php on line 80 #370

Open
6 tasks
satyaindia opened this issue Nov 3, 2019 · 0 comments
Open
6 tasks

getting Fatal Error Out of memory in index.php on line 80 #370

satyaindia opened this issue Nov 3, 2019 · 0 comments

Comments

@satyaindia
Copy link

satyaindia commented Nov 3, 2019

Prerequisites

  • Are you running the latest version of Bootstrap Listr (stable or alpha/beta)?
  • Did you check your browser's console for errors? See how in Chrome, Firefox, Edge)
  • Did you build a distribution? Use npm run build
  • Are you running the Node v6 (or higher)?
  • Did you check the FAQ?
  • Did you perform a cursory search to see if your issue has already been reported?

Description

i run a file downloading server, which is designed using php, i had used the src code from here to allow users to see the files and download through a webpage,
the problem after running the code is users are able to download files of size lesser then 700 mb and files of size above 1.5gb
users are getting an error message while trying to download files of size between 700mb and 1.5gb, this is common across the different servers that i have.
please help me to over come this peculiar problem
code from Index.php :

if(substr($navigation_dir, -1) != "/"){
if(file_exists($navigation_dir)){

    // GET MIME 
    $mime_file = finfo_file(finfo_open(FILEINFO_MIME_TYPE), $navigation_dir);
    
    // Direct download
    if($mime_file == "inode/x-empty" || $mime_file == ""){
        header('Content-Description: File Transfer');
        header('Content-Type: application/octet-stream');
        header('Content-Disposition: attachment; filename="'.basename($navigation_dir).'"');
    }
    // Recognizable mime
    else{
        header('Content-Type: ' . $mime_file);
    }
    header('Expires: 0');
    header('Cache-Control: must-revalidate');
    header('Accept-Ranges: bytes');
    header('Pragma: public');
    header('Content-Length: ' . filesize($navigation_dir));
    ob_clean();
    flush();
    if ($options['general']['read_chunks'] == true) { 
        readfile_chunked($navigation_dir);
    } else {
        readfile($navigation_dir);     
    }  
} else {
    set_404_error();
}
exit;

} else {
if(!file_exists($navigation_dir)){
set_404_error();
exit;
}
}

Steps to reproduce

Console Errors (optional)

# your log messages

<br />
<b>Fatal error</b>:  Out of memory (allocated 524288) (tried to allocate 1044185088 bytes) in <b>C:\xampp\htdocs\pcgames\server1\AK\index.php</b> on line <b>80</b><br />

**Expected behavior:**

To download all file types and all sizes of files

**Actual behavior:**

Not able to download files of size between 700mb to 1.5gb, 
I am able to download files of size below 700mb and files of size above 1.5gb

## Versions

* Bootstrap Listr
* PHP
* Node
* npm
* [browser] Crome
* [server] windows server 2008 r2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant