blob: 8db8389349a88145a765abdfffb33166f7742357 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php // /!\ Important: There must be no blank space before <?php or after ?>
// This file was inspired from the spip contrib website
// http://www.spip.net/fr_article3811.html
$config_dir = getenv('SPIP_CONFIG_DIR') . '/';
$var_dir = getenv('SPIP_VAR_DIR') . '/';
$cookie_prefix = str_replace('.', '_', getenv("SPIP_SITE"));
$table_prefix = 'spip';
spip_initialisation(
$config_dir,
_DIR_RACINE . _NOM_PERMANENTS_ACCESSIBLES,
$var_dir . _NOM_TEMPORAIRES_INACCESSIBLES,
_DIR_RACINE . _NOM_TEMPORAIRES_ACCESSIBLES
);
?>
|