Changeset 30723 for main/trunk


Ignore:
Timestamp:
2016-08-18T21:18:15+12:00 (8 years ago)
Author:
ak19
Message:

Fixing annoyingness: To avoid the CGI permissions error appearing continuously in the (localhost) log, need privileged=true set in the root context.xml file too, not just greenstone context file.

Location:
main/trunk/greenstone3
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/build.xml

    r30673 r30723  
    14031403      <unzip src="${packages.home}/${tomcat.version}.zip"
    14041404        dest="${packages.home}"/>
    1405      
     1405     
    14061406      <!-- If we are using Java 1.4, we'd be using tomcat 5.5 in which case
    14071407      we would need to have the tomcat compat package to work with Java 1.4-->
     
    14201420        <fileset dir="${packages.home}/${tomcat.version}"/>
    14211421      </move>
     1422     
     1423      <!-- To avoid the CGI permissions error appearing continuously in the (localhost) log,
     1424        need privileged=true set in the root context.xml file too, not just greenstone context file -->
     1425      <!-- http://antelope.stage.tigris.org/nonav/docs/manual/bk03ch05s02.html -->
     1426      <if><bool><not><islessthan arg1="${tomcat.version.major}" arg2="7"/></not></bool>     
     1427        <copy file="${basedir}/resources/tomcat/root_context.xml" tofile="${packages.home}/tomcat/conf/context.xml" overwrite="true" />     
     1428      </if>
     1429       
     1430     
    14221431      <!--
    14231432      <copy file="${basedir}/resources/tomcat/setclasspath.bat"
Note: See TracChangeset for help on using the changeset viewer.