Question Name of functions to convert URL

Status
Not open for further replies.

developr

Customer
Dear Support,

in the past I imported a forum and created a redirect.php for vbseo to redirect to the new IDs.

PHP:
$new_url = vbseo_thread_url_row($thread,$vbulletin->GPC['pageNo']);
$new_url = vbseo_thread_url_row($post,$vbulletin->GPC['pageNo']);
$new_url = vbseo_forum_url($forum['forumid'],$vbulletin->GPC['pageNo']);
$new_url = vbseo_member_url_row($user["userid"],$user["username"]);

If I would like to change to dbseo I have to change the redirect.php with the correct functions of dbseo.

Could somebody tell me which functions (and parameters) I need to generate seo friendly URLs with dbseo?

Thank you very much.
 
vbseo_thread_url_row
PHP:
DBSEO_Url_Create::create('Thread_Thread' . ($threadinfo['page'] > 1 ? '_Page' : ''), $threadinfo);

vbseo_forum_url
PHP:
DBSEO_Url_Create::create('Forum_Forum' . ($vbulletin->GPC['page'] > 1 ? '_Page' : ''), $foruminfo);

vbseo_member_url_row
PHP:
DBSEO_Url_Create::create('MemberProfile_MemberProfile', $user);
 
Hello developr,

This ticket has now been closed with the status Answered.

We hope your issue or question has been addressed to your satisfaction. If not, please feel free to re-open it by clicking this link.

If you have any further issues or questions, please feel free to start a new support ticket via the button at the top of every page.

Thank you!
 
Status
Not open for further replies.

Legacy DragonByte SEO

vBulletin 3.8.x vBulletin 4.x.x
Seller
DragonByte Technologies
Release date
Last update
Total downloads
7,172
Customer rating
5.00 star(s) 1 ratings
Back
Top