Hallo, Baghira!
Danke für die prompte Antwort - obwohl Ostersamstag ist, hätte ich nicht gedacht!
Die base href dürfte korrekt sein:
am Webserver liegt contenido unter
/home/p/peko/public_html/contenido/contenido
und
http://www.coda.at unter
/home/p/peko/
www.coda.at
Mit dieser Contenido-Installation habe ich noch zwei Webseiten (Mandanten) am gleichen Server hochzuziehen - parallele Dateistruktur.
.htaccess sieht so aus:
[code]###############################################################################
# Contenido AMR plugin restrictive rewrite rules set
#
# Contains strict rules, each rewrite exclusion must be set manually.
#
# - Exclude requests to directories usage/, contenido/, setup/, cms/upload/
# - Exclude requests to cms/front_content.php
# - Pass thru requests to common ressources (pics, js, css, pdf)
#
###############################################################################
# Enable following lines to run PHP5 on 1und1.de (1and1.com)
# ----------------------------------------------------------
#AddType x-mapp-php5 .php
#AddHandler x-mapp-php5 .php
<IfModule mod_rewrite.c>
# Enable rewrite engine
# ---------------------
RewriteEngine on
# Specify a base URL-path for the rules
# -------------------------------------
# RewriteBase /cms
RewriteBase /
# Catch some common exploits in query string to get rid of them
# NOTE: Conditions to prevent protocolls (ftp, http[s]) in query string could be a
# disadvantage in some cases
# --------------------------------------------------------------------------------
RewriteCond %{QUERY_STRING} contenido_path=.*$ [NC,OR]
RewriteCond %{QUERY_STRING} cfg\[path\]=.*$ [NC,OR]
RewriteCond %{QUERY_STRING} _PHPLIB\[libdir\]=.*$ [NC,OR]
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
RewriteCond %{QUERY_STRING} ftp://.*$ [NC,OR]
RewriteCond %{QUERY_STRING} http[s]*://.*$ [NC]
RewriteRule ^.* - [F,L] # all matching conditions from above will end in nirvana
# Exclude some files and directories from rewriting
# -------------------------------------------------
RewriteRule ^usage/.*$ - [L]
RewriteRule ^webalizer/.*$ - [L]
RewriteRule ^contenido/.*$ - [L]
RewriteRule ^admin/.*$ - [L]
RewriteRule ^setup/.*$ - [L]
RewriteRule ^upload/.*$ - [L]
RewriteRule ^test/.*$ - [L]
# enable guestbook-captcha
RewriteRule ^includes/captcha/image.php.*$ - [L]
#RewriteRule ^front_content.php.*$ - [L]
# enable following line if you want to run the plugin test
RewriteRule ^mr_test.php.*$ - [L]
RewriteRule ^admin.php.*$ - [L]
RewriteRule ^index.php.*$ - [L]
RewriteRule ^phpinfo.php.*$ - [L]
# One RewriteRule to rule them all
# --------------------------------
RewriteRule !\.(js|ico|gif|jpg|jpeg|png|css|pdf)$ front_content.php [NC,QSA,L]
</IfModule>
[/code]
Im contenido error-log
stehen jede Menge dieser Zeilen
[code][03-Apr-2010 16:14:56] PHP Warning: Invalid argument supplied for foreach() in /home/p/peko/public_html/contenido/contenido/includes/include.tplcfg_edit_form.php(404) : eval()'d code on line 57
[/code]
Die beziehen sich aber mMn auf etwas anderes, da keine neue Zeile ausgegeben wird, wenn ich die Gästebuch-eintragen-Seite öffne.
Vieeleicht könnten die Server error logs Aufschlüsse geben, da komme ich nur leider nicht hin, ist nicht mein Server...