2017 © Pedro Peláez
 

library mage-servlet

An appserver.io servlet to execute Magento

image

appserver-io-lab/mage-servlet

An appserver.io servlet to execute Magento

  • Thursday, April 30, 2015
  • by wagnert
  • Repository
  • 2 Watchers
  • 3 Stars
  • 44 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Magento Servlet Implementation

This is minimalistic servlet implementation to run Magento as servlet in the servlet engine., (*1)

Issues

In order to bundle our efforts we would like to collect all issues regarding this package in the main project repository's issue tracker. Please reference the originating repository as the first element of the issue title e.g.: [appserver-io/<ORIGINATING_REPO>] A issue I am having, (*2)

Usage

To activate the servlet create a file called WEB-INF/web.xml in your Magento root directory and copy the following content into this file., (*3)


<web-app version="1.0">

    <display-name>Mage Servlet</display-name>
    <description>Mage Servlet</description>

    <servlet>
        <description/>
        <display-name>MageServlet</display-name>
        <servlet-name>MageServlet</servlet-name>
        <servlet-class>AppserverIo\Lab\MageServlet\MageServlet</servlet-class>
    </servlet>

    <servlet-mapping>
        <servlet-name>MageServlet</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

    <servlet-mapping>
        <servlet-name>MageServlet</servlet-name>
        <url-pattern>/*</url-pattern>
    </servlet-mapping>

</web-app>

After storing the file and restarting the appserver open your browser enter the URL http://127.0.0.1:9080/magento/index.do to run Magento using the servlet instead of the FastCGI or PHP module., (*4)

The Versions

30/04 2015

dev-master

9999999-dev https://github.com/appserver-io-lab/mage-servlet

An appserver.io servlet to execute Magento

  Sources   Download

OSL-3.0

The Requires

  • php >=5.4.0

 

The Development Requires

container web appserver servlet

12/02 2015

0.1.0

0.1.0.0 https://github.com/appserver-io-lab/mage-servlet

An appserver.io servlet to execute Magento

  Sources   Download

OSL-3.0

The Requires

  • php >=5.4.0

 

The Development Requires

container web appserver servlet