vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   Major Additions - TfSEO 2: the free vBulletin url rewrite (https://vborg.vbsupport.ru/showthread.php?t=173738)

ambistia 01-24-2009 07:38 PM

Quote:

Originally Posted by paketeto (Post 1723073)
You must edit that strings in the forum manager of your admincp.

Where in the admincp? Inside Forums > Forum Manager this screenshot is ALL that shows up:

https://vborg.vbsupport.ru/external/2009/01/6.jpg

There is something which I can't seem to understand though, perhaps a setting hidden somewhere?

When I enable heavy, and choose to re-write the +forum, +thread, and +url from the admincp:
1) main forum looks like: mysite.com/forums/
2) each forum category looks like: mysite.com/forums/category-here/
3) however, each post looks (exactly) like: mysite.com/forums/edit-this-from-admincp-than-forum-f2/welcome-t1/

Where do you edit this 3rd URL? Why is it coming out like this? The pages load fine, but the URL on the threads themselves (3rd above) are very weird.

Ideally the thread URL would look just like "/forums/category/thread/" however I cannot find out how to do this. The category is perfect, it's just when you try to go to the actual thread inside the category that it goes berserk.


Jeff, could you please chime in with words of wisdom here?

Sadikb 01-25-2009 07:06 AM

Quote:

Originally Posted by superjeff (Post 1723465)
Try edit plugin cutting the query in forumhome, that could be the problem.

Sorry bro, but didn't quite understand. I btw have TFSEO set to meduim and not heavy. So where do i edit the plugin for cutting the query in forumhome?

Thanks.

superjeff 01-25-2009 02:10 PM

Quote:

Originally Posted by ambistia (Post 1723621)
Where in the admincp? Inside Forums > Forum Manager this screenshot is ALL that shows up:

The last one.
Quote:

Originally Posted by Sadikb (Post 1724013)
Sorry bro, but didn't quite understand. I btw have TFSEO set to meduim and not heavy. So where do i edit the plugin for cutting the query in forumhome?

Thanks.

plugin and product => edit plugin => Generate thread url => cut
PHP Code:

//If lastpost isn't in the first page of the thread
$tfseo_tot_post $vbulletin->db->query_read_slave(
SELECT thread.replycount 
FROM " 
TABLE_PREFIX "thread AS thread 
WHERE threadid = '
$lastpostinfo[lastthreadid]
"
); 
$a mysql_fetch_assoc($tfseo_tot_post); 
$a implode($a); 
$a $a $vbulletin->options['maxposts']; 
$a floor($a); 
$tfseo_total_page $a 1


WEBDosser 01-25-2009 02:26 PM

downloaded.. but not installed as it requires file edits and that is not supported by vb.com i will wait because i believe vb4 has some built in.

samuelss 01-26-2009 12:14 PM

I have downloaded and installed the 2.01 version and enabled "Medium" and am getting page cannot be displayed error. My .htaccess is as below

RewriteEngine on

#Add the following lines at the end of the file
RewriteRule paultest.gif images/smilies/cool.gif
RewriteRule ^(.*)t([0-9]+)(.*)newpost(.*)$ showthread.php?t=$2&goto=newpost [QSA,L]
RewriteRule ^(.*)f(.*)/(.*)t([0-9]+)(.*)/post([0-9]+)(.*)$ showpost.php?p=$6 [QSA,L]
RewriteRule ^(.*)f(.*)/(.*)t([0-9]+)(.*)/([a-z]+)([0-9]+)(.*)$ showthread.php?t=$4&page=$7 [QSA,L]
RewriteRule ^(.*)f(.*)/(.*)t([0-9]+)(.*)$ showthread.php?t=$4 [QSA,L]
RewriteRule ^(.*)f([0-9]+)/([a-z]+)([0-9]+)(.*)$ forumdisplay.php?f=$2&page=$4 [QSA,L]
RewriteRule ^f([0-9]+)(.*)$ forumdisplay.php?f=$1 [QSA,L]
RewriteRule ^(.*)-f([0-9]+)(.*)$ forumdisplay.php?f=$2 [QSA,L]

Any idea?

Thanks.

superjeff 01-26-2009 04:05 PM

Quote:

Originally Posted by WEBDosser (Post 1724275)
downloaded.. but not installed as it requires file edits and that is not supported by vb.com i will wait because i believe vb4 has some built in.

You right. I hope that the vb4 rewrite function will be good..
Quote:

Originally Posted by samuelss (Post 1725134)
I have downloaded and installed the 2.01 version and enabled "Medium" and am getting page cannot be displayed error. My .htaccess is as below

RewriteEngine on

#Add the following lines at the end of the file
RewriteRule paultest.gif images/smilies/cool.gif
RewriteRule ^(.*)t([0-9]+)(.*)newpost(.*)$ showthread.php?t=$2&goto=newpost [QSA,L]
RewriteRule ^(.*)f(.*)/(.*)t([0-9]+)(.*)/post([0-9]+)(.*)$ showpost.php?p=$6 [QSA,L]
RewriteRule ^(.*)f(.*)/(.*)t([0-9]+)(.*)/([a-z]+)([0-9]+)(.*)$ showthread.php?t=$4&page=$7 [QSA,L]
RewriteRule ^(.*)f(.*)/(.*)t([0-9]+)(.*)$ showthread.php?t=$4 [QSA,L]
RewriteRule ^(.*)f([0-9]+)/([a-z]+)([0-9]+)(.*)$ forumdisplay.php?f=$2&page=$4 [QSA,L]
RewriteRule ^f([0-9]+)(.*)$ forumdisplay.php?f=$1 [QSA,L]
RewriteRule ^(.*)-f([0-9]+)(.*)$ forumdisplay.php?f=$2 [QSA,L]


Any idea?

Thanks.

http://www.completefootballforum.com/f10
You use IIS, Internet Information Services (from microsoft) can this be the problem of the uncompatible htaccess?

ambistia 01-30-2009 01:30 AM

Hey Jeff, can you please read over my post (#961) again. It seems you may have missed what I was getting to.

The screenshot is all that shows up to me on the "admincp > forums > forum manager". I can edit that 1 single line and that does work for the forum catagory URLS (they work great). However the actual thread URLs are very long (ie: /forums/edit-this-from-admincp-than-forum-f2/welcome-t1/) so how can I edit this thread URL?

The first one (catagory URLs) is easy, it's right at the bottom of the admincp. Works perfect for catagory links and URLs by injecting the keywords. Ok. It's the thread URLs that seem to be impossible to edit. Can you help me understand what's going on here?

https://vborg.vbsupport.ru/attachmen...1&d=1232833074

danielebean 01-30-2009 12:37 PM

Hi superjeff,
when do you think you can release the new version with the bug 'edit-this....' fixed?

P.S.: good plugin!

ambistia 01-31-2009 03:59 PM

I'm willing to pay/donate for proper support on this issue. Let me know, thanks! :)

seefresh 02-03-2009 01:40 PM

So I have this installed on 3.7.x and it works great except the htaccess file is causing some of my thumbnails not to show up in people's galleries. Any ideas on this?

Chris


All times are GMT. The time now is 08:32 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.02112 seconds
  • Memory Usage 1,756KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php_printable
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete