vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Major Additions - [DBTech] DragonByte SEO v2 (vB3) (https://vborg.vbsupport.ru/showthread.php?t=308616)

Max Taxable 03-30-2014 03:17 AM

Quote:

Originally Posted by Max Taxable (Post 2489369)
Strange thing... I had to remove the word 'and' from the two forums i had that word in the title of, otherwise was getting 404 error redirect to home page.

This was after trying all the options that involved using the forum name in the URL, if I used forum number there was no issue.

Perhaps a bug?

I was able to sort it by just not using the word 'and' in forum titles, for now.

I figured this out on my own. It's the "stopwords" setting doing this.

DragonByte Tech 03-30-2014 04:52 PM

This has been fixed in v1.0.9, which I opted not to release on vBulletin.org due to other issues that cropped up as a result of that fix.

v1.0.10 will be available tomorrow and will fix this issue along with all other reported bugs in v1.0.9. If you want, you can download v1.0.9 from our site just now, which will enable your forums to work with the stopwords filter turned on globally.

Thank you for your patience, and sorry for the inconvenience :(


Fillip

Max Taxable 03-30-2014 08:14 PM

I left "stopwords" on and didn't mess with its definitions, instead chose to just get rid of the word "and" in the three forum titles it existed in.

I'll wait for the update here.

DragonByte Tech 04-01-2014 05:57 PM

DragonByte SEO v1.0.9

Changes to Existing Features:
  • Album pages should now correctly contain canonical URLs
  • Forum URLs will now retain the "and" stopword if no forum_id is present in the URL format
  • Announcement URLs will now retain the "and" stopword if no announcement_id is present in the URL format
  • Blog Entry URLs will now only retain the "and" stopword if no blog_id is present in the URL format
  • Blog Category URLs will now retain the "and" stopword if no category_id is present in the URL format
  • Social Group URLs will now retain the "and" stopword if no group_id is present in the URL format
  • Social Group Discussion URLs will now only retain the "and" stopword if no discussion_id is present in the URL format
  • Album URLs will now only retain the "and" stopword if no discussion_id is present in the URL format
  • (vB4) CMS Section URLs will now retain the "and" stopword if no section_id is present in the URL format
  • (vB4) CMS Category URLs will now retain the "and" stopword if no category_id is present in the URL format
  • (vB4) CMS Entry URLs will now retain the "and" stopword if no entry_id is present in the URL format

Bug Fixes And Issue Fixes:
  • The "nofollow" whitelist should now apply correctly
  • The "nofollow" blacklist should now apply correctly
  • Thread Titles should now once again link correctly when browsing a post
  • The "Show Thread: After First Post" social sharing option should now work as intended
  • (vB4) Including CMS Sections in the Sitemap if none of them are publicly available will no longer generate a database error


DragonByte SEO v1.0.10

Changes to Existing Features:
  • "No Permission" error screens now send a 403 Access Restricted header
  • "Go To Post" URLs now redirect to the normal thread URL, improving the canonical URL functionality

Bug Fixes And Issue Fixes:
  • "Go To Post" URLs now redirect to the normal thread URL
  • Custom Rewrite Rules would in some circumstances not work as intended
  • Using the Forum Path system without a forum ID in the path format would create invalid rewritten URLs


Fillip

EnemyNSA 04-10-2014 06:13 PM

BUG... FYI I posted this on your support forums, not thinking, and now I can't access your website (http://www.dragonbyte-tech.com/f239/...rrectly-15041/) and I think it may have caused some issues since your website stopped loading! If my fault I apologize!

Something that has come up recently, is that when someone posts a URL link that ends with .aspx it causes the server to timeout and never post the post.

I fixed this by going into the DB CP and adding the site in question to "Link Titles: External URLs - Blacklist"

Not a huge deal, as I can't think of another site that uses aspx pages, but maybe something to look into? I don't know if its on your end, or maybe aspx pages don't support retrieving titles?

Link for example: http://www.gameinformer.com/b/news/a...d-of-xbox.aspx

FYI this is on 1.0.9 need to upgrade to 1.0.11.

Thanks!

Max Taxable 04-11-2014 01:19 AM

For some odd reason i am unable to make the edits you require to the .htaccess file without it making the site kick the "Internal Server Error" page. Even if the rewrite rules you require are the only thing in the file.

HTML Code:

RewriteEngine On

# If you are having problem with "None Could Be Negotiated" errors in Apache, uncomment this to turn off MultiViews
# Options -MultiViews

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

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


What am I doing wrong?

Max Taxable 04-13-2014 05:07 PM

Quote:

Originally Posted by Max Taxable (Post 2492551)
For some odd reason i am unable to make the edits you require to the .htaccess file without it making the site kick the "Internal Server Error" page. Even if the rewrite rules you require are the only thing in the file.

HTML Code:

RewriteEngine On

# If you are having problem with "None Could Be Negotiated" errors in Apache, uncomment this to turn off MultiViews
# Options -MultiViews

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

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


What am I doing wrong?

No answers here?

DragonByte Tech 04-13-2014 05:11 PM

You'll need to examine Apache's error_log file which is usually in /usr/local/apache/logs/error_log (but varies with each server).

The last person to have that problem found it to be a CLRF character at the start of the file that can be removed via the dos2unix command.

Fillip

Max Taxable 04-13-2014 05:21 PM

Quote:

Originally Posted by DragonByte Tech (Post 2493012)
You'll need to examine Apache's error_log file which is usually in /usr/local/apache/logs/error_log (but varies with each server).

The last person to have that problem found it to be a CLRF character at the start of the file that can be removed via the dos2unix command.


Fillip

Not sure it is the exact problem, since most every other set of rewrite rules I try, work just fine and my existing .htaccess file never gave me any trouble. If there were a CLRF character involved, it wouldn't matter what is in the .htaccess file.

It is only when I add this set of rules either to the existing file, or stand alone, where the trouble happens.

DragonByte Tech 04-13-2014 05:31 PM

Certain server configurations have also been configured to return PHP errors as Internal Server Error pages.

Other than that, what version of Apache are you running?

Fillip


All times are GMT. The time now is 11:08 PM.

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.01161 seconds
  • Memory Usage 1,752KB
  • 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_html_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)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