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
  #82  
Old 03-30-2008, 07:37 AM
superjeff superjeff is offline
 
Join Date: Apr 2007
Location: Italy
Posts: 394
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The last post button in homepage? It will add a query.
Reply With Quote
  #83  
Old 03-30-2008, 09:26 AM
superjeff superjeff is offline
 
Join Date: Apr 2007
Location: Italy
Posts: 394
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by superjeff View Post
The last post button in homepage? It will add a query.
I will add it like option.
Reply With Quote
  #84  
Old 03-30-2008, 11:27 PM
glennybee glennybee is offline
 
Join Date: Feb 2008
Location: Scotland
Posts: 329
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am following this thread intently.

Seems to be too many bugs at the moment to install on main forum but will install on test forum to see how it performs.

Thanks.
Reply With Quote
  #85  
Old 03-31-2008, 03:42 AM
superjeff superjeff is offline
 
Join Date: Apr 2007
Location: Italy
Posts: 394
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by glennybee View Post
Seems to be too many bugs
I'm fixing with love
Thank you.
Reply With Quote
  #86  
Old 04-01-2008, 03:03 PM
superjeff superjeff is offline
 
Join Date: Apr 2007
Location: Italy
Posts: 394
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

UPDATED: Fixed a lot of bugs, add the option for last post (with thread with multiple page) in homepage
Reply With Quote
  #87  
Old 04-02-2008, 07:00 AM
Chachacha's Avatar
Chachacha Chachacha is offline
 
Join Date: Jul 2006
Posts: 173
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by superjeff View Post
UPDATED: Fixed a lot of bugs, add the option for last post (with thread with multiple page) in homepage
Unfortunately the "last post" issue isn't resolved.
Reply With Quote
  #88  
Old 04-02-2008, 10:01 AM
superjeff superjeff is offline
 
Join Date: Apr 2007
Location: Italy
Posts: 394
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You should set to "yes" the relative setting in the configuration......
Reply With Quote
  #89  
Old 04-02-2008, 10:25 AM
superjeff superjeff is offline
 
Join Date: Apr 2007
Location: Italy
Posts: 394
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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";
}
}
Reply With Quote
  #90  
Old 04-02-2008, 06:43 PM
Chachacha's Avatar
Chachacha Chachacha is offline
 
Join Date: Jul 2006
Posts: 173
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That seems to have fixed the problem!^^

Thank you.
Reply With Quote
  #91  
Old 04-02-2008, 07:03 PM
superjeff superjeff is offline
 
Join Date: Apr 2007
Location: Italy
Posts: 394
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Good. I'm sorry for this, but i had not understood the problem fast and in my forum there was the same problem too!
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 02:44 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.05957 seconds
  • Memory Usage 2,306KB
  • 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
  • (3)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