blob: 88ac44995ba4eb7f3520c85ef9af8483a3851deb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?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') . '/';
$cookie_prefix = str_replace('.', '_', $site);
$table_prefix = 'spip';
spip_initialisation(
$config_dir,
_DIR_RACINE . _NOM_PERMANENTS_ACCESSIBLES,
_DIR_RACINE . _NOM_TEMPORAIRES_INACCESSIBLES,
_DIR_RACINE . _NOM_TEMPORAIRES_ACCESSIBLES
);
?>
|