Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons

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
  #172  
Old 10-06-2006, 06:41 AM
Hoffi's Avatar
Hoffi Hoffi is offline
 
Join Date: Nov 2001
Location: Germany
Posts: 342
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Search for
Code:
<a href="showthread.php?$session[sessionurl]p=$lastpostinfo[lastpostid]#post$lastpostinfo[lastpostid]"><img class="inlineimg" src="$stylevar[imgdir_button]/lastpost.gif" alt="$vbphrase[go_to_last_post]" border="0" /></a>
And replace by
Code:
		<a href="<if condition="$show['zointsurl']">$forum[zointsurl_goto]<if condition="$show['member']">?$session[sessionurl]p=$lastpostinfo[lastpostid]#post$lastpostinfo[lastpostid]</if><else />showthread.php?$session[sessionurl]p=$lastpostinfo[lastpostid]#post$lastpostinfo[lastpostid]</if>"><img class="inlineimg" src="$stylevar[imgdir_button]/lastpost.gif" alt="$vbphrase[go_to_last_post]" border="0" /></a>
I have an automated created File with all my Changes, but it's in German.

Did anyone has a working solution for GARS?
Reply With Quote
  #173  
Old 10-06-2006, 01:12 PM
newmomsforum newmomsforum is offline
 
Join Date: Mar 2006
Posts: 41
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Works great - Thanks
Reply With Quote
  #174  
Old 10-07-2006, 11:47 AM
DJ PİSAGOR DJ PİSAGOR is offline
 
Join Date: Feb 2006
Location: Turkey - Izmir
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

does it work 3.6.2 ?
Reply With Quote
  #175  
Old 10-07-2006, 11:54 AM
HaYLaZ's Avatar
HaYLaZ HaYLaZ is offline
 
Join Date: Apr 2005
Posts: 349
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

yes it works with 3.6.2
Reply With Quote
  #176  
Old 10-07-2006, 03:40 PM
DJ PİSAGOR DJ PİSAGOR is offline
 
Join Date: Feb 2006
Location: Turkey - Izmir
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I install in 3.6.2 but there a problem.
Instead of "www.forumena.com" it came out "www.forumena.com/?"
can you help me with fixing this.

I waiting for your help. Thank you
Reply With Quote
  #177  
Old 10-07-2006, 05:18 PM
Orcun Orcun is offline
 
Join Date: Dec 2005
Location: Ankara
Posts: 42
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well well,

This Addon seems quite good looking. I've installed this on my site. It works fine except some cases.

1)
Code:
$string = str_replace("?", "Ue", $string);
$string = str_replace("?", "ue", $string);
This code doesnt re-write the Thread links. I Still have - for the Turkish characters.

2)

Archieve has problems I think.

Chech out HERE and click on a link. It will bring up the 404 Not found error. Couldnt figured out what had caused that.



I would be glad If I receive help
Thanks
Reply With Quote
  #178  
Old 10-07-2006, 05:32 PM
DJ PİSAGOR DJ PİSAGOR is offline
 
Join Date: Feb 2006
Location: Turkey - Izmir
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

1-) Open the file /includes/function_zseo.php and search for this
PHP Code:
$string unhtmlspecialchars($string); 
add below:

PHP Code:
   $string str_replace("ı"'i'$string);
    
$string str_replace("ğ"'g'$string);
    
$string str_replace("?"'u'$string);
    
$string str_replace("ş"'s'$string);
    
$string str_replace("?"'o'$string);
    
$string str_replace("?"'c'$string);
    
$string str_replace("Ğ"'g'$string);
    
$string str_replace("?"'u'$string);     
    
$string str_replace("Ş"'s'$string);
    
$string str_replace("İ"'i'$string);
    
$string str_replace("?"'o'$string);
    
$string str_replace("?"'c'$string); 
2-) Diğer sorunun cevabını bilmiyorum Ayarlarına bi bak istersen.
i don' t know other problem
Reply With Quote
  #179  
Old 10-07-2006, 06:02 PM
Orcun Orcun is offline
 
Join Date: Dec 2005
Location: Ankara
Posts: 42
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yep, I did it but doesn't work either. Saolasin kardes..

Still have - instead of turkish chars.

Btw, After enabling mod_rewrite, my sitemap returns to itself when I click a link..
Reply With Quote
  #180  
Old 10-07-2006, 06:10 PM
Orcun Orcun is offline
 
Join Date: Dec 2005
Location: Ankara
Posts: 42
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yep!

Chars work now. Pisagor, pay attention to use of " and ' in the code.

Correct usage is

Code:
	$string = str_replace("ı", "i", $string); 
    	$string = str_replace("ğ", "g", $string); 
    	$string = str_replace("?", "u", $string); 
    	$string = str_replace("ş", "s", $string); 
    	$string = str_replace("?", "o", $string); 
    	$string = str_replace("?", "c", $string); 
    	$string = str_replace("Ğ", "g", $string); 
    	$string = str_replace("?", "u", $string);      
    	$string = str_replace("Ş", "s", $string); 
    	$string = str_replace("İ", "i", $string); 
    	$string = str_replace("?", "o", $string); 
    	$string = str_replace("?", "c", $string);
Thank alot again.

Btw, Archieve is still not working
Reply With Quote
  #181  
Old 10-07-2006, 11:11 PM
AMG021 AMG021 is offline
 
Join Date: Sep 2006
Location: Not From This Planet
Posts: 192
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

this zoints thing is not working for me !!! i installed it and when i click on a post from the Forum Home and for some reason changes the path to my forum form community to comminity
Reply With Quote
Reply

Thread Tools

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 05:33 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.06306 seconds
  • Memory Usage 2,321KB
  • 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
  • (2)bbcode_php
  • (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