View Full Version : URL's for Members names (see inside)
T3MEDIA
04-17-2005, 11:18 PM
Can some one make a simple php file that can turn long urls into simple ones for members?
for example
https://vborg.vbsupport.rus/member.php?action=getinfo&username=t3media will get you to my profile page.
Could some one make a php so it will look like http://www.vbulletin.org/page.php?=t3media
I think this would be an awsome addition (not really a hack) for members who have community sites based around thier profiles.
I think it could simply just pass info to the long string since its already there.
Fingers crossed on hoping someone can pull this off.
tnguy3n
04-18-2005, 03:08 AM
it's very possible, but then it may be a little problem with users who user special characters or space or quotation marks etc in their username.
T3MEDIA
04-18-2005, 11:16 AM
it's very possible, but then it may be a little problem with users who user special characters or space or quotation marks etc in their username.Yes indeed. I have a hack installed that only allows standard characters. No spaces etc. I get your point though. (BTW that hack is awsome)
How would you go about doing such a feat?
Vaelen
04-18-2005, 11:28 AM
Don't those characters come back through URLs like spaces as %F20 or something like that... maybe you could use those somehow.
sabret00the
04-18-2005, 12:24 PM
simple page using a
$username = addslashes($_REQUEST['u']);
// might wanna add a line in here to reconvert stuff like %20 to plain text
if (!$username)
{
print_standard_error("USER NOT FOUND");
exit();
}
$getID = $DB_site->query_first("SELECT userid, username
FROM " . TABLE_PREFIX . "user
WHERE username = $username
");
$url = $vboptions['bburl'] . "/member.php?u=" . $getID['userid'];
print_standard_redirect("Whisking you to profile");
would work if you didn't wanna use a mod-rewrite for it :)
untested, as it was just me playing with code :)
Colin F
04-18-2005, 12:45 PM
I use the code here: https://vborg.vbsupport.ru/showthread.php?t=48553&highlight=subdomain
to redirect http://username.myforum.com to their profile, that might be something you could work with...
Marco van Herwaarden
04-18-2005, 12:53 PM
WHERE username = $usernameThat will never work, unless you quote it:
WHERE username = '$username'
sabret00the
04-18-2005, 01:02 PM
WHERE username = $usernameThat will never work, unless you quote it:
WHERE username = '$username'
Oops, rookie mistake, too use to working with numbers :o
T3MEDIA
04-20-2005, 09:55 PM
I use the code here: https://vborg.vbsupport.ru/showthread.php?t=48553&highlight=subdomain
to redirect http://username.myforum.com (http://username.myforum.com/) to their profile, that might be something you could work with...Thanks for the heads up. Your vb 3.0.7 or at least 3.0.0?
The post seems outdated so I just wanted to be sure.
T3MEDIA
06-04-2005, 12:48 AM
bump
T3MEDIA
09-16-2005, 07:18 PM
bump
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.