1,575
edits
Changes
→Setup PHP7
#Edit the ''php.ini'' file by running <pre>sudo nano /etc/php/7.0/apache2/php.ini</pre> and configuring ''upload_max_filesize'' <pre>upload_max_filesize = 20M</pre> to ensure that you can upload reasonably sized GEDCOM files from the web interface
#Restart Apache2 by running <pre>systemctl restart apache2</pre>
#Ensure that PHP is running with the following <pre>sudo nano /var/www/html/info.php</pre> fill it in with the following <pre><?php phpinfo(); ?><//pre> save and exit by hitting ''Ctrl+C'' and ''Y'' Then go to ''http://<containername>/info.php and you should see the default PHP info page
#Delete this page by running <pre>sudo rm /var/www/html/info.php</pre>