Wiki source code of Programming__WebObjects-Web Applications-Deployment-WOStats
Version 1.1 by smmccraw on 2007/07/08 09:45
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 | sudo emacs /System/Library/Frameworks/JavaWOExtensions.framework/Resources/WOStatsPage.wo/WOStatsPage.html | ||
| 6 | |||
| 7 | Edit this line: | ||
| 8 | |||
| 9 | {{panel}} | ||
| 10 | |||
| 11 | <webobject name="USERname"></webobject> | ||
| 12 | |||
| 13 | {{/panel}} | ||
| 14 | |||
| 15 | to read | ||
| 16 | |||
| 17 | {{panel}} | ||
| 18 | |||
| 19 | <webobject name="USERNAME"></webobject> | ||
| 20 | |||
| 21 | {{/panel}} | ||
| 22 | |||
| 23 | (it is a case issue). | ||
| 24 | |||
| 25 | Also, don't forget to set a password when launching, e.g. | ||
| 26 | |||
| 27 | {{panel}} | ||
| 28 | |||
| 29 | -WOStatisticsPassword foo | ||
| 30 | |||
| 31 | {{/panel}} | ||
| 32 | |||
| 33 | If you don't do this there is no password and access is disabled entirely. | ||
| 34 | |||
| 35 | Category:WebObjects |