Question DB Seo problem redirect link

Status
Not open for further replies.

boldherri

Member
Hello, i have always problem on mod Dragonbytes:RpS_sad:

i have problem when i open links forum appear this message
Not Found

The requested URL /reviews/review/ was not found on this server.

Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 Server at xboxitaly.it Port 80

if i disable the product db seo i no have problem if enable DB seo i have this problem.

I have tried both approaches, and there is always the problem

V0yJT9.png


yy8XjY.png


this is my htaccess
<IfModule mod_rewrite.c>
RewriteEngine on

# Set to vbulletin directory
RewriteBase /

# Retrieve gamedata requests and send to new dbtech locations
RewriteRule ^arcade/gamedata/(.*) dbtech/vbarcade/media/$1 [L]

# Retrieve crossdomain requests and send to new dbtech location
RewriteRule ^crossdomain\.xml dbtech/vbarcade/crossdomain.xml [L]

# Send hardcoded legacy scores to arcade instead
RewriteCond %{REQUEST_URI} newscore\.php [OR]
RewriteCond %{REQUEST_URI} viewgame\.php
RewriteRule .* arcade.php?sendscore=legacy [L,QSA]

# Send hardcoded legacy scores to arcade instead
RewriteCond %{QUERY_STRING} func=storeScore [OR]
RewriteCond %{QUERY_STRING} autocom=arcade [OR]
RewriteCond %{QUERY_STRING} act=arcadelib [OR]
RewriteCond %{QUERY_STRING} act=Arcade
RewriteRule .* arcade.php [L,QSA]

# Reroute v3arcade liveinstaller
RewriteCond %{QUERY_STRING} do=liveinstall
RewriteCond %{REQUEST_URI} v3arcade_admin\.php

# If you renamed your admincp directory, change it here
RewriteRule .* %{DOCUMENT_ROOT}/admincp/arcade_admin.php?%{QUERY_STRING}&do=review&import=browse&system=v3a [L,R=301]
</IfModule>
RewriteEngine on

# If you are having problems or are using VirtualDocumentRoot, uncomment this line and set it to your vBulletin directory.
# RewriteBase /forum/

# If you are having problems with the rewrite from content/ to content.php, uncomment this line to turn MultiViews off.
# Options -MultiViews

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d

RewriteRule ^.*$ - [NC,L]

# Forum
RewriteRule ^threads/.* showthread.php [QSA]
RewriteRule ^forums/.* forumdisplay.php [QSA]
RewriteRule ^members/.* member.php [QSA]
RewriteRule ^blogs/.* blog.php [QSA]
RewriteRule ^entries/.* entry.php [QSA]

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d

RewriteRule ^.*$ - [NC,L]

# MVC
RewriteRule ^(?:(.*?)(?:/|$))(.*|$)$ $1.php?r=$2 [QSA]

# Check MVC result
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^(.*)$ - [NC,L]
RewriteRule ^(.*)$ - [R=404,L]

<IfModule mod_rewrite.c>
RewriteEngine On

# If you are having problems or are using VirtualDocumentRoot, uncomment this line and set it to your vBulletin directory.
# RewriteBase /

# If you are having problems with the rewrite from content/ to content.php, uncomment this line to turn MultiViews off.
# Options -MultiViews

RewriteCond %{REQUEST_URI} !(admincp/|dbseocp/|modcp/|cron|mobiquo|forumrunner|api\.php|reviewpost/|classifieds/|photopost/)
RewriteRule ^((archive/)?(.*\.php(/.*)?))$ dbseo.php [L,QSA]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !/(admincp|dbseocp|modcp|clientscript|cpstyles|images|reviewpost|classifieds|photopost)/
RewriteRule ^(.+)$ dbseo.php [L,QSA]
</IfModule>

you can help me solve this problem please?
 
Last edited:
You are attempting to use both vB4's rewrite rules AND DBSEO's rewrite rules. This does not work.

Change your .htaccess to this:
Code:
<IfModule mod_rewrite.c>
	RewriteEngine on

	# If you are having problems or are using VirtualDocumentRoot, uncomment this line and set it to your vBulletin directory.
	RewriteBase /

	# If you are having problems with the rewrite from content/ to content.php, uncomment this line to turn MultiViews off.
	# Options -MultiViews

	# Retrieve gamedata requests and send to new dbtech locations
	RewriteRule ^arcade/gamedata/(.*) dbtech/vbarcade/media/$1 [L]

	# Retrieve crossdomain requests and send to new dbtech location
	RewriteRule ^crossdomain\.xml dbtech/vbarcade/crossdomain.xml [L]

	# Send hardcoded legacy scores to arcade instead
	RewriteCond %{REQUEST_URI} newscore\.php [OR]
	RewriteCond %{REQUEST_URI} viewgame\.php
	RewriteRule .* arcade.php?sendscore=legacy [L,QSA]

	# Send hardcoded legacy scores to arcade instead
	RewriteCond %{QUERY_STRING} func=storeScore [OR]
	RewriteCond %{QUERY_STRING} autocom=arcade [OR]
	RewriteCond %{QUERY_STRING} act=arcadelib [OR]
	RewriteCond %{QUERY_STRING} act=Arcade
	RewriteRule .* arcade.php [L,QSA]

	# Reroute v3arcade liveinstaller
	RewriteCond %{QUERY_STRING} do=liveinstall
	RewriteCond %{REQUEST_URI} v3arcade_admin\.php

	# If you renamed your admincp directory, change it here
	RewriteRule .* %{DOCUMENT_ROOT}/admincp/arcade_admin.php?%{QUERY_STRING}&do=review&import=browse&system=v3a [L,R=301]

	# Forum
	RewriteRule ^threads/.* showthread.php [QSA]
	RewriteRule ^forums/.* forumdisplay.php [QSA]
	RewriteRule ^members/.* member.php [QSA]
	RewriteRule ^blogs/.* blog.php [QSA]
	RewriteRule ^entries/.* entry.php [QSA]

	RewriteCond %{REQUEST_URI} !(admincp/|dbseocp/|modcp/|cron|mobiquo|forumrunner|api\.php|reviewpost/|classifieds/|photopost/)
	RewriteRule ^((archive/)?(.*\.php(/.*)?))$ dbseo.php [L,QSA]

	RewriteCond %{REQUEST_FILENAME} !-f
	RewriteCond %{REQUEST_FILENAME} !-d
	RewriteCond %{REQUEST_FILENAME} !/(admincp|dbseocp|modcp|clientscript|cpstyles|images|reviewpost|classifieds|photopost)/
	RewriteRule ^(.+)$ dbseo.php [L,QSA]
</IfModule>

Set the vB Friendly URLs to Off, set Canonical URLs to Off, set Guest Canonical URLs to Off.
 
Hi [MENTIONS]Fillip H.[/MENTIONS]
I ran your advice and now does not give me error, when i open the link always brings me back page vBCms Comments

XV5Uiy.png


for me it is very important that the db seo work correctly in forum.

EDIT:
only now I've seen this problem, in my topic with pictures and videos there are not in the thread
HurR5N.png


RI-EDIT:
I have noticed one thing, if i login as a user is all ok, the connections link are correct, if I login as admin or moderator the forum is all unpacked, the connections of the link to the forum are incorrect.

DbCQfH.png


in more colors nicknames groups moderastore and super moderator have changed.

unregistered users see everything properly and not registered not work link.
 
Last edited:
Sorry, I don't understand any of that.

If you are having a problem that only affects certain usergroups, you may have a mod conflict. You should try disabling all other modifications and try again.
 
Sorry, I don't understand any of that.

If you are having a problem that only affects certain usergroups, you may have a mod conflict. You should try disabling all other modifications and try again.

I'm sorry for my english
If options in friendly url i cue the apply URL canons for members on no unregistered users the links are correct, while all other groups the links are incorrect.
 
The issue was that the vBCMS Comments forum was not excluded from the vSA statistics modification. I have applied this, and the thread displays are now identical for guests and members.
 
The issue was that the vBCMS Comments forum was not excluded from the vSA statistics modification. I have applied this, and the thread displays are now identical for guests and members.

Hi Fillip H., i've seen now work well, now your support is impeccable.
you've been very good.

Thank you so much for your support:)
 
Last edited:
Status
Not open for further replies.

Legacy DragonByte SEO

vBulletin 3.8.x vBulletin 4.x.x
Seller
DragonByte Technologies
Release date
Last update
Total downloads
7,169
Customer rating
5.00 star(s) 1 ratings
Back
Top