Hi philippe,

So, it's not so bad... The problem for the login window is resolved! it was
a bug into firefox, I,m using konquerer and it's ok!

There is still some questions, because http://localhost:8080/Jahia still
works, so this is my configuration overview, if you have any idea... 

This is my ROOT path:
----------------------
/app/jahia/ROOT
Note, there is no Jahia application into webapps directory.




This is my jahia.properties:
----------------------------
### URL's  ###########################

jahiaHostHttpPath       =   
jahiaCoreHttpPath       =   /jahia 
jahiaTemplatesHttpPath  =   /jsp/jahia/templates/
jahiaEnginesHttpPath    =   /jsp/jahia/engines/
jahiaJavaScriptHttpPath =   /jsp/jahia/javascript/jahia.js




This are content_servlet_path, defaultContextPath and defaultServletPath
[web.xml]:
-------------------------------------------------------------------------
<init-param>
            <param-name>content_servlet_path</param-name>
            <param-value>/Jahia/</param-value>
</init-param>

<param-name>defaultContextPath</param-name>
          <param-value></param-value>
</init-param>

 <init-param>
          <!-- This parameter defines the default servlet path that will
               be used to generate URLs
          -->
          <param-name>defaultServletPath</param-name>
          <param-value>/jahia</param-value>
</init-param>



This are Standard Action Servlet Mapping [web.xml]:
---------------------------------------------------
<!-- Standard Action Servlet Mapping -->
<servlet-mapping>
    <servlet-name>Jahia</servlet-name>
    <url-pattern>*.do</url-pattern>
</servlet-mapping>
<servlet-mapping>
    <servlet-name>Jahia</servlet-name>
    <url-pattern>/Jahia/*</url-pattern>
</servlet-mapping>
<servlet-mapping>
    <servlet-name>JahiaAdministration</servlet-name>
    <url-pattern>/administration/*</url-pattern>
</servlet-mapping>
<servlet-mapping>
    <servlet-name>JahiaConfigurationWizard</servlet-name>
    <url-pattern>/installation/*</url-pattern>
</servlet-mapping>



This is my welcome-file [web.xml]:
----------------------------------
<welcome-file-list>
    <welcome-file>jsp/index.jsp</welcome-file>
  </welcome-file-list>



This is my index.jsp file content:
----------------------------------
<%@ page language="java" %>
<jsp:forward page="/Jahia/" />



Where does the problem comes from?

Philippe Vollenweider wrote:

> How can it work with http://localhost:8080/jahia if you use it as
> ROOT context outside of the webapps directory? With Jahia in ROOT
> context http://localhost:8080/jahia should not be accessible. Please
> check your config!
> 
> Then check your welcome-file. In the jahia's web.xml, the
> welcome-file is jsp/index.jsp wich forward to /Jahia.
> So if you user corectly Jahia as ROOT context, you have
> 
> http://localhost:8080/ -> http://localhost:8080/jsp/index.jsp ->
> http://localhost:8080/Jahia
> 
> Philippe.


Reply via email to