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
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.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now