vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Major Additions - [DBTech] DragonByte SEO v2 (vB4) (https://vborg.vbsupport.ru/showthread.php?t=308615)

Disco_Dave 05-08-2014 07:42 AM

I've been using the lite version of this mod since it was released here, and haven't had any problems with it at all.

bzcomputers 05-08-2014 12:09 PM

Quote:

Originally Posted by Disco_Dave (Post 2496770)
I've been using the lite version of this mod since it was released here, and haven't had any problems with it at all.

I agree, it has been stable since the first Release Candidate back in January.

Chadi 05-08-2014 07:58 PM

Can someone please suggest optimal DBSEO settings to work alongside Lite Speed?

My htaccess as of now:

Code:

RewriteEngine On

RewriteBase /

RewriteCond %{HTTP_HOST} !^www\.talkjesus\.com
RewriteRule (.*)  http://www.talkjesus.com/$1 [L,R=301]

RewriteCond %{REQUEST_URI} !(adminxxxxx/|modsxxxxx/|cron)
RewriteRule ^((archive/)?(.*\.php(/.*)?)?)$ dbseo.php [L,QSA]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !^(adminxxxxx|modsxxxxx|clientscript|cpstyles|images|gallery)/
RewriteRule ^(.+)$ dbseo.php [L,QSA]

## Rewrites
<ifmodule mod_rewrite.c>
    RewriteEngine on
    Options +FollowSymlinks

    RewriteCond %{REQUEST_FILENAME} -s [OR]
    RewriteCond %{REQUEST_FILENAME} -l [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^.*$ - [NC,L]

    # Media Library
    ReWriteRule ^media/m(\d+).*/tags$ media.php?do=tags_edit&mid=$1 [QSA]
    ReWriteRule ^media/m(\d+).*/edit$ media.php?do=details_edit&mid=$1 [QSA]
    ReWriteRule ^media/m(\d+).*/report$ media.php?do=report&mid=$1 [QSA]
    ReWriteRule ^media/m(\d+).*/c(\d+)$ media.php?do=comment_edit&cmt=$2 [QSA]
    ReWriteRule ^media/m(\d+).*/p(\d+).*$ media.php?do=details&mid=$1&pid=$2 [QSA]
    ReWriteRule ^media/m(\d+).* media.php?do=details&mid=$1 [QSA]
    ReWriteRule ^media/p(\d+).*/edit$ media.php?do=playlist_edit&pid=$1 [QSA]
    ReWriteRule ^media/p(\d+).* media.php?do=playlist&pid=$1 [QSA]
    ReWriteRule ^media/c(\d+).* media.php?do=category&cid=$1 [QSA]
    ReWriteRule ^media/u(\d+).* media.php?do=user&uid=$1 [QSA]
    ReWriteRule ^media/tag/(.*) media.php?do=tag&tid=$1 [QSA]
    ReWriteRule ^media/results/(.*) media.php?do=results&query=$1 [QSA]
    ReWriteRule ^media/advresults/(.*) media.php?do=advresults&query=$1 [QSA]
    ReWriteRule ^media/letter/(.*) media.php?do=letter&query=$1 [QSA]
    ReWriteRule ^media/browse.* media.php?do=browse [QSA]
    ReWriteRule ^media/search.* media.php?do=search [QSA]
    ReWriteRule ^media/random.* media.php?do=random [QSA]
    ReWriteRule ^media/submit.* media.php?do=submit [QSA]
    ReWriteRule ^media/tagcloud.* media.php?do=tagcloud [QSA]
    ReWriteRule ^media/playlists.* media.php?do=playlists [QSA]
    ReWriteRule ^media/pcreate.* media.php?do=playlists_create [QSA]
    ReWriteRule ^media/pmine.* media.php?do=playlists_mine [QSA]
    ReWriteRule ^media/favorites.* media.php?do=favorites [QSA]
    ReWriteRule ^media/subscriptions.* media.php?do=subscriptions [QSA]
    ReWriteRule ^media/admin/edit/s(\d+).* media.php?do=admin_host_edit&sid=$1 [QSA]
    ReWriteRule ^media/admin/delete/s(\d+).* media.php?do=admin_host_delete&sid=$1 [QSA]
    ReWriteRule ^media/admin/export/s(\d+).* media.php?do=admin_host_export&sid=$1 [QSA]
    ReWriteRule ^media/admin/(\w+).* media.php?do=admin_$1 [QSA]

    # Media Library from Video Directory
    RewriteCond %{QUERY_STRING} do=viewdetails&videoid=(\d+)
    RewriteRule ^video\.php$ media.php?do=details&mid=%1
    RewriteCond %{QUERY_STRING} viewcategory&categoryid=(\d+)
    RewriteRule ^video\.php$ media.php?do=category&cid=%1
    RewriteCond %{QUERY_STRING} viewuser&userid=(\d+)
    RewriteRule ^video\.php$ media.php?do=user&uid=%1
    RewriteCond %{QUERY_STRING} viewtag&tag=(.*)
    RewriteRule ^video\.php$ media.php?do=tag&tid=%1
    ReWriteRule ^video\.php$ media.php

    # 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} -s [OR]
    RewriteCond %{REQUEST_FILENAME} -l [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^.*$ - [NC,L]

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

## Expires
<ifModule mod_expires.c>
    ExpiresActive On
    ExpiresByType image/gif "access plus 1 year"
    ExpiresByType image/jpeg "access plus 1 year"
    ExpiresByType image/png "access plus 1 year"
    ExpiresByType text/css "access plus 1 year"
    ExpiresByType text/javascript "access plus 1 year"
    ExpiresByType application/javascript "access plus 1 year"
    ExpiresByType application/x-javascript "access plus 1 year"
</ifModule>

#Deny attempts to view the Htaccess file.
<Files .htaccess>
Order allow,deny
Deny from all
</Files>

RewriteCond %{HTTP_HOST} ^talkjesus\.org$ [OR]
RewriteCond %{HTTP_HOST} ^www\.talkjesus\.org$
RewriteRule ^/?$ "http\:\/\/www\.talkjesus\.com\/" [R=301,L]

RewriteCond %{HTTP_HOST} ^talkjesus\.co\.uk$ [OR]
RewriteCond %{HTTP_HOST} ^www\.talkjesus\.co\.uk$
RewriteRule ^/?$ "http\:\/\/www\.talkjesus\.com\/" [R=301,L]

RewriteCond %{HTTP_HOST} ^talkjesus\.us$ [OR]
RewriteCond %{HTTP_HOST} ^www\.talkjesus\.us$
RewriteRule ^/?$ "http\:\/\/www\.talkjesus\.com\/" [R=301,L]

RewriteCond %{HTTP_HOST} ^talkjesus\.info$ [OR]
RewriteCond %{HTTP_HOST} ^www\.talkjesus\.info$
RewriteRule ^/?$ "http\:\/\/www\.talkjesus\.com\/" [R=301,L]

RewriteCond %{HTTP_HOST} ^talkjesus\.mobi$ [OR]
RewriteCond %{HTTP_HOST} ^www\.talkjesus\.mobi$
RewriteRule ^/?$ "http\:\/\/www\.talkjesus\.com\/" [R=301,L]

RewriteCond %{HTTP_HOST} ^talkjesus\.net$ [OR]
RewriteCond %{HTTP_HOST} ^www\.talkjesus\.net$
RewriteRule ^/?$ "http\:\/\/www\.talkjesus\.com\/" [R=301,L]
<Files 403.shtml>
order allow,deny
allow from all
</Files>

Litespeed config is default as of now. Running PHP 5.4, vBulletin 4.2 and MySQL 5.5

final kaoss 05-09-2014 02:18 AM

If you bought dbseo you can ask for support at their forums since it looks like you paid to remove the footer link.

viper357 05-09-2014 03:06 PM

Quote:

Originally Posted by Chadi (Post 2496872)
Can someone please suggest optimal DBSEO settings to work alongside Lite Speed?

Does it matter if you're using Litespeed?

bzcomputers 05-09-2014 05:15 PM

Quote:

Originally Posted by viper357 (Post 2496984)
Quote:

Originally Posted by Chadi (Post 2496872)
Can someone please suggest optimal DBSEO settings to work alongside Lite Speed?

Does it matter if you're using Litespeed?

It shouldn't. Whether you're running LiteSpeed or not your .htaccess file should be the same.

XiTCLUB 05-10-2014 08:07 PM

What is the guarantee this mod will remain alive ? like i already wasted $150 on vBSEO and they was also like never going down..

bzcomputers 05-10-2014 08:51 PM

Quote:

Originally Posted by XiTCLUB (Post 2497190)
What is the guarantee this mod will remain alive ? like i already wasted $150 on vBSEO and they was also like never going down..

There are no guarantees, but there is hardly any comparison between what was vbSEO and what is DragonByte Tech the makers of DBSEO.

vbSEO
A) 1 mod (2 if you count there vbSEO Sitemap mod which was an add-on)
B) Continually questionable support. They had'nt supported their product(s) on here or in their own forums for nearly 2 1/2 years (and unfortunately people were still buying the product). In the nine years they were members here they only made about 60 posts.

DragonByte Tech
A) Over 80 supported mods for vBulletin which includes mods for vB3, vB4, and vb5. They are very familiar with the code and are continually putting out updates to products weekly.
B) They have their own active support forum which the respond to questions/requests to daily. They are also active here on vbulletin.org nearly daily.
C) They've produced numerous Mods of the Month and are still continually producing new products to support all versions of vBulletin.
D) Are considered by many on here to have exceptional support for their products.

DragonByte Tech 05-11-2014 05:33 PM

Quote:

Originally Posted by ramesh_umk3 (Post 2496760)
Till yesterday i was vbseo user everything went smooth but while generating sitemap i got below error .

Code:

Database error in vBulletin 4.2.2:

Invalid SQL:
DELETE FROM adminutil WHERE title = 'dbtech_dbseo_sitemapsession';

MySQL Error  : MySQL server has gone away
Error Number  : 2006

1) i have reinstalled again and again
2) increased my memory limit
3) reinstalled my vb

i still see same error

did i miss any procedure ?

thanks

You can read this manual entry for the explanation of that error: http://dev.mysql.com/doc/refman/5.0/en/gone-away.html

Quote:

Originally Posted by gsmlover4u (Post 2496761)
dbseo still not released stable version

This mod has received 15 updates since it was flagged stable :)

Quote:

Originally Posted by viper357 (Post 2496984)
Does it matter if you're using Litespeed?

It shouldn't, though we haven't explicitly tested this mod on Litespeed.

Quote:

Originally Posted by XiTCLUB (Post 2497190)
What is the guarantee this mod will remain alive ? like i already wasted $150 on vBSEO and they was also like never going down..

It's impossible for us to make any form of guarantees regarding the lifetime of the modification, unfortunately. To take it straight to 11; I could get killed in any manner of horrible ways tomorrow, leaving the rest of the team scrambling to support it :p

On a more serious note: We have no plans of discontinuing support for DBSEO. It's our top priority, and due to the nature of the mod it will remain our top priority for the foreseeable future.

I don't think you should consider the money you spent on vBSEO a waste. You got the functionality you paid for, and the security vulnerabilities vBSEO currently suffers from was not something yourself nor the vBSEO team could have foreseen.

If DragonByte Tech ever closes its doors, or anything happens that would even remotely affect our ability to do business (extended holidays, injuries/illnesses/deaths rendering one of our team members incapable of working for extended periods of time), we would send out a newsletter from our site informing our customers of this.

We would never simply disappear without a word, leaving our customers high and dry. You would always be informed to the best of our abilities, leaving you time to seek alternative solutions if you feel that this is the best course of action for your site.


Fillip

DragonByte Tech 05-11-2014 05:39 PM

DragonByte SEO v1.0.15

New Features:

Breadcrumb Microdata
  • The "Breadcrumb" in vBulletin now supports "Microdata" (A.K.A. "Rich Snippets")
  • Allows Google search results to display the breadcrumb in the search results
  • Search results appear more professional and increases likelihood of clickthrough

Bug Fixes And Issue Fixes:
  • Meta Description would be 1 character longer than the defined maximum
  • (vB3) Fixed an issue where the "Additional Thread Info" plugin would cause a DB error on certain MySQL versions


Fillip


All times are GMT. The time now is 07:33 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01534 seconds
  • Memory Usage 1,791KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (9)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete