Overview
Comment:Ajout chemins à vérifier pour droit à l'écriture
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 3a40e8208d99241c66a18eaa0ee66e2d251b6476
User & Date: bohwaz on 2016-11-15 23:21:15
Other Links: manifest | tags
Context
2016-11-18
02:24
Mettre l'ordre par défaut à champ_identite au lieu du premier champ de la table membres check-in: c5cd13a81f user: bohwaz tags: trunk
2016-11-15
23:21
Ajout chemins à vérifier pour droit à l'écriture check-in: 3a40e8208d user: bohwaz tags: trunk
2016-11-08
03:22
Fix directory creation for standalone version check-in: a104f9ddaf user: bohwaz tags: trunk, stable, 0.7.5
Changes

Modified src/www/admin/install.php from [69a2e230cd] to [469e7fae31].

67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
);

const INSTALL_PROCESS = true;

require_once __DIR__ . '/../../include/init.php';

// Vérifier que les répertoires vides existent, sinon les créer
$paths = [CACHE_ROOT, CACHE_ROOT . '/static', CACHE_ROOT . '/compiled'];

foreach ($paths as $path)
{
    if (!file_exists($path))
        mkdir($path);

    test_requis(







|







67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
);

const INSTALL_PROCESS = true;

require_once __DIR__ . '/../../include/init.php';

// Vérifier que les répertoires vides existent, sinon les créer
$paths = [DATA_ROOT, PLUGINS_ROOT, CACHE_ROOT, CACHE_ROOT . '/static', CACHE_ROOT . '/compiled'];

foreach ($paths as $path)
{
    if (!file_exists($path))
        mkdir($path);

    test_requis(