Forums

Register Plus Redux
Not working in 3.0.2 (22 posts)

  1. dzulfriday
    Member
    Posted 2 years ago #

    this plugin is not working in wp 3.0.2

    how can i rollback my wp to 3.0.1?

    http://wordpress.org/extend/plugins/register-plus-redux/

  2. FrancescoRizzi
    Member
    Posted 2 years ago #

    Curious, because I didn't encounter errors with 3.0.2 (yet). What issue are you experiencing ?

  3. radiok
    Member
    Plugin Author

    Posted 2 years ago #

    dzulfriday, what issue are you encountering with 3.0.2? I haven't seen any issues yet either.

  4. Tom
    Member
    Posted 2 years ago #

    Numerous issues here with 3.0.2:

    -when I upload a logo for the registration page it doesn't appear to do anything.
    -when I add the logo via the media uploader then add the link (then save), it still doesn't change the logo on the registration/ login page.
    -When I change any settings, they are not stored.

    ...that's all I've come across so far. Not sure I want to go any further at the moment.

  5. Tom
    Member
    Posted 2 years ago #

    Here's a few more issues:

    When I go to the "profile page" under the plugin settings I get:

    Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'RegisterPlusReduxPlugin::ProfilePage' was given in /home2/xxxxx/public_html/web/wp-includes/plugin.php on line 395

    None of the pages, apart from "hacks & fixes" save any changes I make to the settings.

    "Miscellany" contains the following error:

    ou can now link to the registration page with queries to autocomplete specific fields for the user. I have included the query keys below and an example of a query URL.

    Warning: Invalid argument supplied for foreach() in /home2/xxxxx/public_html/web/wp-content/plugins/register-plus-redux/register-plus-redux.php on line 1336
    %first_name% %last_name% %user_url% %aim% %yahoo% %jabber% %about% %invitation_code%

    And going back to point 2 of my first post in this thread- my logo (after uploading to WP then adding the URL) IS saved on the settings page, but it doesn't appear at login/ registration.

    Hoping that might help you debug.

  6. radiok
    Member
    Plugin Author

    Posted 2 years ago #

    jeffreeeeey, if you are having those issues then you are using the development version. Those are known issues with the development build, that version is no where near complete. You need to download 3.6.22.

  7. mlombaard
    Member
    Posted 2 years ago #

    i'm running wp 3.0.2, and register plus redux version 3.6.22, MySQL client version: 5.0.91, php Version 5.26

    when i upload my custom logo in wp, i get these errors:

    Warning: getimagesize() [function.getimagesize]: URL file-access is disabled in the server configuration in /home/mariuslo/public_html/wp-content/plugins/register-plus-redux/register-plus-redux.php on line 1280

    Warning: getimagesize(http://www.mariuslombaard.net/wp-content/uploads/2010/12/registerlogo1.jpg) [function.getimagesize]: failed to open stream: no suitable wrapper could be found in /home/mariuslo/public_html/wp-content/plugins/register-plus-redux/register-plus-redux.php on line 1280

    both of the above appear on my login and registration pages, as well as in my back office under settings >> Reguster plus redux >> right below the image that i've just uploaded.

    the custom image displays, but these errors appear on the 3 places i just mentioned.

  8. mlombaard
    Member
    Posted 2 years ago #

    sorry, that was php version 5.2.14

  9. FrancescoRizzi
    Member
    Posted 2 years ago #

    Hey mlombaard, I think I encountered the same error at one point.
    Have you tried checking the options at the bottom of the RPR configuration screen?

    Gosh I wish I remember their name or had an installed RPR handy... really, they are the last two on the page and they talk about "URL file-access" iirc.
    I think that solved the issue for me

  10. radiok
    Member
    Plugin Author

    Posted 2 years ago #

    mlombaard, FrancescoRizzi is totally right, there's an option at the bottom of Redux for just the problem you reported, it's called "URL File Access is Disabled".

  11. mlombaard
    Member
    Posted 2 years ago #

    thanks that worked like a charm :-)

  12. mlombaard
    Member
    Posted 2 years ago #

    one more question: can I control what page members see after logging in? right now they all see the dashboard but i want to send them to a particular page or post upon logging in.

  13. Tom
    Member
    Posted 2 years ago #

    radiok- thanks. Yes I was- my bad.

  14. radiok
    Member
    Plugin Author

    Posted 2 years ago #

    mlombaard, from Redux, no, but many many users have been using Peter's Login Redirect with great success.

    http://wordpress.org/extend/plugins/peters-login-redirect/

  15. mlombaard
    Member
    Posted 2 years ago #

    thanks again
    take care and keep up the good work

  16. mlombaard
    Member
    Posted 2 years ago #

    how can i make wordpress determine if a visitor is logged in or not with register plus redux? when i use your plugin, i would like to display a "Register | Login" link for visitors who are not logged in, but when they are logged in my site must show "Edit Profile | Log Out" link instead. is there some variable i can access so i can write a simple php script to put these links at the top of my header?

    thanks

  17. radiok
    Member
    Plugin Author

    Posted 2 years ago #

    mlombaard, did you ever figure this out?

  18. mlombaard
    Member
    Posted 2 years ago #

    Radiok said: "mlombaard, from Redux, no, but many many users have been using Peter's Login Redirect with great success."

    i checked it out and contacted peter. his plugin is the best out there, but even his plugin can't redirect a user back to the page they were viewing before registering/logging in.

    radiok said:"mlombaard, did you ever figure this out?"

    if there is a built in way to do this with wordpress, i didn't figure it out. i went and got a freelancer on http://www.vworker.com to write a script that did exactly this for me.

    i guess i'm gonna need a freelancer to modify peter's plugin to redirect users back to the page they were viewing, unless any of you know of a way to do it.

    take care!

  19. FrancescoRizzi
    Member
    Posted 2 years ago #

    Here's a function from one of my themes that should do what mlombaard was asking for (although it doesn't interact with RPR)
    Sorry for the length of it, but it has i18n weaved in.
    HTH,
    FR

    if ( ! function_exists( 'FRDF_LoginRegisterLogoutAdmin' ) ):
    function FRDF_LoginRegisterLogoutAdmin() {
    	$full = '';
    	if(is_user_logged_in()) {
    		$full = sprintf( _x('<a href="%1$s" title="%2$s">%3$s</a> or <a href="%4$s" title="%5$s">%6$s</a>', 'FRDF Format for Admin/Logout links', FRDF_TEXTDOMAIN),
    			admin_url(),
    			_x('Enter the Administrative area', 'FRDF Title for Link to Admin area', FRDF_TEXTDOMAIN),
    			_x('Admin Area', 'FRDF Text for Link to Admin area', FRDF_TEXTDOMAIN),
    			wp_logout_url(),
    			_x('Logout', 'FRDF Title for Link to Logout', FRDF_TEXTDOMAIN),
    			_x('Logout', 'FRDF Text for Link to Logout', FRDF_TEXTDOMAIN)
    		);
    	} else {
    		$full = sprintf(_x('<a href="%1$s" title="%2$s">%3$s</a> or <a href="%4$s" title="%5$s">%6$s</a>', 'FRDF Format for Login/Register message', FRDF_TEXTDOMAIN),
    			wp_login_url(),
    			_x('Login', 'FRDF Login Link Title', FRDF_TEXTDOMAIN),
    			_x('Login', 'FRDF Login Link Text', FRDF_TEXTDOMAIN),
    			site_url('wp-login.php?action=register', 'login'),
    			_x('Create New Account', 'FRDF Register Link Title', FRDF_TEXTDOMAIN),
    			_x('Register', 'FRDF Register Link Text', FRDF_TEXTDOMAIN)
    		);
    	}
    	return $full;
    }
    endif;
  20. mlombaard
    Member
    Posted 2 years ago #

    hi,

    would i just simply paste this code into a spot in my functions.php file and update it?

    would it then redirect users back to the page they viewed before registering/logging in?

    thanks,

  21. mlombaard
    Member
    Posted 2 years ago #

    sorry if that sounded dumb, but i'm not a wordpress or php developer, so i've got no idea what to do with code unless a developer tells me what to do with it or where to put it.

    thanks for the script though, really appreciate it

  22. FrancescoRizzi
    Member
    Posted 2 years ago #

    hey mlombaard. Sorry if I didn't answer yesterday. Saw your questions come through as email but they were not displaye don the forum yet.
    I just sent you a reply - but for anyone else who may be reading this, yes:
    1. add the function to your theme's functions.php
    2. call the function from the theme template file, where you want those links to appear:
    <?php echo FRDF_LoginRegisterLogoutAdmin(); ?>

    Other notes:
    ~ changing theme files like this means a theme update may throw your changes away: consider creating a child theme or your own theme
    ~ There's i18n weaved in that function. If you want to retain that ability, please don't use FRDF_TEXTDOMAIN as the text domain argument passed to _x (you probably want to use your own theme's text domain in its place)

    HTH

Topic Closed

This topic has been closed to new replies.

About this Plugin

About this Topic