Wiki source code of Deployment-WOStats
Version 5.1 by Pascal Robert on 2010/09/13 00:16
Hide last authors
| author | version | line-number | content |
|---|---|---|---|
| |
3.1 | 1 | === Chuck Hill === |
| |
1.1 | 2 | |
| 3 | There is a typo //in WebObjects 5.3// that prevents the login from being displayed. To fix: | ||
| 4 | |||
| |
3.1 | 5 | {{noformat}} |
| 6 | |||
| |
1.1 | 7 | sudo emacs /System/Library/Frameworks/JavaWOExtensions.framework/Resources/WOStatsPage.wo/WOStatsPage.html |
| 8 | |||
| |
3.1 | 9 | {{/noformat}} |
| 10 | |||
| |
1.1 | 11 | Edit this line: |
| 12 | |||
| |
3.1 | 13 | {{noformat}} |
| |
1.1 | 14 | |
| |
3.1 | 15 | <webobject name="USERname"></webobject> |
| |
1.1 | 16 | |
| |
3.1 | 17 | {{/noformat}} |
| |
1.1 | 18 | |
| 19 | to read | ||
| 20 | |||
| |
3.1 | 21 | {{noformat}} |
| |
1.1 | 22 | |
| |
3.1 | 23 | <webobject name="USERNAME"></webobject> |
| |
1.1 | 24 | |
| |
3.1 | 25 | {{/noformat}} |
| |
1.1 | 26 | |
| 27 | (it is a case issue). | ||
| 28 | |||
| 29 | Also, don't forget to set a password when launching, e.g. | ||
| 30 | |||
| |
3.1 | 31 | {{noformat}} |
| |
1.1 | 32 | |
| |
3.1 | 33 | -WOStatisticsPassword foo |
| |
1.1 | 34 | |
| |
3.1 | 35 | {{/noformat}} |
| |
1.1 | 36 | |
| 37 | If you don't do this there is no password and access is disabled entirely. |