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.