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

ambistia 02-04-2009 11:27 PM

Jeff, hope all is well. When you have a moment free please let me know about the issue above.

Thanks!

wmcoachef 02-06-2009 09:54 AM

where to download tfseo vs 2.1? just can download TfSEO 1.1.4 and there's no heavy-mode!

giyotin92 02-06-2009 02:46 PM

Join Date: Dec 2008
Posts: 1
Design: Blue Lagoon,Fixed
where to download tfseo vs 2.1? just can download TfSEO 1.1.4 and there's no heavy-mode!

Cloud2 02-07-2009 11:36 AM

Where we are download tfseo 2.1? Now in this thread is only 1.14 version!!! Pleas help!

wottech 02-07-2009 12:07 PM

<a href="https://vborg.vbsupport.ru/showpost.php?p=1708307&postcount=895" target="_blank">https://vborg.vbsupport.ru/showp...&postcount=895</a>

Sadikb 02-08-2009 06:49 AM

hi Jeff, do you have any plans of updating this, fixing the BUGS or not. If you don't intent to update, please say so. It's very unfair making people wait.

paketeto 02-13-2009 04:28 PM

Quote:

Originally Posted by Sadikb (Post 1737585)
hi Jeff, do you have any plans of updating this, fixing the BUGS or not. If you don't intent to update, please say so. It's very unfair making people wait.

This is a free plugin, and Jeff is doing very well and far beyond the expectations. We must let him work, encourage him, and help him with good comments and observations, but that kind of pressure is unfair. He is doing this in his free time, with no reward.

Less demand, and more solidarity.

yahsuah 02-14-2009 06:33 AM

Quote:

Originally Posted by paketeto (Post 1743032)
This is a free plugin, and Jeff is doing very well and far beyond the expectations. We must let him work, encourage him, and help him with good comments and observations, but that kind of pressure is unfair. He is doing this in his free time, with no reward.

Less demand, and more solidarity.

Yeah, that's right.

Thank you superjeff...

MTGDarkness 02-15-2009 08:43 AM

I set up and installed the MOD, and fixed the forum slugs, set it to heavy, rewrite all three options... Then it kept giving me 404's. Everything is uploaded, htaccess renamed, etc. and still, whenever I click on a link, it 404s. Not a single link in the whole forum works. Not sure what to do.... I also tried changing the different options... nothing.

Sadikb 02-17-2009 03:25 PM

Quote:

Originally Posted by paketeto (Post 1743032)
This is a free plugin, and Jeff is doing very well and far beyond the expectations. We must let him work, encourage him, and help him with good comments and observations, but that kind of pressure is unfair. He is doing this in his free time, with no reward.

Less demand, and more solidarity.

I absolutely agree with u... this is a great plugin. I am sorry if i came a bit rude there, but i have been waiting to make some changes for the vbadvanced plugin since two months now, but i can't because of the vbadvanced bug with this plugin. I didn't put pressure to him to update but just to clarify if he's planning to update at all and if so in what time frame. Maybe six months maybe within a year... it's not my decision to make, just asking for some clarity that's all. Regards

Phaedrus 02-18-2009 01:27 AM

Quote:

Originally Posted by MTGDarkness (Post 1744651)
I set up and installed the MOD, and fixed the forum slugs, set it to heavy, rewrite all three options... Then it kept giving me 404's. Everything is uploaded, htaccess renamed, etc. and still, whenever I click on a link, it 404s. Not a single link in the whole forum works. Not sure what to do.... I also tried changing the different options... nothing.

Does it work when you disable it?

SoftDux 02-22-2009 10:14 AM

Does anyone know if this mod will work with VB 3.6.8?

MTGDarkness 02-23-2009 11:26 PM

Quote:

Originally Posted by Phaedrus (Post 1747461)
Does it work when you disable it?

I contacted SJ via email and he fixed it for me. I had the domain wrong (stupid subdomains... always confuse me).

NeDra 02-24-2009 01:06 AM

SoftDux, it work with vBulletin Version 3.8.1
If you download the version 2.1 and not 1.4

Also the version 2.1 has an issue while using the Heavy Method
'edit-this-from-admincp-than-forum' appear in some section of the forum
Even though the variable in the admincp has been setup.

Somewhat the version 2.1 isn't approved yet, so it still show the version 1.4
The link to version 2.1 is here
https://vborg.vbsupport.ru/showpost....&postcount=895

Here is a fix for the TfSEO 2.1 Error where
'edit-this-from-admincp-than-forum'
Appear even though you have configured the admincp variable on that forum

While using the Heavy Method
Open 'product-tfseo_2_37.xml' with notepad

Search for the 2nd occurrence of the following line of code

PHP Code:

$tfseo['e'] = tfseo_url_thread($forum[tfseo_key], $thread['forumid'], $thread['threadtitle'], 

There should be only 2 occurrence, so the 2nd one is the last one.

Replace the text by:

PHP Code:

//Get forum key 
$tfseo_key_query $vbulletin->db->query_read_slave(
SELECT forum.tfseo_key 
FROM " 
TABLE_PREFIX "forum AS forum 
WHERE forumid = 
$thread[forumid] 
"
); 
$forum[tfseo_key] = mysql_fetch_assoc($tfseo_key_query); 
$forum[tfseo_key] = implode($forum[tfseo_key]); 
$tfseo['e'] = tfseo_url_thread($forum[tfseo_key], $thread['forumid'], $thread['threadtitle'], 

Now update your product and allow overwrite.
I might do a compilation of all the small bug I have fixed, but this was the main issue to have the version 2.1 working while getting the url renamed entirely on the website.

Thank a lot, this product is really nice, it just need a bit more knowledgeable user to fix issues and not rely on only 1 user since time is something that we never have enough of.
Good job up to now, I really wouldn't of been able to write all that code.

cuatromedios 03-03-2009 12:23 AM

Has anyone fixed the error that appears when a moderator tries to move a thread?

Sadikb 03-03-2009 02:14 AM

a thread moves just fine, what version are you using? if it's not 2.1, it can be found here

https://vborg.vbsupport.ru/showp...&postcount=895

lucky51 03-04-2009 12:27 PM

Quote:

Originally Posted by cuatromedios (Post 1758930)
Has anyone fixed the error that appears when a moderator tries to move a thread?

same problem
i have using ur 2.1 vrsion on 3.7.2

Samsine 03-06-2009 03:01 PM

Hi, is this mod compatible with vBSEO Google/Yahoo Sitemap Generator 2.2 ?

Regards

Sadikb 03-10-2009 01:25 AM

Hi, It's a shame because this is a great MOD. But since there are a couple of bugs and no further bug fixes/updates in sight, I uninstalled this. Just goes on to show that unless you are yourself a coder/developer using Mods/hacks by single developers doesn't work.

*clicks uninstall*

mitia22 03-11-2009 08:44 AM

Hello all!
I have a problem with tfSEO and Google Tools.
I have some URL with redirect problem.
Ex : http://www.casanaute.com/forum/showp...&postcount=129
I don't understand because this URL is valid but Google display this URL like a redirect problem.
Anyone has idea ? Thanks !

SHANE-D-PAIN 03-13-2009 11:18 AM

Why can I only see the old Version in the OP?

Quote:

TfSEO 1.1.4.zip (12.8 KB, 561 downloads)

zippys 03-13-2009 06:35 PM

Same here, and i downloaded/installed it :( anyone have TfSEO 2 download?

Medtech 03-16-2009 12:37 AM

TFSEO_2_37 is not compatable with my last vbulletin update vb3.8.1 patch level1. i upgraded my forum and got the white background on all styles in the showthreads.php.

Clicked "uninstalled"

maidos 03-24-2009 01:39 PM

this mod is great but it use 44 queries so is it really necessary to use that many for this mod alone?

have debug mode on and when i disabled i notice 44 queries lesser and when i renabled i get a total of 59 queries again

cedivad 03-24-2009 05:01 PM

Put a look at the code of the plugin. There is an hook, in forumhome, that call a query for every category that you have. Delete it; it only needs to build the lastpost ulr (the icon one) for multipages thread.

nfy_markus 04-03-2009 01:48 PM

I have installed tfseo 2.1 with VBulletin 3.8.2.

I already added this patch: https://vborg.vbsupport.ru/showpost.php?p=1752841

There is a "bug" on the search result page:
Links for (1, 2, 3,... look like this: /edit-this-from-admincp-than-forum-f61/...
but the link for the last page and every other link on the search-result page seems correct...

Perhaps someone has an idee what or where's the problem...

MTGDarkness 04-07-2009 06:05 PM

Whenever I click on a forum (directory structure, heavy, v2.1) it sends me to the forum index with that directory name taped on.

flashwave 04-09-2009 08:06 AM

Problems with vBulletin 3.8.2 - > uninstalled

imported_silkroad 04-10-2009 09:57 AM

We installed this with vB 3.4.1 running vBSEO sitemap generator, and it does not work properly.

The site seems to work ok with this SEO product, but the URLs generated for the sitemap are not rewritten to the new TFSEO style.

imported_silkroad 04-10-2009 10:00 AM

Quote:

Originally Posted by MARKETPROFITS (Post 1764088)
It appears to work with vbseo sitemap generator.

The URLS generated by vbseo sitemap generator are not optimized. The sitemap is generated, but the links are the same as without TfSEO.


All times are GMT. The time now is 10:56 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.02562 seconds
  • Memory Usage 1,850KB
  • 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
  • (3)bbcode_php_printable
  • (14)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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