Ich habe ebenfalls das Problem das keine Änderungen im Contentbereich übernommen werden wenn das
SEO aktiv ist.
Nachdem ich die .htaccess und eigenen Rewrite Regeln nach Anleitung hier im Forum angepasst habe ist zumindestens schon mal der Error mit dem fehlenden Betreff und Textlänge verschwunden.
Meine Einstellungen
Root .htaccess (vbcms)
RewriteEngine On
#Options +Indexes
#Options +FollowSymLinks
#RewriteBase /
RewriteRule ^forum/((urllist|sitemap).*\.(xml|txt)(\.gz)?)$ forum/vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
RewriteCond %{REQUEST_FILENAME} -f
RewriteCond %{REQUEST_FILENAME} forum/(admincp|modcp|clientscript|cpstyles|images|soap|s erver)/
RewriteRule ^(.*)$ $1 [L]
RewriteCond %{QUERY_STRING} !vbseourl=
RewriteCond %{REQUEST_FILENAME} !chat
RewriteRule ^forum/(.*\.php)$ forum/vbseo.php?vbseourl=$1&%{QUERY_STRING} [L]
RewriteRule ^forum/(archive/.*)$ forum/vbseo.php?vbseourl=$1&%{QUERY_STRING} [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^forum/(.+)$ forum/vbseo.php?vbseourl=$1&%{QUERY_STRING} [L]
RewriteCond %{REQUEST_FILENAME} !forum/
RewriteCond %{QUERY_STRING} !vbseourl=
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ forum/vbseo.php?vbseourl=$1&vbseorelpath=../&%{QUERY_STRING} [L]
Forum .htaccess
# Comment the following line (add '#' at the beginning)
# to disable mod_rewrite functions.
# Please note: you still need to disable the hack in
# the vBSEO control panel to stop url rewrites.
RewriteEngine On
# Some servers require the Rewritebase directive to be
# enabled (remove '#' at the beginning to activate)
# Please note: when enabled, you must include the path
# to your root vB folder (i.e. RewriteBase /forums/)
RewriteBase /forum/
#RewriteCond %{HTTP_HOST} !^www\.yias\.de
#RewriteRule (.*) http://www.yias.de/forum/$1 [L,R=301]
RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap)
RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !/(admincp|modcp|clientscript|cpstyles|images)/
RewriteRule ^(.+)$ vbseo.php [L,QSA]
Custom Rewrite Rules im SEO CP
'^index.php\?area=vbcmsarea_home$' => 'vbcms/'
'^index.php\?do=morenews$' => 'vbcms/morenews'
'^index.php\?area=vbcmsarea_content&name=(.+)&cont entid=(\d+)$' => 'content/$1-$2.html'
'^index.php\?area=vbcmsarea_content&do=searchconte nt$' => 'content/search'
'^index.php\?area=vbcmsarea_links$' => 'links/'
'^index.php\?area=vbcmsarea_links&do=showcat&name= (.+)&catid=(\d+)$' => 'links/$1-$2.html'
'^index.php\?area=vbcmsarea_links&do=showlinkentry &name=(.+)&linkid=(\d+)&catid=(\d+)$' => 'links/$1-$2-$3.html'
'^index.php\?area=vbcmsarea_links&do=showlinkentry &name=(.+)&linkid=(\d+)&catid=(\d+)&goto=lastco mme nt$' => 'links/$1-$2-$3-lastcomment.html'
'^index.php\?area=vbcmsarea_links&do=search&show=n ewlinks$' => 'links/newlinks'
'^index.php\?area=vbcmsarea_links&do=search$' => 'links/search'
'^index.php\?area=vbcmsarea_products$' => 'shop/'
'^index.php\?area=vbcmsarea_products&name=(.+)&do= showcat&catid=(\d+)$' => 'shop/$1-$2.html'
'^index.php\?area=vbcmsarea_products&do=showprod&n ame=(.+)&prodid=(\d+)&catid=(\d+)$' => 'shop/$1-$2-$3.html'
'^index.php\?area=vbcmsarea_products&do=search$' => 'shop/search'
'^index.php\?area=vbcmsarea_products&do=search&sho w=newprods$' => 'shop/search/newprods'