Actions

ComfortUpdate/nl: Difference between revisions

From LimeSurvey Manual

No edit summary
No edit summary
Line 63: Line 63:
In oudere versies kun je het bestand http.php in je LimeSurvey installatie wijzigen. Kijk in een teksteditor naar de variabelen in de eerste paar regels van dit bestand en voeg de benodigde waarden toe.
In oudere versies kun je het bestand http.php in je LimeSurvey installatie wijzigen. Kijk in een teksteditor naar de variabelen in de eerste paar regels van dit bestand en voeg de benodigde waarden toe.


Example: Connect to a proxy server 111.111.111.111 port 1234 without authentication and edit the following lines to look like:
Voorbeeld: verbinden met een proxyserver 111.111.111.111 op poort 1234 zonder authenticatie, wijzig dan de volgende regels in:
   var $proxy_host_name="111.111.111.111";
   var $proxy_host_name="111.111.111.111";
   var $proxy_host_port=1234;
   var $proxy_host_port=1234;


Depending on your version, you will find the file either in /admin/classes/ or in /application/libraries/admin/http/. There are pre-coded variables within the file. Therefore, only details of your proxy are needed. If your installation is running unusually slow, wrong proxy settings may be the cause.
Depending on your version, you will find the file either in /admin/classes/ or in /application/libraries/admin/http/. There are pre-coded variables within the file. Therefore, only details of your proxy are needed. If your installation is running unusually slow, wrong proxy settings may be the cause.

Revision as of 16:53, 20 October 2017

Algemeen

ComfortUpdate is een functie waarmee je je installatie van LimeSurvey met een paar klikken in je webbrowser kunt updaten, een alternatief voor het handmatig upgraden.

Om ComfortUpdate te kunnen gebruiken moet u zich registreren op onze website, u krijgt dan een gratis code waarmee u de functie tijdelijk kunt uitproberen. Na het verlopen van de code kunt u of een code kopen of uw installatie weer handmatig gaan updaten.

  Om de ComfortUpdate key te verkrijgen, ga naar je LimeSurvey profiel en klik op COMFORTUPDATE KEYS, op de linkerkant van de pagina.


Vereisten

Je PHP installatie moet voorzien zijn van Zlib. Kijk met PHPInfo om dit te controleren, of vraag het aan de systeembeheerder.

De webserver moet wel een connectie via SSL kunnen maken met "update.limesurvey.org" en "update-data.limesurvey.org" om de ComfortUpdate applicatie te gebruiken. Als je een foutmelding krijgt als: 10060 could not connect to the host 'update.limesurvey.org', dan moet je de proxy/firewall instellingen controleren en aanpassen of contact opnemen met je systeembeheerder.

Gebruik van ComfortUpdate

De LimeSurvey ComfortUpdate kan veilig gebruikt worden, ook als je actieve enquêtes hebt draaien. Het verwijdert of vernietigt geen data. Wees er wel van bewust dat het hier om een béta-functie gaat. Maak dus een back-up voordat je verder gaat.

  • Find the Update button
    • For the older LimeSurvey versions, go to the Global Settings Icon, select the first tab, and click on the Updates button
    • For the recent Limesurvey versions, you may find the ComfortUpdate button in the Configuration dialog, under the Advanced tab:



  • The ComfortUpdate screen will display an update link if a new version of LimeSurvey is available. If not, click “Check now” to see if a new update is available
  • If an update is found, LimeSurvey will display a link to allow you to update. Click on this to begin updating
  • If you have never used ComfortUpdate before or the ComfortUpdate upgrade key is not valid, you will be asked to enter an upgrade key. Use the default key for free updates during the trial period



  • LimeSurvey will now verify your installation directory to check if the appropriate permissions are set to allow an update. A list of proposed changes will be displayed
  • If there are any problems, you must correct them at this point and then proceed to the next step
  • The ComfortUpdate will now make a backup of your database (if you use MySQL) and save your old installation files in the /tmp directory. If you use a different database, you should backup your database manually before proceeding

ComfortUpdate will now update your installation to the latest version, updating also the database in order to reflect the new (possible) changes.

Disabling ComfortUpdate

If you want to disable ComfortUpdate in order not to get the New release available popup messages after each new release, you can add the following option to your "config.php" file (which is located in /limesurvey/application/config):

'updatable' => false

Dit is in detail beschreven op: het uitschakelen van de Limesurvey ComfortUpdate updates.

  Attentie : Maak eerst een back-up!


Bekende problemen

Lege pagina bij stap 3

Als je een lege pagina krijgt bij stap 3, dan is het zeer waarschijnlijk dat je tegen een PHP geheugentekort bent aangelopen. Tijdens deze stap probeert LimeSurvey een back-up van de database en de te vervangen bestanden te maken.

Een proxyserver gebruiken om naar update.limesurvey.com te gaan

If you are behind a proxy, you may have to adjust some settings to be able to use ComfortUpdate. In LimeSurvey 2.05 (later than build 140404), you can set the details of your proxy server in the configuration file (see the general settings wiki).

In oudere versies kun je het bestand http.php in je LimeSurvey installatie wijzigen. Kijk in een teksteditor naar de variabelen in de eerste paar regels van dit bestand en voeg de benodigde waarden toe.

Voorbeeld: verbinden met een proxyserver 111.111.111.111 op poort 1234 zonder authenticatie, wijzig dan de volgende regels in:

 var $proxy_host_name="111.111.111.111";
 var $proxy_host_port=1234;

Depending on your version, you will find the file either in /admin/classes/ or in /application/libraries/admin/http/. There are pre-coded variables within the file. Therefore, only details of your proxy are needed. If your installation is running unusually slow, wrong proxy settings may be the cause.