Commit b62f0bc878051f84bd16dce473d4902f808e1403
1 parent
cb5d6d8b
KTS-2799
"3.5.2 beta 2 upgrade error" Fixed. Updated paths in config.ini to use generic paths. Committed By: Kevin Fourie Reviewed By: Jonathan Byrne git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@7961 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
12 additions
and
0 deletions
lib/upgrades/UpgradeFunctions.inc.php
| ... | ... | @@ -1073,6 +1073,18 @@ class UpgradeFunctions { |
| 1073 | 1073 | $ini->addItem('CustomErrorMessages', 'customerrorpagepath', 'customerrorpage.php', 'Name or url of custom error page'); |
| 1074 | 1074 | $ini->addItem('CustomErrorMessages', 'customerrorhandler', 'on', 'Turn custom error handler on or off'); |
| 1075 | 1075 | |
| 1076 | + // URLS Section | |
| 1077 | + $ini->addItem('urls', 'varDirectory', '${fileSystemRoot}/var', 'directories'); | |
| 1078 | + $ini->addItem('urls', 'logDirectory', '${varDirectory}/log'); | |
| 1079 | + $ini->addItem('urls', 'documentRoot', '${fileSystemRoot}/Documents'); | |
| 1080 | + $ini->addItem('urls', 'uiDirectory', '${fileSystemRoot}/presentation/lookAndFeel/knowledgeTree'); | |
| 1081 | + $ini->addItem('urls', 'tmpDirectory', '${varDirectory}/tmp'); | |
| 1082 | + $ini->addItem('urls', 'graphicsUrl', '${rootUrl}/graphics', 'urls'); | |
| 1083 | + $ini->addItem('urls', 'uiUrl', '${rootUrl}/presentation/lookAndFeel/knowledgeTree'); | |
| 1084 | + $ini->addItem('urls', ';dedicatedrsstitle', 'RSS Feed Title', 'RSS dedicated feed url'); | |
| 1085 | + $ini->addItem('urls', ';dedicatedrssurl', ''); | |
| 1086 | + $ini->addItem('urls', 'stopwordsFile', '${fileSystemRoot}/config/stopwords.txt', 'files'); | |
| 1087 | + | |
| 1076 | 1088 | $ini->write(); |
| 1077 | 1089 | } |
| 1078 | 1090 | } | ... | ... |