Was trying to upload a plugin and this is the message I get "The link you followed has expired.
Please try again."
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.
Click below to sign up and get $100 of credit to try our products over 60 days!
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:Then visit that file via your browser:
yourdomain.com/info.php
, and look for thephp.ini
value.Usually, on Ubuntu, the default location for Apache is at:
Edit that file with your favorite text editor:
And increase the following values:
Then save the file and restart Apache:
Let me know how it goes! Regards, Bobby