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
  #92  
Old 02-05-2009, 05:50 AM
dxlwebs dxlwebs is offline
 
Join Date: Jun 2008
Posts: 237
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

arabic letters wouldbe very hard to put into the address bar just like turkish letters ill look into it but i dont think it supports arabic names right nowQ
Reply With Quote
  #93  
Old 02-05-2009, 06:19 AM
kavehch kavehch is offline
 
Join Date: Jun 2008
Posts: 59
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

IoI sorry

i want not shown keyword and showe number in address bar As vbseo thanks
Reply With Quote
  #94  
Old 02-07-2009, 12:34 PM
Skyrider Skyrider is offline
 
Join Date: Feb 2006
Location: Netherlands
Posts: 1,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Any specific reason why there is a upload.zip located under the uploads folder?
Reply With Quote
  #95  
Old 02-08-2009, 12:18 PM
Skyrider Skyrider is offline
 
Join Date: Feb 2006
Location: Netherlands
Posts: 1,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

PS, The ad function doesn't work. Enabled at the footer and within replies/threads. The code itself works fine, just not through Zoinst.
Reply With Quote
  #96  
Old 02-08-2009, 02:35 PM
rootmt rootmt is offline
 
Join Date: Sep 2007
Posts: 3
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

to show Turkish letters in URLs you should edit a funciton in
forum home -> includes -> functions_zseo.php

find: function zseo_cleaned_string($string) definition and change this function to this:
PHP Code:
function zseo_cleaned_string($string)
{
    global 
$vbulletin;
    
    
$bit iif($vbulletin->options['zointsseo_url_separator'], '_''-');
    
    
/*
    turker - fix start ----------------------------------------------------
    */
    
$string=iconv('UTF-8','ISO-8859-9',$string);
    
$find = array('?','?','Ş','İ','I','Ğ','?');
    
$replace = array('?','?','ş','i','ı','ğ','?');
    
$string str_replace($find,$replace,$string);
    
$string=iconv("ISO-8859-9""UTF-8",$string);
    
/*
    turker - 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);

NOTE:
-Take a look at iconv usage.
-If your forum and local charset(which includes local characters, here is iso-8859-9) are same, delete the iconv lines.
Reply With Quote
  #97  
Old 02-09-2009, 02:18 AM
kavehch kavehch is offline
 
Join Date: Jun 2008
Posts: 59
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hi

i want Conversion this address from zonit seo :

http://mysite.com/(keword).html

to

http://mysite.com/thread(number).html

and i want seo this hack https://vborg.vbsupport.ru/showthread.php?t=201274 ( last theard )

plz help me
Reply With Quote
  #98  
Old 02-09-2009, 05:11 PM
aKosmAn's Avatar
aKosmAn aKosmAn is offline
 
Join Date: Mar 2008
Posts: 7
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

tnx
Reply With Quote
  #99  
Old 02-11-2009, 04:54 PM
mdcdeve mdcdeve is offline
 
Join Date: Oct 2006
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Not sure if this has been mentioned before but is it possible for this to work alongside VBSEO Sitemap Generator ? As in the generator taking down the re-written URLs rather than the regular links. Thanks !
Reply With Quote
  #100  
Old 02-11-2009, 05:19 PM
dxlwebs dxlwebs is offline
 
Join Date: Jun 2008
Posts: 237
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ill look into the vbseo sitemap for the next release along with the other problems mentioned
Reply With Quote
  #101  
Old 02-13-2009, 10:13 PM
|Jordan|'s Avatar
|Jordan| |Jordan| is offline
 
Join Date: Nov 2004
Posts: 479
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Will using this break other modifications?

The huge modifications im using are IBPro arcade, Photoplog, vBAdvanced, vBAdvanced Dynamics, Geek Article and Review System, Downloads II
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:19 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.04877 seconds
  • Memory Usage 2,339KB
  • 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)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