I have a working Omeka-s website with basic functionality. I now want to upload hundreds of photos.
I’m installing this module on Win11 Laragon and don’t understand some instructions. Well I’m a beginner for websites.
I’ll list the install instructions and indicate which numbers I don’t understand.
- Download: Obtain the plugin by downloading the zip file here.
- Installation:
- Add the zip to the Omeka-S modules folder and unzip it.
- Rename the unzipped folder to “ZipImport” if it’s not already named as such.
- Open a terminal, navigate to the “ZipImport” folder, and run
composer install.
- Sudo or appropriate permissions may be necessary
- Update php.ini:
- Find your php.ini file. Make a phpinfo page Apache can serve
echo "<?php phpinfo();" | sudo tee /var/www/html/info.php - Ask Apache for it and grep the two lines we need
curl -s http://127.0.0.1/info.php | grep -E "Server API|Loaded Configuration File|Additional .ini files parsed" - Adjust the following fields:
upload_max_filesize = 1000M max_file_uploads = 100 post_max_size = 1000M - Restart your server with
service apache2 restartor the relevant command. - Restart php with
systemctl restart phpor the relevant command.
===============
Number 7. Make a phpinfo page Apache can serveecho "<?php phpinfo();" | sudo tee /var/www/html/info.php. What does this mean? - Ask Apache for it and grep the two lines we need
curl -s http://127.0.0.1/info.php | grep -E "Server API|Loaded Configuration File|Additional .ini files parsed". This also means nothing to me. - Restart php with
systemctl restart phpor the relevant command. Likwise I don’t understand.
I’d appreciate some guidance here. And thanks for any help.