Was trying to upload a plugin and this is the message I get "The link you followed has expired.
Please try again."
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!
Hi there @robertWhale,
I believe that you need to adjust your PHP values as the file that you are trying to upload might be larger than allowed.
To do that what you need to do is, first find which php.ini file is used by your website. One of the ways to do that is to create a PHP info file. To do that, just create a file called info.php for example with the following content:
<?php
phpinfo();
?>
Then visit that file via your browser: yourdomain.com/info.php, and look for the php.ini value.
Usually, on Ubuntu, the default location for Apache is at:
/etc/php/7.2/apache2/php.ini
Edit that file with your favorite text editor:
- sudo nano /etc/php/7.2/apache2/php.ini
And increase the following values:
upload_max_filesize 128M
post_max_size 128M
max_execution_time 120
max_input_time 120
Then save the file and restart Apache:
- sudo systemctl restart apache2
Let me know how it goes! Regards, Bobby
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.