Quercus: Gallery2
From Resin 3.0
(Difference between revisions)
(New page: Required resin-web.xml configuration: <web-app xmlns="http://caucho.com/ns/resin"> <servlet-mapping url-pattern="*.php" servlet-class="com.caucho.quercus.servlet.Quer...) |
|||
Line 1: | Line 1: | ||
− | Required resin-web.xml configuration: | + | Required resin-web.xml configuration for 3.1.2: |
+ | |||
+ | <web-app xmlns="http://caucho.com/ns/resin"> | ||
+ | <servlet-mapping url-pattern="*.php" | ||
+ | servlet-class="com.caucho.quercus.servlet.QuercusServlet"> | ||
+ | <init> | ||
+ | <script-encoding>ISO-8859-1</script-encoding> | ||
+ | </init> | ||
+ | </servlet-mapping> | ||
+ | </web-app> | ||
+ | |||
+ | |||
+ | Required resin-web.xml configuration for 3.1.1: | ||
<web-app xmlns="http://caucho.com/ns/resin"> | <web-app xmlns="http://caucho.com/ns/resin"> |
Revision as of 09:52, 11 July 2007
Required resin-web.xml configuration for 3.1.2:
<web-app xmlns="http://caucho.com/ns/resin">
<servlet-mapping url-pattern="*.php" servlet-class="com.caucho.quercus.servlet.QuercusServlet"> <init> <script-encoding>ISO-8859-1</script-encoding> </init> </servlet-mapping>
</web-app>
Required resin-web.xml configuration for 3.1.1:
<web-app xmlns="http://caucho.com/ns/resin">
<servlet-mapping url-pattern="*.php" servlet-class="com.caucho.quercus.servlet.QuercusServlet"> <init> <script-encoding>ISO-8859-1</script-encoding> <php-ini> <unicode.runtime_encoding>ISO-8859-1</unicode.runtime_encoding> </php-ini> </init> </servlet-mapping>
</web-app>