softlab Posted November 26, 2019 Posted November 26, 2019 Hi. I'd like to know if there is a limit for a php application to upload a file and, if present, if it is customizable. Thank you Quote
Krydos Posted November 26, 2019 Posted November 26, 2019 Yes, you can check the current php upload size by creating a phpinfo file. I usually name it phpinfo.php but it can be anything you want. Then put the contents<?php phpinfo(); When you visit this page in a browser it will list all the information about the php version you're using. Here's Johnny's php 5.6 for example https://krydos2.heliohost.org/56/phpinfo.php Then you can search the page for the value you're looking for, such as max_file_uploads. If you need something changed on that page let us know and we can do it for you. For large uploads we recommend FTP though. Uploading large files through php is inefficient and uses a lot of memory and can cause instability on the server. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.