[xwiki-users] DocumentDoesNotExist
Hi all, after the login, xwiki always redirect the response to http://192.168.24.116:8080/xwiki/xwiki/bin/view/Main/DocumentDoesNotExist. In the web.xml there is this setting
<error-page> <error-code>404</error-code> <location>xwiki/bin/view/Main/DocumentDoesNotExist</location> </error-page>
but i don't understand why the login request get error 404. Can someone help me? Thanks Raffo
Hi, Raffaele, Raffaele Viola wrote:
Hi all,
after the login, xwiki always redirect the response to http://192.168.24.116:8080/xwiki/xwiki/bin/view/Main/DocumentDoesNotExist.
Does Main.WebHome exist in your wiki? In any case, could you clean the cache and try again? HTH, Ricardo -- Ricardo Rodríguez Your EPEC Network ICT Team
I got the same problem and I mistakely think it caued by my use of short URL. It seems other people got the same problem, too. http://jira.xwiki.org/jira/browse/XWIKI-2292 for my case, the Main.WebHome does exist and it is forwarded to XWSAdmin.WebHome that does exist. ... #if($hasadmin) $response.sendRedirect("$xwiki.getURL('XWSAdmin.WebHome','view')") ... In Raffo's case, there is a "xwiki/xwiki/.." in the url. it looks like the problem. regards, mingfai On Wed, Apr 9, 2008 at 8:28 PM, [Ricardo Rodriguez] Your EPEC Network ICT Team <[email protected]> wrote:
Hi, Raffaele,
Raffaele Viola wrote:
Hi all,
after the login, xwiki always redirect the response to
http://192.168.24.116:8080/xwiki/xwiki/bin/view/Main/DocumentDoesNotExist.
Does Main.WebHome exist in your wiki?
In any case, could you clean the cache and try again?
HTH,
Ricardo
-- Ricardo Rodríguez Your EPEC Network ICT Team
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
After changing the web.xml, I've fixed my problem. Thanks Raffo! :-) <error-page> <error-code>404</error-code> <!--<location>/xwiki/bin/view/Main/DocumentDoesNotExist</location>--> <location>/bin/Main/DocumentDoesNotExist</location> </error-page> Regards, mingfai On Wed, Apr 9, 2008 at 8:53 PM, Mingfai <[email protected]> wrote:
I got the same problem and I mistakely think it caued by my use of short URL. It seems other people got the same problem, too. http://jira.xwiki.org/jira/browse/XWIKI-2292
for my case, the Main.WebHome does exist and it is forwarded to XWSAdmin.WebHome that does exist. ... #if($hasadmin) $response.sendRedirect("$xwiki.getURL('XWSAdmin.WebHome','view')") ...
In Raffo's case, there is a "xwiki/xwiki/.." in the url. it looks like the problem.
regards, mingfai
On Wed, Apr 9, 2008 at 8:28 PM, [Ricardo Rodriguez] Your EPEC Network ICT Team <[email protected]> wrote:
Hi, Raffaele,
Raffaele Viola wrote:
Hi all,
after the login, xwiki always redirect the response to
http://192.168.24.116:8080/xwiki/xwiki/bin/view/Main/DocumentDoesNotExist .
Does Main.WebHome exist in your wiki?
In any case, could you clean the cache and try again?
HTH,
Ricardo
-- Ricardo Rodríguez Your EPEC Network ICT Team
_______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
Mingfai wrote:
After changing the web.xml, I've fixed my problem. Thanks Raffo! :-)
<error-page> <error-code>404</error-code> <!--<location>/xwiki/bin/view/Main/DocumentDoesNotExist</location>--> <location>/bin/Main/DocumentDoesNotExist</location> </error-page>
This was a bug which is fixed in the 1.4M1 release (and the trunk). -- Sergiu Dumitriu http://purl.org/net/sergiu/
participants (4)
-
[Ricardo Rodriguez] Your EPEC Network ICT Team -
Mingfai -
Raffaele Viola -
Sergiu Dumitriu