iamjudd
Well-known member
same hereSpeaking of facebook, I like the forumname.com/username format better than username.forumname.com
same hereSpeaking of facebook, I like the forumname.com/username format better than username.forumname.com
The main reason I think forum.com/members/username is easier is due to the current problems that Better Blogs has with vanity urls. With Better Blogs, when you're at vanity.forum.com and you click on another link such as the forum list, instead of going to forum.com/board it will make you go to vanity.forum.com/board and that causes cookie issues because when you go to vanity.forum.com/board you have to login again.I'm going to try to make an addon to do this.
Most likely it'll have the following options:
http://forum.com/members/Jake-B.38615 (default profile link if you don't have a vanity url chosen)
http://vanity.forum.com
http://forum.com/members/vanity
The vanity field will allow the following characters:
A-Z, a-z, 0-9, and a maximum of one hyphen.
The main reason I think forum.com/members/username is easier is due to the current problems that Better Blogs has with vanity urls. With Better Blogs, when you're at vanity.forum.com and you click on another link such as the forum list, instead of going to forum.com/board it will make you go to vanity.forum.com/board and that causes cookie issues because when you go to vanity.forum.com/board you have to login again.
$config['cookie'] = array(
'prefix' => 'xf_',
'path' => '/',
'domain' => '.yoursite.com'
);
I turned Better Blogs Multisite back on to experiment.Those problems are fairly easy to fix. In library/config.php you can add
and your cookies will work on all subdomainsCode:$config['cookie'] = array( 'prefix' => 'xf_', 'path' => '/', 'domain' => '.yoursite.com' );
$config['cookie'] = array(
'prefix' => 'xf_',
'path' => '/',
'domain' => '.yoursite.com'
);
//Configuration for Blog MultiSite
$config['blog']['multisite'] = true;
$config['cookie']['domain'] = '.8th.us';
I turned Better Blogs Multisite back on to experiment.
I tried
Code:$config['cookie'] = array( 'prefix' => 'xf_', 'path' => '/', 'domain' => '.yoursite.com' );
and got this error:
Parse error: syntax error, unexpected '.8' (T_DNUMBER), expecting ')' in /home/blah/public_html/library/config.php on line 26
My Better Blogs config settings for Multisite looks like this:
Code://Configuration for Blog MultiSite $config['blog']['multisite'] = true; $config['cookie']['domain'] = '.8th.us';
I tried that config setting along with that. Same error. I tried it with just that setting, still didn't work.
Thanks anyway. I turned Better Blogs multisite off. I'd rather just try to get a members page vanity url addon instead.
wildcardsHow would the subdomain be created though? DNS entries would have to be created for it, which can't really be done from the xenForo side of things.
It would have to be the /<username> variety.
wildcards![]()
They would also need something to handle outside links cause outside links and embedded pictures make the page unsecure.EDIT3: What about those sites using SSL, they would have to buy a wildcard SSL certificate
Liam
We use essential cookies to make this site work, and optional cookies to enhance your experience.