- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
05-29-2018 05:32 AM
Expedition uses APACHE as a web server and PHP as module for the scripts. By default PHP allow users to upload files with a maximum size of 2M, this can be updated by changing the PHP.ini
sudo vi /etc/php/7.0/apache2/php.ini go to line where this variable is defined upload_max_filesize = 2M and replace by upload_max_filesize = 250M
There is another parameter within that file can be increased to allow you use the multiedit with a big amount of rules
sudo vi /etc/php/7.0/apache2/php.ini go to line where this variable is defined post_max_size = 8M and replace by post_max_size = 128M
Increase the values to those variables and restart apache for the changes take effect.
sudo systemctl restart apache2
06-01-2018 11:47 AM - edited 06-01-2018 11:48 AM
thanks!
this also works in case someone does not readily know commands to use vi and for whatever reason still have not learned the hotkeys escape keys etc... (for example... me)
sudo sed -i 's/upload_max_filesize = 2M/upload_max_filesize = 250M/g' /etc/php/7.0/apache2/php.ini sudo sed -i 's/post_max_size = 8M/post_max_size = 128M/g' /etc/php/7.0/apache2/php.ini
then
sudo systemctl restart apache2
06-01-2018 11:47 AM - edited 06-01-2018 11:48 AM
thanks!
this also works in case someone does not readily know commands to use vi and for whatever reason still have not learned the hotkeys escape keys etc... (for example... me)
sudo sed -i 's/upload_max_filesize = 2M/upload_max_filesize = 250M/g' /etc/php/7.0/apache2/php.ini sudo sed -i 's/post_max_size = 8M/post_max_size = 128M/g' /etc/php/7.0/apache2/php.ini
then
sudo systemctl restart apache2
09-05-2018 12:25 AM
09-05-2018 12:35 AM
Chapter 1 of the Admin Guide it says but i will post it here 🙂
Console:
username: expedition
password: paloalto
When using sudo if you are asked for a password is paloalto
02-12-2020 03:45 AM
Thanks, this worked for me 🙂
Click Accept as Solution to acknowledge that the answer to your question has been provided.
The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!
These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!
The LIVEcommunity thanks you for your participation!