Forum Home___________________________________________________________ 3D Berlin Stradrundgang 3D Berlin News 3D Berlin Community Seite

Hey Fremder!

Sieht so aus als wenn du neu hier bist. Wenn du mitmachen willst, drücke einen dieser Buttons!

Vanilla Forum auf 1und1 Server Hosting PHP 5.3 .htaccess config

Ich habe eine weile suchen müssen, also hier für alle die ein Vanilla Forum auf 1und1 Webhosting Paketen wollen:
Die meisten kennen das Problem schon, 1und1 ist per default auf einer arg alten PHP version:
Achtung, PHP5 ist bei 1und1 nur version 5.2 und nicht das für Vanilla Forum benötigte 5.3 also müssen wir 6 laden (dev)_
 
Kurz und gut folgende .htaccess funktioniert bei mir für das Vanilla Forum:


# 1und1 .htaccess vanilla forum
# If you modify this file then change the above line to: # Modified
<IfModule mod_rewrite.c>
   RewriteEngine On
   # Certain hosts may require the following line.
   # If vanilla is in a subfolder then you need to specify it after the /. 
   # (ex. You put Vanilla in /forum so change the next line to: RewriteBase /forum)
   
   #Folgende Zeile bearbeiten: RewriteBase /DEIN FORUM FOLDER BEi 1und1
   RewriteBase /forums
   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteRule ^(.*)$ index.php\?p=$1 [QSA,L]
</IfModule>

#hier die zeilen für php6:

AddType x-mapp-php6 .php
AddHandler x-mapp-php6 .php
Sign In or Register to comment.