13 lines
426 B
PHP
13 lines
426 B
PHP
<?php
|
|
/// @file some variable definitions
|
|
|
|
$config['basePath'] = "/users/cwsvjudo/www";
|
|
$config['baseUrl'] = "http://cwsvjudo.bplaced.net";
|
|
$config['ressourceUrl'] = "http://cwsvjudo.bplaced.net/ressourcen";
|
|
|
|
setlocale (LC_ALL, 'de_DE@euro', 'de_DE', 'de', 'ge');
|
|
set_include_path(get_include_path() . PATH_SEPARATOR . "./lib/");
|
|
set_include_path(get_include_path() . PATH_SEPARATOR . $config['basePath']."/ressourcen/");
|
|
|
|
?>
|