==AUTH CAS
Récupérer rep de la version précédente plugins/AuthCAS

==SYNCHRONISATION
Récupérer les fichiers de la version précédente
/application/commands/AddGroupCommand.php
/application/commands/AddUserCommand.php
/application/commands/AddUserGroupCommand.php
/application/commands/DeleteGroupCommand.php
/application/commands/DeleteUserCommand.php
/application/commands/DeleteUserGroupCommand.php

==SESSION
Nommer la session limesurvey
/framework/web/CHttpSession.php
juste avant session_start
Ajouter
@session_name("limesurvey");

/third_party/kcfinder/core/class/uploader.php
placer un @ devant session_start

==SONDE PIWIK
application/controllers/survey/index.php

Ajouter après
        if (is_null($thissurvey) && !is_null($surveyid)) {
            $thissurvey = getSurveyInfo($surveyid);
        }

le code
        /* Sonde Piwik ENVOLE */
        $sondenotincludescript=true;
        $applisonde="limesurvey";
        include "/var/www/html/sondepiwik/envoleSonde.php"; 
        if($urlsonde!="") App()->getClientScript()->registerScriptFile($urlscriptsonde);
        /* Fin de la sonde Piwik ENVOLE */

==SONDE PIWIK
application/views/admin/super/header.php

Ajouter après
<?php //$this->widget('ext.LimeDebug.LimeDebug'); ?>

le code
    <script src="/sondepiwik/sonde.js?appli=limesurvey" defer></script>
 
