from-version-1.3.txt 882 B

12345678910111213141516171819202122
  1. # Copy the following directories and files to your installation folder, overriding the existing ones:
  2. ```
  3. webclient/config/
  4. webclient/lib/
  5. webclient/view/
  6. webclient/.htaccess
  7. webclient/api.php
  8. webclient/index.php
  9. ```
  10. # New syntax in config files
  11. "define(.." syntax needs to be replace with "const" syntax in all the config files.
  12. See the default ones about the changes.
  13. # DB changes. Run each line against your bibliotheca DB.
  14. Replace #REPLACEME# with your table prefix. Default is bib
  15. ```
  16. ALTER TABLE `#REPLACEME#_collection` ADD `defaultSortOrder` VARCHAR(4) NOT NULL AFTER `defaultSortField`;
  17. ALTER TABLE `#REPLACEME#_menu` ADD `contextaction` VARCHAR(64) NOT NULL AFTER `action`;
  18. UPDATE `#REPLACEME#_menu` SET `contextaction` = 'collection' WHERE `#REPLACEME#_menu`.`id` = 4;
  19. UPDATE `#REPLACEME#_menu` SET `contextaction` = 'collection' WHERE `#REPLACEME#_menu`.`id` = 6;
  20. ```