-
Henry Wright replied to the topic On sign up – Username (required) is there a way to change that text to Fullname in the forum How-to & Troubleshooting 9 years, 6 months ago
The username serves multiple purposes:
It’s needed internally for use in URLs etc. First name and surname won’t play nicely in this context because you can’t have spaces etc in URLs.
It’s used as a ‘friendly’ unique identifier. What happens when you have 2 members named John Smith? How do you private message the first John Smith without private…[Read more] -
Henry Wright replied to the topic On sign up – Username (required) is there a way to change that text to Fullname in the forum How-to & Troubleshooting 9 years, 6 months ago
The username serves multiple purposes:
It’s needed internally for use in URLs etc. First name and surname won’t play nicely in this context because you can’t have spaces etc in URLs.
It’s used as a unqiue identifier. What happens when you have 2 members named John Smith? How do you private message the first John Smith without private messaging…[Read more] -
Henry Wright replied to the topic On sign up – Username (required) is there a way to change that text to Fullname in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi @minglonaire
This whole username, name system in Buddypress is weird
What do you think is weird about it?
-
Henry Wright replied to the topic Buddypress to Aweber seamless integration in the forum Third Party Plugins 9 years, 6 months ago
Thanks for sharing @vimes1984. Would be great if you could get it into the official plugin dir!
-
Henry Wright replied to the topic how to set a buddypress function's value in array ? in the forum How-to & Troubleshooting 9 years, 6 months ago
You have a semicolon that needs removing (value of Para2)
-
Henry Wright replied to the topic Urgent: Turning my site into https is not working in the forum How-to & Troubleshooting 9 years, 6 months ago
You should check your error logs to see if anything is written. Also, what status code are you getting?
-
Henry Wright replied to the topic Urgent: Turning my site into https is not working in the forum How-to & Troubleshooting 9 years, 6 months ago
You should check your error logs to see if anything is written. Also, what status code are you getting? 503?
-
Henry Wright replied to the topic Urgent: Turning my site into https is not working in the forum How-to & Troubleshooting 9 years, 6 months ago
That looks pretty standard to me. everything is sent to index.php as expected so I doubt the problem is with your .htaccess directives. The problem must be elsewhere
-
Henry Wright replied to the topic Urgent: Turning my site into https is not working in the forum How-to & Troubleshooting 9 years, 6 months ago
Sorry, I didn’t read the article in full. I just noticed item 9 describes how to do the .htaccess part.
Do you have anything else in .htaccess that may be conflicting?
-
Henry Wright replied to the topic Urgent: Turning my site into https is not working in the forum How-to & Troubleshooting 9 years, 6 months ago
Hey @amalsh
Which server are you using? If Apache, do you have .htaccess enabled? If so then how about using
mod_rewrite
?RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]This will do this following:
Turn on the rewriting engine
Check if the request isn’t HTTPS and
301 redirect whatever the…[Read more] -
Henry Wright replied to the topic Urgent: Turning my site into https is not working in the forum How-to & Troubleshooting 9 years, 6 months ago
Hey @amalsh
Which server are you using? If Apache, do you have .htaccess enabled? If so then how about using
mod_rewrite
?RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]This will do this following:
Turn on the rewriting engine
Check if the request isn’t HTTPS and if not
301 redirect whatever…[Read more] -
Henry Wright replied to the topic Urgent: Turning my site into https is not working in the forum How-to & Troubleshooting 9 years, 6 months ago
Hey @amalsh
Which server are you using? If Apache, do you have .htaccess enabled? If so then how about using
mod_rewrite
?RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]This will do this following:
Turn on the rewriting engine
Check if the request isn’t HTTPS
301 redirect whatever the current…[Read more] -
Henry Wright replied to the topic Native Mobile App in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi pixskull
You have a number of options. There are plugins you could install which would help you. Also there is the code-it-yourself approach. It depends on your time, coding skills, requirements etc.
Check out https://apppresser.com/ as well. It lets you build apps with WordPress.
-
Henry Wright replied to the topic How to avoid spam registration in buddypress in the forum Installing BuddyPress 9 years, 6 months ago
I’m not an expert on
mod_rewrite
orregexp
but:RewriteCond %{REQUEST_METHOD} POST
RewriteCond %{REQUEST_URI} .register*
RewriteCond %{HTTP_REFERER} !.*http://manifestationjournal.com/.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^$
RewriteRule (.*) http://mysite.com/ [R=301,L]This tells Apache you want to permenantly redirect all HTTP requests to…[Read more]
-
Henry Wright replied to the topic How to avoid spam registration in buddypress in the forum Installing BuddyPress 9 years, 6 months ago
I’m not an expert on
mod_rewrite
orregexp
but:RewriteCond %{REQUEST_METHOD} POST
RewriteCond %{REQUEST_URI} .register*
RewriteCond %{HTTP_REFERER} !.*http://manifestationjournal.com/.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^$
RewriteRule (.*) http://mysite.com/ [R=301,L]This tells Apache you want to permenantly redirect all HTTP requests to
htt…
[Read more] -
Henry Wright replied to the topic Theme in Development: Preview & Feedback? in the forum Showcase 9 years, 6 months ago
I’m using px units for measurement right now and would be good to get over to rems.
Good idea. I’m amazed at how the use of relative units drastically improves visual appearance when using large (and small) devices. Everything scales so nicely. Probably a good idea to use vector images such as SVG as well.
-
Henry Wright replied to the topic Static Front Page Problems in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi @kphawaii
Which theme are you using? Plugins?
-
Henry Wright replied to the topic Help! my registration page doesn't work. in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi @joesegal
A couple of things spring to mind that could be the cause of the problem:
The theme you’re using (Try TwentyFifteen)
The plugins you have installed (Try deactivating all plugins after switching theme to see if the problem resolves) -
Henry Wright replied to the topic Minimum password strength in the forum How-to & Troubleshooting 9 years, 6 months ago
@lisame as I said earlier, you will need to use a different hook for the settings page but looking through the
bp_settings_action_general()
function there seems no hook available.You have 2 options from here if you’d like to get this sorted:
Request the core team insert a hook inside
bp_settings_action_general()
which will let you validate…[Read more] -
Henry Wright replied to the topic Default User Role Blocked from ALL BuddyPress in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi @fuzzllc
A way of doing this would be to override the user’s role when they sign up. BuddyPress provides a hook we can use for this
bp_core_signup_user
. So, you could do something like this:function fuzzllc_set_default_role( $user_id ) {
[Read more]
$user = new WP_User( $user_id );
$user->set_role( 'keymaster' ); // keymaster can be whatever you… - Load More
@henrywright
Active 8 months, 2 weeks ago