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

Reply
 
Thread Tools
Zoints SEO 2.3.2 Details »»
Zoints SEO 2.3.2
Version: 2.3.2, by dxlwebs dxlwebs is offline
Developer Last Online: Dec 2012 Show Printable Version Email this Page

Category: Board Optimization - Version: 3.8.x Rating:
Released: 01-21-2009 Last Update: 04-04-2009 Installs: 209
Uses Plugins Auto-Templates
Code Changes Additional Files  
No support by the author.

Zoints SEO 2.3.2!

First i would like to say sorry that its taken so long to get a new version out work has been hectick

now to the update!
mainly this update is only a faster version i have cleaned the coding a bit and made a few changes here and there for better performance.

i know there is still a few bugs in the system and i will now start on a complete rewrite of a seo system as zoints is reaching its limits with the fixes you can add in so this will be my last zoints update, the next release will be a new and more complete system!

it is recommended to update just for easier life and i would recomend using mod-rewrite as its the most stable area of the zoints SEO

I hope you look forward to my next Full Release and not just an update!

this version contains Most of the updates and bug fixes from this thread also others from the zoints forum as well! it contains 1 core file from the tags file please note you MUST read the read me file before you upload anything!

this is a pretty straight forward install it will edit all the templates automatically even on a custom template (tested my self) and even if not you have the files needed to make the changes!

"THIS IS ONLY TO BE USED WITH VBULLETIN 3.8.x"

********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. (should be fixed now)

Zoints Explained = Click Here

if you like it click install
and if you really love it click nominate lol

Download Now

File Type: zip zoints seo 2.3.2.zip (51.6 KB, 2198 views)

Show Your Support

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

Comments
  #202  
Old 06-12-2009, 05:39 AM
pjardinage pjardinage is offline
 
Join Date: May 2009
Posts: 3
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Any idea ?
Reply With Quote
  #203  
Old 06-13-2009, 05:39 AM
mikey1991's Avatar
mikey1991 mikey1991 is offline
 
Join Date: Oct 2008
Location: United Kingdom
Posts: 654
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Installing this on a clients board, the IM Icons work in firefox, but in IE 8 they lead to a 404, we have tried this with the mod_rewrite on and off, neither works. I need a fix please.
Reply With Quote
  #204  
Old 06-14-2009, 09:14 AM
pjardinage pjardinage is offline
 
Join Date: May 2009
Posts: 3
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Should i write this for french letters ?

PHP Code:
function zseo_cleaned_string($string)
{
    global 
$vbulletin;
    
    
$bit iif($vbulletin->options['zointsseo_url_separator'], '_''-');
    
    
/*
    french - fix start ----------------------------------------------------
    */
    
$string=iconv('UTF-8','ISO-8859-9',$string);
    
$string=iconv("ISO-8859-9""UTF-8",$string);
    
/*
    french - fix end ------------------------------------------------------
    */
    
    
$string strtolower($string);
    
$string unhtmlspecialchars($string);
    
    
$string str_replace("'"''$string);
    
$words preg_split("#[^a-z0-9]#"$string, -1PREG_SPLIT_NO_EMPTY);
    
    
$words zseo_strip_stopwords($words$bit);
    
$words zseo_limit_keywords($words$bit);
    return 
implode($bit$words);

Reply With Quote
  #205  
Old 07-08-2009, 04:11 PM
mike2902's Avatar
mike2902 mike2902 is offline
 
Join Date: Apr 2009
Posts: 186
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Question about the MOD rewrite instructions.....Here are the instructions as given

3. .htaccess edit (required for the mod_rewrite option)
========================================
This step is only necessary if you are planning on using the mod_rewrite option to
rewrite the URLs. Please note that you will have to have mod_rewrite support enabled
on your server.

File: /.htaccess (If it does not exist, create it)

If the following two lines already exist, then skip ahead to the next edit, otherwise
add them at the end of the file

----------------------------------------
Options +FollowSymlinks
RewriteEngine on
----------------------------------------

Add the following lines at the end of the file
----------------------------------------
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]
----------------------------------------

So if I understand this, I create a file in my forum root called .htaccess

Then open that file and add the following into it.

Options +FollowSymlinks
RewriteEngine on
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]
Reply With Quote
  #206  
Old 08-02-2009, 09:58 PM
j1mmy j1mmy is offline
 
Join Date: Feb 2006
Location: UK, England
Posts: 252
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Has it been reported yet that there are logging in problems with IE? I've got this problem, but not sure if this mod was the reason?
Reply With Quote
  #207  
Old 09-21-2009, 07:10 PM
Ava-Kyrillos Ava-Kyrillos is offline
 
Join Date: Apr 2007
Posts: 29
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hi
when I tring to edit "showthread_similarthreadbit"
with new value as the attached text file

I get this erro
Parse error: syntax error, unexpected '"', expecting ']' in /home/*********/includes/adminfunctions_template.php(3939) : eval()'d code on line 2

how i solve this
thanks
Reply With Quote
  #208  
Old 09-22-2009, 12:25 PM
kootta kootta is offline
 
Join Date: May 2009
Posts: 19
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thank you for this great mod i,ve been searching for a way to make the dynamic URL to static n i now did it by using ur mod
thanks and i marked as installed
Reply With Quote
  #209  
Old 12-22-2009, 05:16 PM
MikesSite MikesSite is offline
 
Join Date: Jan 2009
Posts: 165
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have been using this for a long time with mod_rewrite. I'm nervous when I upgrade to vB 4 I will lose all of my links which will hurt SEO.

Is there any way to carry over the links or to prevent this from happening?

Any plans for a vB4 version of this?

Thanks.
Reply With Quote
  #210  
Old 12-22-2009, 08:23 PM
dxlwebs dxlwebs is offline
 
Join Date: Jun 2008
Posts: 237
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by MikesSite View Post
I have been using this for a long time with mod_rewrite. I'm nervous when I upgrade to vB 4 I will lose all of my links which will hurt SEO.

Is there any way to carry over the links or to prevent this from happening?

Any plans for a vB4 version of this?

Thanks.
like stated in the pm i have moved zoints to a new name C-logic SEO which is basically zoints but far more advanced we both use the same URL rewrite system (manythanks to zoints) but with a lot less bugs and much more stabillity if you wish for me to creat a version for VB4 i would be more than happy to start coding for your all but my time and money is limited!

note to all that VB4 does have its own URL rewriting system so unless you have zoints or c-logic and wish to keep the urls the same i do recommend you stick with the systems base url system if anyone has zoints or c-logic seo i recomend you stick with it i will test C-Logic SEO and see if VB4 works with it if not i will start working on a new version as soon as possible!
Reply With Quote
  #211  
Old 01-13-2010, 08:28 PM
solokron solokron is offline
 
Join Date: Mar 2003
Posts: 31
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I would love to see a VB4 version of this! We would like to keep our thread URLs the same with .html at the end.
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 01:28 AM.


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.04533 seconds
  • Memory Usage 2,348KB
  • Queries Executed 26 (?)
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
  • (1)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)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
  • (1)postbit_attachment
  • (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_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete