Info
- 18 posts
- 3 voices
- Started 5 years ago by AphelionZ
- Latest reply from AphelionZ
- This topic is resolved
another type of login problem
-
- Posted 5 years ago #
I have a user named Professor Stigious and a user named POS
POS is able to log in with no problems, and navigates cleanly between my blog and my bb with no trouble whatsoever.
However, when Professor Stigious goes to the bb he's not logged in and when he tries to the space in his name screws him up! he needs your help! please!
-
- Posted 5 years ago #
Maybe he doesn't have the cockies enabled ?
-
- Posted 5 years ago #
Both cockies and cookies are enabled, sir!
-
- Posted 5 years ago #
It's the space.
Try this plugin:
<?php
/*
Plugin Name: Allow spaces in user names
Plugin URI: http://bbpress.org/forums/topic/99
*/function wpbb_user_sanitize( $text, $raw, $strict ) {
$username = strip_tags($raw);
// Kill octets
$username = preg_replace('|%([a-fA-F0-9][a-fA-F0-9])|', '', $username);
$username = preg_replace('/&.+?;/', '', $username); // Kill entities// If strict, reduce to ASCII for max portability.
if ( $strict )
$username = preg_replace('|[^a-z0-9 _.\-@]|i', '', $username);return $username;
}add_filter( 'user_sanitize', 'wpbb_user_sanitize', -1, 3);
?>
-
- Posted 5 years ago #
I copied this code into a file called userspace.php and then copied that file into the my-plugins folder. Is there anything else I need to do?
Professor Stigious is also the keymaster. Is this super problematic?
btw thank you for your fast response!
-
- Posted 5 years ago #
That snhould be all you need to do (it shouldn't matter who's what). But I haven't actually tested it.
Please let me know how it goes.
-
- Posted 5 years ago #
I'm afraid that it did not work.
My site is outletzine.org
my forum is at outletzine.org/forums2
If i can provide any more information that might help please let me know.
-
- Posted 5 years ago #
Did not work, I put a print statement in the userspace.php, printing "This code is being executed." and it showed up, but does not solve the whitespace problem.
-
- Posted 5 years ago #
Is there a simple modification to the plugin that can be made to fix this problem?
-
- Posted 5 years ago #
Has nobody else had this problem with spaces in the username?
-
- Posted 5 years ago #
Strange - it worked for me.
Make sure that userspace.php has no whitespace before the
<?phpor after the?> -
- Posted 5 years ago #
It still does not work. My forum is at outletzine.org/forums2
-
- Posted 5 years ago #
This is very hacking debugging but I put another print statement in, this time inside the custom function which prints "the code is being executed"
when the wpbb_user_sanitize function and that does not display on the page at any point during any sort of login, successful or unsuccessful.Is there anything else you can suggest?
-
- Posted 5 years ago #
Can you paste the entire contents of that file http://pastebin.com/ and then post the link here?
-
- Posted 5 years ago #
cool site, btw!
-
- Posted 5 years ago #
Ah!
My sincere apologies. I've sent you on a wild goose chase. That plugin will only work with the upcoming next release of bbPress.
Don't dispair, though. That new release is coming soon.
Sorry!
-
- Posted 5 years ago #
ok, no worries! I'm itching for it... itching!
-
- Posted 5 years ago #
correct! works now!
-
You must log in to post.