Troubleshooting
These are some of the most common issues that administrators encounter when setting up or working with their Omeka Classic sites. If you do not see your issue here, please post a description of your issue along with the version of Omeka and any plugins involved on the Omeka Forums.
404 and Not Found
If you follow a link in Omeka Classic and you get a 404 error, page not found, or an error saying the URL is not valid, this is likely caused by a mod_rewrite problem on your server.

There are two possibilities:
- You forgot to copy the
.htaccessfile when FTPing your installation. Double check that the file transferred properly and has the correct information. - Your server may not have
mod_rewriteinstalled. If installingmod_rewritedoes not solve the problem, check that your Apache configuration allows.htaccessoverrides. You will need theAllowOverride Alldirective in the appropriate place inhttpd.conf.
File upload errors
If you are receiving errors related to file size uploads, you will need to look at your PHP settings and possibly contact your server administrator.
- The
upload.maxFileSizelimit in Omeka’sapplication/config/config.iniis only useful for decreasing the limit, not for increasing it. It is there to restrict uploads in Omeka more narrowly than your PHP settings already mandate. It is not set by default and plays no role in increasing the upload maximum size. - The
php.inisettingupload_max_filesizeis a limit set by PHP that constrains the maximum size of any one file. If this is smaller than a file you want to upload, you need to increase it. - The
php.inisettingpost_max_sizeis a limit set by PHP that constrains the maximum total amount of data that can be sent in any one request. This includes uploaded files as well as any regular form data (the contents of text inputs and textareas, for example). This setting must be at least as large asupload_max_filesizefor that setting to have any effect, and generally should be larger, to allow for some data to be sent alongside a large file and/or to allow multiple large files to be uploaded at once.
Omeka Classic will read all three of these settings and display the largest file upload size in the "Add New Files" block on the the Files tab when adding or editing an item.

Of these three, it’s most often post_max_size that’s the problem, as PHP has some odd behaviors when you exceed that limit which can make the cause of the error a little less obvious. The others tend to give you fairly clear error messages.
Better error messages
A blank or white screen is often an indication that Omeka or PHP has encountered an error. Since error messages can often contain private or technical information, Omeka hides them by default.
See Retrieving Error Messages for instructions on how to show these messages. The content of error messages can be extremely useful for troubleshooting, so try these steps before seeking further help.
Further help
If you continue to have problems, please post a description of your issue along with the precise error messages received, the version of Omeka you are using, and the versions of any plugins involved (information found at the "System Information" link at the bottom of the administrative dashboard), on the Omeka Forums.