Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2014-06-02 11:26:56 +0400
committermattab <matthieu.aubry@gmail.com>2014-06-02 11:26:56 +0400
commit1c85b8aa050e085ec94f2a2d8d0920f4e9ea69f6 (patch)
treeb5f53a8fb61f85954a97f5e5ec4d618a40358cf3 /core
parentc18c274c6aebdead9e09d22e7b0b1e023608a96d (diff)
Ignore SSL redirection for VisitorGenerator to work around issue when SSL is not working on localhost
Diffstat (limited to 'core')
-rw-r--r--core/FrontController.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/FrontController.php b/core/FrontController.php
index 4052bd8d0b..ec21cef3bf 100644
--- a/core/FrontController.php
+++ b/core/FrontController.php
@@ -438,6 +438,10 @@ class FrontController extends Singleton
if(Piwik::getModule() == 'CoreAdminHome' && Piwik::getAction() == 'optOut') {
return;
}
+ // Disable Https for VisitorGenerator
+ if(Piwik::getModule() == 'VisitorGenerator') {
+ return;
+ }
if(Common::isPhpCliMode()) {
return;
}