<?php
    // Rename this file to config.inc.php
    //be sure to include a final / on the base path below
    $basePath="/opt/biogeosdiTrunk/";
    ini_set('include_path', $basePath."/backend/org/biogeosdi/" . ":" . "/frontend/php/priv");

    //Folder writable by web server process
    define('TEMP_DIR','/tmp');

    //Define this to the base of the backend URL
    define('BACKEND_URL','http://10.211.55.3/biogeosdi/backend/');

    //Define this to the base of the FLEX frontend URL
    define('FLEX_FRONTEND_URL','http://10.211.55.3/biogeosdi/frontend/flex/');

    //Define this to the base of the PHP frontend URL
    define('PHP_FRONTEND_URL','http://10.211.55.3/biogeosdi/frontend/php/');


    //Set as appropriate for the server location
    //This key works for http://omtest.cria.org.br/biogeosdiTrunk/frontend/php/priv/
    define('GOOGLE_KEY','ABQIAAAAuYWC81lXHUzQz1QJga3l8hQrj5je4aMiOYIZcqvQHAcOCMhOEhQWmc0uAFGyfO7NMGRrShZBnRDN9g');

    //the location of the GBIF REST service for occurrences
    define('GBIF_REST_OCCURRENCES','http://data.gbif.org/ws/rest/occurrence/list?');

    //openModeller web service defaults
    $defaultOmEndpoint = 'http://10.211.55.3/cgi-bin/om_soap_server.cgi';


    // DO NOT TOUCH ANYTHING FROM THIS LINE IF YOU DONT KNOW WHAT YOU ARE DOING
    // ------------------------------------------------------------------------
    //Set this to the URL of the OccrrenceService.php script
    define('OCCURRENCE_SERVICE',BACKEND_URL.'services/OccurrenceService.php');

    //set this to the location of the DPS folder
    define('OM_DPS_SERVICE_BASEURL',BACKEND_URL."util/dps/");
    define('OM_DPS_SERVICE', OM_DPS_SERVICE_BASEURL."dps.php");
    define('OM_DPS_CLEANER_SERVICE', OM_DPS_SERVICE_BASEURL."del_temp_datasets.php");

    //This is a proxy required by OpenLayers WFS
    define('OPENLAYERS_PROXY',BACKEND_URL.'util/phpProxy.php?url=');



    //relative URL for OpenLayers.js
    define ('OPENLAYERS_JS','/openlayers/lib/OpenLayers.js');



    // Proxy server support
    $useProxyFlag = false;  // Set to true if you are behind a proxy server
    $proxyServerUrl = "";
    $proxyPort = "";
    $proxyUser = "";
    $proxyPass = "";

?>