Wiki source code of Troubleshooting WOStats
Version 8.1 by David Avendasora on 2010/11/30 06:19
Show last authors
| author | version | line-number | content |
|---|---|---|---|
| 1 | === Typo in WOStatsPage.html in WO 5.3 === | ||
| 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 | === Set a WOStats Password === | ||
| 30 | |||
| 31 | Don't forget to set a password when launching using **##-WOStatisticsPassword foo##** | ||
| 32 | If you don't set a password, access is disabled entirely. |