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