update.txt 945 B

1234567891011121314151617181920212223242526
  1. If you update from a previous version make sure every update step is done
  2. since your current used version.
  3. Update process is as follows:
  4. - copy lib, view and index.php into your webserver installation location
  5. - update your config.php
  6. - make sure of any special update steps listed below.
  7. ## 1.5 Fluorine
  8. New syntax in config file. Switched from define() to const syntax.
  9. This change apply also to the included webclient
  10. Example:
  11. old: define('LOG_CREATION',true);
  12. new: const LOG_CREATION = true;
  13. ## 0.4-beta Beryllium
  14. Update your config.php to reflect the following updates.
  15. selfpaste does now support the usage of multiple secrets.
  16. The usage is written into create.log
  17. define('SELFPASTE_UPLOAD_SECRET',
  18. array(
  19. 'PLEASE CHANGE YOUR SECRET' => 'Your description for this secret 1',
  20. 'PLEASE_2' => 'Your description for this secret'
  21. )
  22. );
  23. # creation of a paste and which secret was used into logs/create.log file
  24. define('LOG_CREATION',true);