-
Henry Wright replied to the topic Login Failure in the forum How-to & Troubleshooting 9 years, 6 months ago
Hey @hmglv
Diagnosing that problem is going to be rather difficult on the little info we have to go on. My advice is to search the WordPress code base to see if anything shows up for the exact error string you’re seeing. Then try to trace back to see what may be causing the error.
-
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
Also, where exactly do you have this .htaccess file? In what directory?
-
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
Try moving
RewriteBase /socialnetwork/
to the top, directly underneathRewriteEngine On
For example:
RewriteEngine On
RewriteBase /socialnetwork/RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}…[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
Try moving
RewriteBase /socialnetwork/
to the top, directly underneathRewriteEngine On
For example:
`RewriteEngine On
RewriteBase /socialnetwork/RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]RewriteRule ^index.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}…[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
Try moving
RewriteBase /socialnetwork/
to the top, directly underneathRewriteEngine On
For example:
`RewriteEngine On
RewriteBase /socialnetwork/RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]RewriteRule ^index.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}…[Read more] -
Henry Wright replied to the topic Hide or erase Sub replies in the forum How-to & Troubleshooting 9 years, 6 months ago
Exactly! 🙂
-
Henry Wright replied to the topic Hide or erase Sub replies in the forum How-to & Troubleshooting 9 years, 6 months ago
Unfortunatly i am not that good with php, so i hope i will be able to create the function myself
You won’t need to create a function 🙂
-
Henry Wright replied to the topic Hide or erase Sub replies in the forum How-to & Troubleshooting 9 years, 6 months ago
This comment was kind of on the right track but as most of the people pointed out in that topic, editing core files is a very bad idea.
Instead, you should take a look at this article to familiarise yourself with the Template Hierarchy. That way, you can remove the ‘reply’ link and be sure your modifications will remain after you upgrade BuddyPress.
-
Henry Wright replied to the topic Successful BP site in the forum Miscellaneous 9 years, 6 months ago
Hi @hideyuki999
Check out http://www.bpinspire.com/
-
Henry Wright replied to the topic Registration/Create an account page, in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi @bibblehead
Clicking on ‘Register’ on site, when I am logged out, brings up ‘Create an Account’ but ’email address’ field required is already populated with my user name ‘bibblehead’ and ‘Password’ field already populated with password in usual dots!
It is your browser doing this. Try clearing your browsing data and you’ll see these dots and…[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
You are ensuring /socialnetwork/ is prepended to relative paths in the line
RewriteBase /socialnetwork/
. Why are you manually doing it again in lineRewriteRule . /socialnetwork/index.php [L]
?Try removing just the socialnetwork part from the last line.
-
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 are ensuring /socialnetwork/ is prepended to relative paths in the line
RewriteBase /socialnetwork/
. Why are you manually doing it again in lineRewriteRule . /socialnetwork/index.php [L]
?Try removing the socialnetwork part from the last line.
-
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 are ensuring /socialnetwork/ is prepended to relative paths in the line
RewriteBase /socialnetwork/
. Why are you manually doing it again in lineRewriteRule . /socialnetwork/index.php [L]
? -
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
What’s the entire contents of your .htaccess?
-
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
-
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
That should not be an issue whatsoever with 2 John Smiths, two should should up and you click on whichever one you want
That doesn’t solve the problem with URLs. How can you get first/last name cleanly into a URL?
example.com/members/john%20smith
or with some string replacement:
example.com/members/john-smith
but what about John Smith 2 or…[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
That should not be an issue whatsoever with 2 John Smiths, two should should up and you click on whichever one you want
That doesn’t solve the problem with URLs. How can you get first/last name cleanly into a URL?
example.com/members/john%20smith
or with some string replacement:
example.com/members/john-smith
but what about John Smith 2 or…[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
That should not be an issue whatsoever with 2 John Smiths, two should should up and you click on whichever one you want
That doesn’t solve the problem with URLs. How can you get first/last name cleanly into a URL?
example.com/members/john%20smith
or with some string replacement:
example.com/members/john-smith
but what about John Smith 2 or…[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
That should not be an issue whatsoever with 2 John Smiths, two should should up and you click on whichever one you want
That doesn’t solve the problem with URLs. How can you get first/last name cleanly into a URL?
example.com/members/john%20smith
or with some string replacement:
example.com/members/john-smith
is acceptable but what about…[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
That should not be an issue whatsoever with 2 John Smiths, two should should up and you click on whichever one you want
That doesn’t solve the problem with URLs. How can you get first/last name cleanly into a URL?
example.com/members/john%20smith or with some string replacement:
example.com/members/john-smithis acceptable but what about John…[Read more]
- Load More
@henrywright
Active 8 months, 2 weeks ago