CodeIgniter file upload error: thefiletypeyouareattemptingtouploadisnotallowed

Source: Internet
Author: User
The local lnmp test environment file is uploaded successfully. after the code is moved to the build environment, the following error occurs: thefiletypeyouareattemptingtouploadisnotallowed. Google has found the solution after N years.

CodeIgniter file upload error: the filetype you are attempting to upload is not allowed

The local lnmp test environment file is successfully uploaded. after the code is moved to the build environment, the filetype you are attempting to upload is not allowed error is prompted. Google has not found a solution after N years.

There are some possible causes for the filetype you are attempting to upload is not allowed error on the network:

1. rename the configuration item to remove it.

2. duplicate names without suffixes

.....

Final Solution:

Before modification:


$ Config ['allowed _ types'] = 'jpg | gif | png | jpeg | bmp ';
After modification:



$ Config ['allowed _ types'] = '*';
Final Upload configuration item:



$ Config ['upload _ path'] = $ save_path; $ config ['allowed _ types '] = '*'; $ config ['File _ name'] = "your userid).png"; $ config ['overwrite'] = true; $ this-> load-> library ('upload ', $ config );


You can change the allowed Upload type to *, which may cause some security problems.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.