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
TfSEO: a Light Url-Rewrite (thread and forum only) Details »»
TfSEO: a Light Url-Rewrite (thread and forum only)
Version: 1.1.3, by superjeff superjeff is offline
Developer Last Online: May 2010 Show Printable Version Email this Page

Category: Major Additions - Version: 3.6.x Rating:
Released: 03-17-2008 Last Update: 04-28-2008 Installs: 56
Uses Plugins Auto-Templates
Re-useable Code Code Changes Additional Files Translations  
No support by the author.

TfSEO 1.1.3 for vBulletin 3.6.x (3.7 here)

What does it do?
TfSEO in a light and basic Url-Rewrite plugin for vBulletin. It rewite only forum and thread urls.
TfSEO is think for not weigh on the server. It don't add queries!

Live Demo: 1 (vB 3.7)

Installation:
  1. Upload functions_tfseo.php into your ./includes/ directory
  2. Import the product
  3. Set-up you .htaccess file (view readme)
  4. If do you want to rewite archive or RSS view the FILE MODIFICATION section of the readme
  5. Set-up the TfSEO options and enable it
This product will be update and supported for long time.

Plugin now work with PHP4 too!

For Support and question you can contact me at davide {at} techforum .it

I welcome (and really do ask for) any feedback, suggestions, issues, etc...

Show Your Support

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

Comments
  #92  
Old 04-03-2008, 06:27 PM
zeus_r6 zeus_r6 is offline
 
Join Date: Jun 2007
Posts: 184
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by superjeff View Post
Little bug fixed: In the plugin "Add in showthread" do the edit marked in red:



Original: (don't work)
if ($vbulletin->options['tfseo_attivo'] AND $vbulletin->options['tfseo_riscrivi'])
{
$tfseourl['thread'] = tfseo_url($thread[threadtitle]);
$tfseo_pagina = $vbulletin->options['tfseo_pagina'];
if ($thread[totalpages] != 1)
{
$lastpage = $tfseo_pagina . $thread[totalpages] . ".html";
}
}
New: (Work!)
if ($vbulletin->options['tfseo_attivo'] AND $vbulletin->options['tfseo_riscrivi'])
{
$tfseourl['thread'] = tfseo_url($thread[threadtitle]);
$tfseo_pagina = $vbulletin->options['tfseo_pagina'];
if ($thread[totalpages] > 1)
{
$lastpage = $tfseo_pagina . $thread[totalpages] . ".html";
}
}
Two questions:
Does this solve the last post problem?
Where is this code modification done?
Reply With Quote
  #93  
Old 04-03-2008, 06:49 PM
superjeff superjeff is offline
 
Join Date: Apr 2007
Location: Italy
Posts: 394
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yes, it solve it.
You have only to edit the thinks marked in red (was this the question?)
Reply With Quote
  #94  
Old 04-03-2008, 06:55 PM
zeus_r6 zeus_r6 is offline
 
Join Date: Jun 2007
Posts: 184
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

In the SHOWTHREAD template?
Reply With Quote
  #95  
Old 04-03-2008, 06:59 PM
superjeff superjeff is offline
 
Join Date: Apr 2007
Location: Italy
Posts: 394
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

No:
Quote:
Little bug fixed: In the plugin "Add in showthread" do the edit marked in red:
Go in "plugin manager" or something like it in the admin cp.
Reply With Quote
  #96  
Old 04-03-2008, 07:07 PM
zeus_r6 zeus_r6 is offline
 
Join Date: Jun 2007
Posts: 184
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Didn't work
Reply With Quote
  #97  
Old 04-03-2008, 07:13 PM
zeus_r6 zeus_r6 is offline
 
Join Date: Jun 2007
Posts: 184
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Just double checked it and also my setting in vb options and everything is as said....still not redirecting to the last post
Reply With Quote
  #98  
Old 04-04-2008, 03:25 AM
zeus_r6 zeus_r6 is offline
 
Join Date: Jun 2007
Posts: 184
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Any insight on why this won't work for me?
Reply With Quote
  #99  
Old 04-04-2008, 03:50 AM
edge23 edge23 is offline
 
Join Date: Sep 2006
Posts: 9
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you!!!!!

This is amazing m8. It works great Thanks a lot

Installed and nominated
Reply With Quote
  #100  
Old 04-04-2008, 10:11 AM
superjeff superjeff is offline
 
Join Date: Apr 2007
Location: Italy
Posts: 394
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by zeus_r6 View Post
Didn't work
Go in your admincp, Plugins & Products > Plugin Manager > select the plugin called "Add in showthread" and replace "!=" with ">"
Quote:
Originally Posted by edge23 View Post
Thank you!!!!!

This is amazing m8. It works great Thanks a lot

Installed and nominated
Thank you very much
Reply With Quote
  #101  
Old 04-04-2008, 11:49 AM
superjeff superjeff is offline
 
Join Date: Apr 2007
Location: Italy
Posts: 394
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

UPDATED: Add a fist, basic support to vbAdvanced. I have tested it only with vb 3.7 and vBA 3.0.0. It don't rewrite, for now, the news's urls.
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 07:12 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.04376 seconds
  • Memory Usage 2,300KB
  • 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_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
  • (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