Replies
- JohnnyNW on November 19, 2019 at 11:20 pm in reply to: [Resolved] Confused on finding settings… #26557This reply has been marked as private.
Ah, I see. Yeah, BP 1.0 to 2.0 took 5 years, 2.0 to 3.0 took another 5 years, then 3.0, 4.0, 5.0 took 1 year…I don’t see them going to 6.0 that fast LOL probably in a few years LOL Oh well. Okay, I had to at least ask 🙂
- JohnnyNW on November 19, 2019 at 2:03 am in reply to: [Resolved] Confused on finding settings… #26525
Hi. Sorry, your emails keep ending up in my Outlook spam box. No, my website is on my home computer (localhost with WAMP) ;( I’m not launching until April.
Buddypress Activity Plus isn’t available anymore to download off of WordPress, but I do have a copy. It almost works – maybe you guys can flip it to work with current WordPress 5. Let me know, and I’ll email it to ya.
- This reply was modified 4 years, 12 months ago by JohnnyNW.
- JohnnyNW on November 17, 2019 at 10:13 pm in reply to: [Resolved] Confused on finding settings… #26499This reply has been marked as private.
- JohnnyNW on November 17, 2019 at 9:57 pm in reply to: [Resolved] Confused on finding settings… #26497
Okay, I’ll have to take a refund on the plugin.
I could not find a resolution (I tried everything, from logs to reboot, from cleaning up db table to reinstalling backup folders, files, databases, from htaccess to functions.php, from removing other plugins to using this forum).
Plugin must not work with my setup. I’ll have to find an alternative solution. Thank you for all the other plugins 🙂 Keep plugin away and I’ll be back 😉
- JohnnyNW on November 17, 2019 at 6:08 pm in reply to: [Resolved] Confused on finding settings… #26496
Okay, quick update.
htaccess is not causing this problem.
Not a functions.php problem.
No php errors in log.
Only 1 one thing shows up in apache access log, this is an example of click on the photo link under gallery that redirects to homepage:
::1 – – [17/Nov/2019:10:00:21 -0800] “GET /web/members/bill/mediapress/type/photo/ HTTP/1.1” 302 –
::1 – – [17/Nov/2019:10:00:21 -0800] “GET /web/ HTTP/1.1” 200 41969
::1 – – [17/Nov/2019:10:00:27 -0800] “POST /web/wp-admin/admin-ajax.php HTTP/1.1” 302 –
::1 – – [17/Nov/2019:10:00:28 -0800] “GET /web/ HTTP/1.1” 200 40720
127.0.0.1 – – [17/Nov/2019:10:00:31 -0800] “POST /story/jj/admin-ajax.php HTTP/1.1” 200 47
::1 – – [17/Nov/2019:10:00:32 -0800] “POST /web/wp-admin/admin-ajax.php HTTP/1.1” 302 –
::1 – – [17/Nov/2019:10:00:33 -0800] “GET /web/ HTTP/1.1” 200 40724
::1 – – [17/Nov/2019:10:00:37 -0800] “POST /web/wp-admin/admin-ajax.php HTTP/1.1” 302 –
::1 – – [17/Nov/2019:10:00:38 -0800] “GET /web/ HTTP/1.1” 200 40725
::1 – – [17/Nov/2019:10:00:42 -0800] “POST /web/wp-admin/admin-ajax.php HTTP/1.1” 302 –
::1 – – [17/Nov/2019:10:00:43 -0800] “GET /web/ HTTP/1.1” 200 40725Still searching for a reason why this is happening.
- JohnnyNW on November 17, 2019 at 8:34 am in reply to: [Resolved] Confused on finding settings… #26487
Sure, that would be excellent, if we can solve another problem with Media Press. I am having troubles with Media Press working, itself. Everything seems to be working fine, except when I (admin) or users (test accounts) click certain links, they don’t work, redirecting back to homepage. Under Gallery (in profile), there are 4 links “My Gallery” | “Create A Gallery” | “Photo” | “Documents”… My Gallery and Create A Gallery WORK as expected, but when Photo or Documents links are clicked I’m REDIRECTED to homepage, every time.
Any suggestions?
Okay, so I found a plugin called Force Email Login, though it hasn’t been updated since WP 4.7 (3 years ago I believe, if my Spanish is still working)… .
It seems to work with no issues, works quite nice, but the only code the plugin has is this:
<?php /* Plugin Name: Force Email Login Author: Takayuki Miyauchi Plugin URI: https://github.com/miya0001/force-email-login Description: Use email address for login to your WordPress. Version: 0.6.0 Author URI: https://miya.io/ */ $force_email_auth = new Force_Email_Auth(); $force_email_auth->register(); class Force_Email_Auth { function register() { add_action( 'plugins_loaded', array( $this, 'plugins_loaded' ) ); } public function plugins_loaded() { remove_filter( 'authenticate', 'wp_authenticate_username_password', 20, 3 ); add_filter( 'authenticate', array( $this, 'authenticate'), 20, 3 ); } public function authenticate( $user, $username, $password ) { if ( is_a( $user, 'WP_User' ) ) { return $user; } if ( ! empty( $username ) && is_email( $username ) ) { $user = get_user_by( 'email', $username ); if ( isset( $user, $user->user_login, $user->user_status ) ) { if ( 0 === intval( $user->user_status ) ) { $username = $user->user_login; return wp_authenticate_username_password( null, $username, $password ); } } } if ( ! empty( $username ) || ! empty( $password ) ) { return false; } else { return wp_authenticate_username_password( null, "", "" ); } } }
Yet, far as I can tell it should work with WP 5.2.4 (I don’t want to upgrade to WP 5.3, just not feeling it LOL).
It seems to work well with all of your BuddDev plugins… .
Thank you.
Quick update: I just used a little CSS code that targeted the Reset Password Page and now it’s all cleaned up and working nicely. Thank you!
.page-id-102 p#backtoblog {
display: none;
}
.page-id-102
.buddypress div#message {
display: none;
}- This reply was modified 5 years ago by JohnnyNW.