[TYPO3-german] Re: NEOS Installation mit Xampp auf Linux Mint 17

Martin martinstockffm at googlemail.com
Wed Jan 7 13:50:28 CET 2015


Nun, da bin ich wieder. Ich habe nun XAMPP komplett entfernt und Apache2, PHP und MySQL auf Linux Mint 17 XFCE nach einer Anleitung installiert.

Nun habe ich folgendes gemacht: Die file-permissions sind nun so angegeben:

sudo ./flow core:setfilepermissions roma roma roma

Ich habe den Webserver User und die Webserver Gruppe angepasst und auch mich als User hinterlegt. Das hat auch geklappt.

mod_rewrite ist ebenfalls aktiv.

Die ganzen NEOS Daten liegen im folgenden Verzeichnis: /var/www/beispiel.de/TYPO3-Neos/Web/

(Im Typo3-Neos Verzeichnis finde ich den Setup Ordner nicht!)

In der Vhost Datei - beispiel.de.conf - ist folgendes hinterlegt: 

 <VirtualHost *:80>
   DocumentRoot "/var/www/beispiel.de/TYPO3-Neos/Web/"
<Directory /var/www/beispiel.de/TYPO3-Neos/Web/>
    Options MultiViews Indexes FollowSymLinks
    # Für mod rewrite
    AllowOverride All
  </Directory>
</VirtualHost> 

In der htaccess Datei ist folgendes u.a. hinterlegt:

# If the root path is not the parent of the Web directory,
# TYPO3 Flow's root path must be specified manually:
# SetEnv FLOW_ROOTPATH /var/www/myapp/
SetEnv FLOW_ROOTPATH /var/www/beispiel.de/TYPO3-Neos/

#
# mod_rewrite configuration
#
<IfModule mod_rewrite.c>

	# Enable URL rewriting
	RewriteEngine On

	# Set flag so we know URL rewriting is available
	SetEnv FLOW_REWRITEURLS 1

	# You will have to change the path in the following option if you
	# experience problems while your installation is located in a subdirectory
	# of the website root.
	RewriteBase /

	# Stop rewrite processing no matter if a package resource, robots.txt etc. exists or not
	RewriteRule ^(_Resources/Packages/|robots\.txt|favicon\.ico) - [L]

	# Stop rewrite process if the path points to a static file anyway
	RewriteCond %{REQUEST_FILENAME} -f [OR]
	RewriteCond %{REQUEST_FILENAME} -l [OR]
	RewriteCond %{REQUEST_FILENAME} -d
	RewriteRule .* - [L]

	# Perform rewriting of persistent private resources
	RewriteRule ^(_Resources/Persistent/[a-zA-Z0-9]+/(.+/)?[a-f0-9]{40})/.+(\..+) $1$3 [L]

	# Perform rewriting of persistent resource files
	RewriteRule ^(_Resources/Persistent/.{40})/.+(\..+) $1$2 [L]

	# Make sure that not existing resources don't execute TYPO3 Flow
	RewriteRule ^_Resources/.* - [L]

	# Continue only if the file/symlink/directory does not exist
	RewriteRule (.*) index.php

</IfModule>

Das alles nützt aber nichts, denn ich bekomme, wenn ich "neos.demo" eingebe nur die Hinweisseite mit folgendem Hinweis:
Database Error

Sorry, we detected an error with your database. Check your logfiles in Data/Logs/* for more information.

You might want to configure or check your database configuration in the setup.

Go to setup

Der Link zum Setup geht nicht bzw. führt zu einer 404 Fehlerseite mit folgendem Inhalt:

Not Found

The requested URL /setup was not found on this server.
Apache/2.4.7 (Ubuntu) Server at neos.demo Port 80

Was ist noch zu machen, damit ich das Setup endlich zum Laufen bekomme?


More information about the TYPO3-german mailing list