I have a droplet with Cyberpanel installed. In that cyber panel, I have 4 WordPress websites already installed. But I want one more to create. I need to upload my previous website file. The file size is almost 3GB and I’m unable to upload this type of large file.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Hi there,
Usually increasing the PHP upload limits should fix such problems. You can do that by editing the
php.ini
file used by your CyberPanel to increase theupload_max_filesize
andpost_max_size
values to exceed the size of the file you are trying to upload.You might also have to increase the
max_execution_time
andmax_input_time
in thephp.ini
file to allow more time for the upload to process.However, in your case, the file is very large, so uploading it directly via your browser is not very recommended. What you could do instead is to use an SFTP client like FileZilla to upload the file directly to the server:
Best,
Bobby