Abyssal Zone Classic Mac OS
Basic instructions for installing and updating from GitHub can be found in the ReadMe of the Omeka S github repository.
System Requirements
Logic Remote Touch and flow. Logic Remote lets you use your iPhone or iPad to control Logic Pro on your Mac. Use Multi-Touch gestures to play software instruments, mix tracks, and control features like Live Loops and Remix FX from anywhere in the room. Abyssal Zone is a tile-based puzzler which incorporates a distinctive mechanic: you can only turn clockwise. Go solo and make your way through puzzles while.
In order to install Omeka S, you will need a server running the following:
- Linux
- Apache (with AllowOverride set to 'All' and mod_rewrite enabled)
- MySQL, minimum version 5.6.4 (or MariaDB, minimum version 10.0.5)
- PHP, minumum version 7.1, with PDO, pdo_mysql, and xml extensions installed
- Optional, to create thumbnails: ImageMagick version 6.7.5 or greater, the PHP
imagick
extension, or the PHPgd
extension
Installing from released zip file
NB: Before you install Omeka S, you need to create a MySQL database and user. Omeka S must have a dedicated database (you cannot use a prefix for a database used by another system or Omeka S or Classic installation). For more information on creating a database and user, please see your hosting's support documentation or talk to your system administratory.
- Download the latest release from the release page
- Open config/database.ini and add your MySQL username, password, database name, and host name. The user and database must be created before this step.
- Make sure the files/ directory is writable by Apache.
- In your web browser, navigate to the admin page for your Omeka S installation (yoururl/admin), where you can complete installation.
Initial setup
Once you have successfully installed and configured the database.ini file, you can navigate to the admin location of your Omeka S installation. If your installation is /myomekas/
then your admin dashboard would be located at /myomekas/admin
The first time you to the install site, you will need to enter information for the first user, along with basic information for your install. There are two sections on this page: Create the first user and Settings.
In the First User section, enter:
- an email address, and type again to confirm.
- confirm the password and type again in the next input to confirm.
- a display name for the user
Note that you can change all of these later in the User management section of your install.
In the Settings section, enter:
Abyssal Zone Of The Ocean
- An installation title which will display on the admin site,
- The installation's time zone (select from dropdown), and
- select a locale for the language of the admin side of the installation.
You can changes these at any time in the in the Settings section of your Admin Dashboard
See Configuration Options for information on settings for thumbnail generation, php path, and more.
Abyssal Zone Food Web
Updating
- Download the latest release from the release page
- Make a copy of your
/config
directory. You will need to restore yourlocal.config.php
anddatabase.ini
files from that copy. - Make a copy of your
/modules
and/themes
directories. - Make a copy of your
/files
directory. - Remove all Omeka S files, and replace them with the files from the updated zip file.
- Replace your original
/config/local.config.php
and/config/database.ini
file, and the/modules
,/themes
, and/files
directories that you copied. - In your web browser, go to your site's admin page (yoururl/admin) and run any migrations that are needed.
Install on Windows or Mac OS (basic development purpose only)
Omeka S does not support proprietary or closed source operating systems. However, for basic development purposes or for quick training, Omeka can run with WAMP, MAMP or similar tools.
Follow the standard installation instructions. You will need to make the following configuration changes to the file config/local.config.php
to work.
First, the php path may need to be set if php. Edit the config file and fill the phpcli_path
at line 12 with the appropriate path for your operating system.
Second, you need to configure Omeka S to use the thumbnailer which is available in your server. Edit the local.config.php
file with the following, based on what is available for your system:
- replace the default thumbnailer
OmekaFileThumbnailerImageMagick
byOmekaFileThumbnailerGd
. - replace the default thumbnailer
OmekaFileThumbnailerImageMagick
byOmekaFileThumbnailerImagick
, and enable Imagick in the filephp.ini
of your server via the server admin interface or directly in the file. - keep the default thumbnailer, but install the command line tool
imagemagick
and set its directory as value ofimagemagick_dir
. To install imagemagick, see the documentation of your server.
GD is a basic graphic library installed by default with PHP. It can create thumbnails for common image formats only (jpeg, gif, png). Imagick and ImageMagick are the same library and can create thumbnails for more than 200 formats. The difference is that the first is integrated in php and generally older than the command-line version.