Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用在 KnowledgeTree 框架上创建的文档管理系统。我的目标是下载存储的文件。下载文件时,内容被限制为特定 mb,其余内容被忽略。这导致部分下载。如何增加文件下载限制,以便一次尝试下载整个文件。在此先感谢您的时间。
要从服务器下载大文件,我在 php.ini 文件中更改了以下设置:
Upload_max_filesize - 1500 M Max_input_time - 1000 Memory_limit - 640M Max_execution_time - 1800 Post_max_size - 2000 M
现在,我可以在服务器上上传和下载 175MB 的视频。因为,我有专用服务器。因此,进行这些更改很容易。
看到这个链接