[Neos] Installing NEOS on LAMPP

Martin martinstockffm at googlemail.com
Fri Aug 1 15:35:08 CEST 2014


I try to install Typo3 Neos 1.1 on a lampp server (new version) on Linux Mint 17.

I made the following entries in the "hosts" file:

127.0.0.1       localhost
127.0.0.1       neos.demo
127.0.1.1	roma-HP-Pavilion-dv6700-Notebook-PC


# The following lines are desirable for IPv6 capable hosts
::1     ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

The following entries I have done in the file "httpd-vhosts.conf":

# Virtual Hosts
#
# Required modules: mod_log_config

# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at 
# <URL:http://httpd.apache.org/docs/2.4/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.

#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for all requests that do not
# match a ServerName or ServerAlias in any <VirtualHost> block.
#
<VirtualHost *:80>
    ServerAdmin webmaster at dummy-host.example.com
    DocumentRoot "/opt/lampp/docs/dummy-host.example.com"
    ServerName dummy-host.example.com
    ServerAlias www.dummy-host.example.com
    ErrorLog "logs/dummy-host.example.com-error_log"
    CustomLog "logs/dummy-host.example.com-access_log" common
</VirtualHost>

<VirtualHost *:80>
    ServerAdmin webmaster at dummy-host2.example.com
    DocumentRoot "/opt/lampp/docs/dummy-host2.example.com"
    ServerName dummy-host2.example.com
    ErrorLog "logs/dummy-host2.example.com-error_log"
    CustomLog "logs/dummy-host2.example.com-access_log" common
</VirtualHost>


NameVirtualHost *:80 # if needed

<VirtualHost *:80>
 ServerName neos.demo
    DocumentRoot "/opt/lampp/htdocs/TYPO3-Neos/Web/"
    # skip the following line for development
    SetEnv FLOW_CONTEXT Production
   
</VirtualHost>

When I try to use the local URL "http://neos.demo/" then I will redirect to the "Xampp/Lampp" starting page and the following I can see as URL: "http://neos.demo/xampp".o 

I try to get to "neos.demo/setup" I will have an error 404 website.

What can I do to solve this problem?


More information about the Neos mailing list