From: Chris W. <ch...@cw...> - 2002-01-09 05:44:49
|
On Tue, 2002-01-08 at 10:13, And...@Be... wrote: > Hi Chris, > it is OI 1.36 and CommonHandler 1.29. What we currently assume is, that if > create or show are called without location=whatever specified, then Page.pm > runs the _run_directory_handler mothod and you never come to the point, > where you get to create a new page. This only happens on sites, where we > upgraded base_page from 0.42 to 0.58. You know, we are messing with > directory handlers.. One problem is that we check to see if the action is 'Page' (case-sensitive), so in Page->_get_task(), I changed: return 'show' if ( $R->{path}{full}->[0] ne 'Page' ); to: return 'show' if ( $R->{path}{full}->[0] !~ /^page$/i ); However, Dietmar said that you were using the URL '/Page/create/' (as opposed to '/page/create/') and that actually works for me so I'm a little dumbfounded. Can you set the server debug level to 1, restart your server, request the page and send me (not the list, since it's likely to be large) the log entry for that request? Chris -- Chris Winters (ch...@cw...) Building enterprise-capable snack solutions since 1988. |