Skip to content
GitLab
Explorer
Connexion
S'inscrire
Navigation principale
Rechercher ou aller à…
Projet
S
stats-facil
Gestion
Activité
Membres
Labels
Programmation
Tickets
Tableaux des tickets
Jalons
Wiki
Code
Requêtes de fusion
Dépôt
Branches
Validations
Étiquettes
Graphe du dépôt
Comparer les révisions
Extraits de code
Compilation
Pipelines
Jobs
Planifications de pipeline
Artéfacts
Déploiement
Releases
Registre de paquets
Registre de conteneur
Registre de modèles
Opération
Environnements
Modules Terraform
Surveillance
Incidents
Analyse
Données d'analyse des chaînes de valeur
Analyse des contributeurs
Données d'analyse CI/CD
Données d'analyse du dépôt
Expériences du modèle
Aide
Aide
Support
Documentation de GitLab
Comparer les forfaits GitLab
Forum de la communauté
Contribuer à GitLab
Donner votre avis
Raccourcis clavier
?
Extraits de code
Groupes
Projets
Afficher davantage de fils d'Ariane
facil
stats-facil
Validations
e78d5c9b
Valider
e78d5c9b
rédigé
il y a 7 ans
par
Markus
Validation de
Matthieu Aubry
il y a 7 ans
Parcourir les fichiers
Options
Téléchargements
Correctifs
Plain Diff
Ability to customise the piwik/tmp directory path in config/config.ini.php file (#12189)
parent
d647d5c9
Aucune branche associée trouvée
Branches contenant la validation
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
Modifications
2
Masquer les modifications d'espaces
En ligne
Côte à côte
Affichage de
2 fichiers modifiés
config/global.ini.php
+4
-1
4 ajouts, 1 suppression
config/global.ini.php
config/global.php
+5
-2
5 ajouts, 2 suppressions
config/global.php
avec
9 ajouts
et
3 suppressions
config/global.ini.php
+
4
−
1
Voir le fichier @
e78d5c9b
...
...
@@ -135,7 +135,6 @@ enabled = 0
disable_merged_assets = 0
[General]
; the following settings control whether Unique Visitors `nb_uniq_visitors` and Unique users `nb_users` will be processed for different period types.
; year and range periods are disabled by default, to ensure optimal performance for high traffic Piwik instances
; if you set it to 1 and want the Unique Visitors to be re-processed for reports in the past, drop all piwik_archive_* tables
...
...
@@ -573,6 +572,10 @@ enable_custom_logo_check = 1
; absolute path to the chroot environment. eg. '/path/to/piwik/chrooted/'
absolute_chroot_path =
; The path (relative to the Piwik directory) in which Piwik temporary files are stored.
; Defaults to ./tmp (the tmp/ folder inside the Piwik directory)
tmp_path = "/tmp"
; In some rare cases it may be useful to explicitely tell Piwik not to use LOAD DATA INFILE
; This may for example be useful when doing Mysql AWS replication
enable_load_data_infile = 1
...
...
Ce diff est replié.
Cliquez pour l'agrandir.
config/global.php
+
5
−
2
Voir le fichier @
e78d5c9b
...
...
@@ -4,6 +4,7 @@ use Interop\Container\ContainerInterface;
use
Interop\Container\Exception\NotFoundException
;
use
Piwik\Cache\Eager
;
use
Piwik\SettingsServer
;
use
Piwik\Config
;
return
array
(
...
...
@@ -19,8 +20,10 @@ return array(
}
else
{
$instanceId
=
''
;
}
return
$root
.
'/tmp'
.
$instanceId
;
$tmp
=
Config
::
getInstance
()
->
General
[
'tmp_path'
];
return
$root
.
$tmp
.
$instanceId
;
},
'path.cache'
=>
DI\string
(
'{path.tmp}/cache/tracker/'
),
...
...
Ce diff est replié.
Cliquez pour l'agrandir.
Aperçu
0%
Chargement en cours
Veuillez réessayer
ou
joindre un nouveau fichier
.
Annuler
You are about to add
0
people
to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Enregistrer le commentaire
Annuler
Veuillez vous
inscrire
ou vous
se connecter
pour commenter