Bolt - Installation error

You've (probably) installed Bolt in the wrong folder.

It's recommended to install Bolt outside the so-called web root, because this is generally seen as 'best practice', and it is good for overall security. The reason you are seeing this page, is that your web server is currently serving the incorrect folder as 'web root'. Or, to put it the other way around: This file should not be visible.

The current folder is: /home2/enim/public_html/typesetter/.

The easiest fix for this, is to configure the webserver to use /home2/enim/public_html/typesetter/public/ as the 'document root'.

Alternatively, move everything 'up' one level. So instead of extracting the .zip or .tgz file in this folder, extract it in /home2/enim/public_html/ instead. If you do this, you must edit the .bolt.yml file as follows, so it use the correct folder.

paths:
    cache: app/cache
    config: app/config
    database: app/database
    web: typesetter
    themebase: typesetter/theme
    files: typesetter/files
    view: typesetter/bolt-public/view
TIP: copy this snippet now, because you won't see it anymore, after moving the files.

If these options aren't possible for you, please consult the documentation on Installing Bolt, as well as the page on Troubleshooting 'Outside of the web root' .