Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to solve the problem that no files have been uploaded to php

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly explains "how to solve the problem that no files are uploaded in php". The content in the article is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn "how to solve the problem of no files uploaded in php".

Php has no solution for uploading files: 1, modify php.ini, set the size of uploaded files; 2, add "php_value upload_max_filesize" 300m "" in httpd.conf; 3, restart the server.

Operating environment of this article: Windows7 system, thinkphp v5.1, DELL G3 computer

What if no files have been uploaded to php?

ThinkPhp upload File Tip "No uploaded File" solution

Using ThinkPhp framework to upload small picture file successfully, but failed to upload large file.

Later, we found out the reason, because php limits the size of uploaded files. Modify the php.ini configuration as follows:

Upload_max_filesize = 300Mpost_max_size = 300m

Restart the server, still the same, the problem has not been resolved.

The solution is as follows, and add the following to httpd.conf:

Php_value upload_max_filesize "300m" php_value post_max_size "300m"

Restart the server again, OK!

Thank you for your reading, the above is the content of "how to solve the problem of php without files being uploaded". After the study of this article, I believe you have a deeper understanding of how to solve the problem of php without files being uploaded, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report