After World War II, Berea College created a general studies course called "Man and the Humanities," in which students studied literature, music, and art. One of the first assignments asked students to draw their home community. Mappalachia is a web platform that uses Omeka Classic to share students drawings that depict glimpses of life in the Appalachian region. This is in an effort to make these drawings available to alumni, scholars, and the public.
You need to have Apache web server installed.
You need to have Mysql version 5.0 or greater.
You need to have PHP scripting language version 5.4 or higher installed.
For more information on how to set up Omeka Classic follow the Installation Guide here
In db.ini Replace the X's with your information based on the database and user created for Omeka.
[database]
host = "localhost"
username = "XXXX"
password = "XXXX"
dbname = "XXXX"
prefix = "omeka_"
charset = "utf8"
;port = ""
In your Apache Virtual Host for Omeka use the document root and the directory where your omeka repository is created.
<VirtualHost *:80>
ServerAdmin admin@example.com
DocumentRoot <DOCUMENT ROOT GOES HERE>
ServerName example.com
<Directory <DIRECTORY GOES HERE> >
Options FollowSymLinks
AllowOverride All
</Directory>
ErrorLog /var/log/apache2/omeka-error_log
CustomLog /var/log/apache2/omeka-access_log common
</VirtualHost>
Make sure to enable virtual host file, Apache rewrite module and header module with the following commands
sudo a2ensite omeka.conf
sudo a2enmod rewrite
sudo a2enmod headers
After restarting Apache Service, Open your browser and enter your localhost address
sudo systemctl restart apache2