Forums » Define the directory and web path and Define the public theme directory pa

RSS feed for this topic

Info

Tags

No tags yet.

  1. Hallo,

    I received this message, when i invoke omeka (http://localhost/omeka) in the browser, after i installed it on my localhost (xampp).
    what does it exactly mean and what do i have to do?
    Thanks a lot for your advice!

    <?php
    /**
    * Bootstrap for public interface.
    *
    * @version $Id$
    * @copyright Center for History and New Media, 2007-2008
    * @license http://www.gnu.org/licenses/gpl-3.0.txt
    * @package Omeka
    **/

    // Define the directory and web paths.
    require_once 'paths.php';

    // Define the public theme directory path.
    define('THEME_DIR', BASE_DIR . DIRECTORY_SEPARATOR . $site['public_theme']);

    $app = new Omeka_Core;
    $app->initialize()->run();

  2. The output you've posted isn't meant to be a message, it's actually the source code of Omeka's index.php file.

    This essentially means that your server is not set up to parse PHP files. You need to make sure that PHP is installed and Apache is correctly configured to serve PHP files.

Reply

You must log in to post.