Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Zoints SEO Details »»
Zoints SEO
Version: 2.2.2, by Zoints Zoints is offline
Developer Last Online: Apr 2009 Show Printable Version Email this Page

Category: Major Additions - Version: 3.6.1 Rating:
Released: 09-22-2006 Last Update: 10-02-2006 Installs: 647
DB Changes Uses Plugins Template Edits
Code Changes Additional Files  
No support by the author.

********Please do not use this modification unless you are VERY well educated on SEO and forum modification********

Zoints is a company that believes that forums are the killer application of the internet. We want to empower forum owners to take their community to the next level. Therefore, Zoints has been developing an extremely powerful vBulletin forum SEO and revenue enhancing solution for more than two years now. However, because we are focusing on our Forum Network and Thread Tagging System, we have decided to release this SEO solution to the vBulletin community under the lgpl license. Zoints SEO is now open source and NOT supported by us. We hope that the vBulletin dev community comes together to take this already powerful solution and make it even better. Empower yourselves

Zoints SEO can be discussed here or http://network.zoints.com (again, we will not be providing official support).


Known bugs

1. If a user disables cookies, infinite redirect loop.
2. index2, index3 pagination breaks some things. Standard p2, p3 works fine.


Zoints SEO is currently incompatible with: POSSIBLE FIX. PLEASE TRY THIS AND REPORT BACK. THANK YOU!
1. Incompatibility with vBA Gallery link.
2. Incompatibility with vBA Links
3. Improper linking from vBA CMPS Recent threads
4. Google Maps
[s]5. Non english characters[/s] - Character replacement is now available.


Without further ado:

















Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #532  
Old 07-07-2007, 06:48 PM
djbaxter djbaxter is offline
 
Join Date: Aug 2006
Location: Ottawa, Canada
Posts: 2,601
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by org knopper View Post
sir i am not using mod_rewrite my server don't support it i am using only Rewrite URLs and insert keywords
Rewrite URLs is the same thing, as far as I know. Disable that.
Reply With Quote
  #533  
Old 07-07-2007, 07:02 PM
org knopper org knopper is offline
 
Join Date: Jul 2006
Posts: 133
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by djbaxter View Post
Rewrite URLs is the same thing, as far as I know. Disable that.
sir that will also not solve my problem after disabling it url of forum is http://xxxxxxxxxx.com/forumdisplay.php?f=26 << look at @ last there number i want to submit my url @ digg.com they don't accept that type of urls which have numbers @ last of url

hope you get my problem
Reply With Quote
  #534  
Old 07-12-2007, 07:10 PM
WritersBeat WritersBeat is offline
 
Join Date: Apr 2006
Posts: 177
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hey, so if you had the url_rewriting on for a while, and then turn it off. It's obviously going to do something with the search engines right?

Is there anyway to put a 301 redirect from "something-1231.htlm" back to "showthread?t=1231" ?

Otherwise I'm going to be hit pretty hard in terms of search engines right?
Reply With Quote
  #535  
Old 07-12-2007, 07:20 PM
nocte nocte is offline
 
Join Date: Jan 2006
Posts: 59
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by WritersBeat View Post
Hey, so if you had the url_rewriting on for a while, and then turn it off. It's obviously going to do something with the search engines right?

Is there anyway to put a 301 redirect from "something-1231.htlm" back to "showthread?t=1231" ?

Otherwise I'm going to be hit pretty hard in terms of search engines right?
there is

Code:
RewriteRule ^([a-z0-9-]*)-([0-9]*)\.html$ /forum/showthread?t=$2 [R=301,L]
(not tested)
Reply With Quote
  #536  
Old 07-12-2007, 07:38 PM
WritersBeat WritersBeat is offline
 
Join Date: Apr 2006
Posts: 177
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well, if I hit up :

http://www.writersbeat.com/obscene-a...ty-t10444.html

with this

Quote:
RewriteRule ^([a-z0-9_\-]*-(f|all)[0-9]+(p[0-9]+|/index[0-9]*)?\.html)$ forumdisplay.php/$1 [QSA,L]
RewriteRule ^([a-z0-9_\-]*-(t|p)[0-9]+(p[0-9]+|/index[0-9]*)?\.html)$ showthread.php/$1 [QSA,L]
RewriteCond %{REQUEST_URI} !(index\.php|\.css) [NC]
RewriteRule ^(archive|sitemap)/(.*)$ $1/index.php/$2 [QSA,L]

RewriteRule ^([a-z0-9-]*)-([0-9]*)\.html$ /showthread?t=$2 [R=301,L]
I get a no thread specified error.

If I remove the zoints rewrite rules, I get a 404...

Also, what should the zseo setting be set for 301 redirects? Should I turn that off?

thx, btw.
Reply With Quote
  #537  
Old 07-12-2007, 07:42 PM
nocte nocte is offline
 
Join Date: Jan 2006
Posts: 59
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by WritersBeat View Post
Well, if I hit up :

http://www.writersbeat.com/obscene-a...ty-t10444.html

I now get a 404, I guess that's better than a double page? :-p
sorry, try this one:
Code:
RewriteRule ^([a-z0-9-]*)-([0-9]*)\.html$ /showthread.php?t=$2 [R=301,L]
Reply With Quote
  #538  
Old 07-12-2007, 07:46 PM
WritersBeat WritersBeat is offline
 
Join Date: Apr 2006
Posts: 177
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hmm, whatever I try it still goes to a 404 or "No Thread specified. If you followed a valid link, please notify the administrator"
Reply With Quote
  #539  
Old 07-12-2007, 08:01 PM
nocte nocte is offline
 
Join Date: Jan 2006
Posts: 59
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by WritersBeat View Post
Hmm, whatever I try it still goes to a 404 or "No Thread specified. If you followed a valid link, please notify the administrator"
o.k. another try:

Code:
RewriteRule ^([a-z0-9-]*)-t([0-9]+)\.html$ /showthread.php?t=$2 [R=301,L]
Reply With Quote
  #540  
Old 07-12-2007, 08:03 PM
WritersBeat WritersBeat is offline
 
Join Date: Apr 2006
Posts: 177
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

omg, you rule

So, that will take care of both of these rules?
Quote:
RewriteRule ^([a-z0-9_\-]*-(f|all)[0-9]+(p[0-9]+|/index[0-9]*)?\.html)$ forumdisplay.php/$1 [QSA,L]
RewriteRule ^([a-z0-9_\-]*-(t|p)[0-9]+(p[0-9]+|/index[0-9]*)?\.html)$ showthread.php/$1 [QSA,L]
Like, what if there is a page extension, like 25?

ahh, yeah, like take this:
http://www.writersbeat.com/writing-markets-f59p3.html

That fails 404 error.

p.s really appreciate the help. I'll send paypal your way.

Forum url's are also 404'd
Reply With Quote
  #541  
Old 07-12-2007, 08:14 PM
nocte nocte is offline
 
Join Date: Jan 2006
Posts: 59
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

take this code:
Code:
RewriteRule ^([a-z0-9-]*)-t([0-9]+)\.html$ /showthread.php?t=$2 [R=301,L]
RewriteRule ^([a-z0-9-]*)-t([0-9]+)p([0-9]+)\.html$ /showthread.php?t=$2&page=$3 [R=301,L]
RewriteRule ^([a-z0-9-]*)-f([0-9]+)\.html$ /forumdisplay.php?f=$2 [R=301,L]
RewriteRule ^([a-z0-9-]*)-f([0-9]+)p([0-9]+)\.html$ /forumdisplay.php?f=$2&page=$3 [R=301,L]
that should work for thread and forum views (with and without pagers). If you delete the "$"s the rules will work for URLs with (eg. highlight) parameters too. I don't know if there's a downside doing this - propably not.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 04:31 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05162 seconds
  • Memory Usage 2,322KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (4)bbcode_code
  • (7)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete