in Education by
So I'm using Codeigniter and I want to upload files. It's working fine except for this one thing. Here's config code: $this->conf = array( 'max_size' => '1024', 'encrypt_name' => TRUE, 'allowed_types' => 'avi|mov|mpg|wmv|flv', 'upload_path' => 'assets/media/videos/' ); Uploading a 5MB mpg file, it shows the error File is too big.., but when I try to upload an 18MB mpg file, it just refreshes the page. I'm at a loss here. I don't know where to start. Any helpful tips will be greatly appreciated. Also, let me know if I need to add more code, like I said, I've no idea where to start. Here's what I've tried so far: changed upload max size on php.ini to 100M the answer found here: Strange CodeIgniter file upload error but print_r($_FILES) doesn't even get executed, the page just refreshes. JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
Its not just upload max size, you'll want to up the following settings: post_max_size memory_limit Also set_time_limit to something high as well or the upload is just timing out, hence why your seeing a blank array.

Related questions

0 votes
    $fields['password'] = "Password"; $fields['confirm_password'] = "Confirm Password"; $fields['customer_number' ... for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Aug 1, 2022 in Education by JackTerrance
0 votes
    _______ allows you to modify the error behavior so that you can browse the function call stack (a) debug() ... of R Programming Select the correct answer from above options...
asked Feb 15, 2022 in Education by JackTerrance
0 votes
    I've recently refactored my src directory in my IntelliJ Android project now, when I run my App on ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jan 13, 2022 in Education by JackTerrance
0 votes
    I am using Laravel Image Intervention to resize an image upload field on my form. This is the error ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 17, 2022 in Education by JackTerrance
0 votes
    "The binary you uploaded was invalid. The key CFBundleVersion in the Info.plist file must contain a higher ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 27, 2022 in Education by JackTerrance
0 votes
    How to get array from form validation config file in controller? application/config/form_validation.php I have ... for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 18, 2022 in Education by JackTerrance
0 votes
    How to get array from form validation config file in controller? application/config/form_validation.php I have ... for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 18, 2022 in Education by JackTerrance
0 votes
    When you upload a CSV file through UI or External Data API, it is recommended to provide the metadata in the format of __________. A. CSV B. JSON C. XML...
asked Nov 1, 2022 in Education by JackTerrance
0 votes
    I have made a chatroom where users can messages to each other but I want to add a upload file ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 20, 2022 in Education by JackTerrance
0 votes
    On Internet Explorer, the standard HTML file upload form also allows for direct input of the file name ( ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 10, 2022 in Education by JackTerrance
0 votes
    I writing a function in my form that require user to upload a file, but doesn't necessary have to ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 2, 2022 in Education by JackTerrance
0 votes
    I want to upload the file pdf to the folder but a file is not saved to a folder. I already read the ... .run(debug=True)``` Select the correct answer from above options...
asked Jan 19, 2022 in Education by JackTerrance
0 votes
    in my app i want to upload an image chosen via UIImagePickerController to a database which only accepts JPEG ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jan 16, 2022 in Education by JackTerrance
0 votes
    To lower the file size, while uploading, in Scratch, check the _________ box in the left corner of the upload screen Select the correct answer from above options...
asked Dec 14, 2021 in Education by JackTerrance
0 votes
    How to upload a file in Django?...
asked Feb 1, 2021 in Technology by JackTerrance
...