• I am using customize-your-community plugin and have a custom profile page which works great – however if a users removes the email field and clicks submit the errors and form appears on the backend and not in the frontend site anyone know of a quick fix?

    Cheers

Viewing 15 replies - 1 through 15 (of 18 total)
  • Same Problem here.

    Thread Starter adamcodefor

    (@adamcodefor)

    It’s a pretty big bug to be honest, the idea of the plugin is to block backend access this is a massive hole that lets users in…

    houseofstrauss

    (@houseofstrauss)

    I have the exact same probelm, when users make a mistake, the error page loads in the original backend of wordpress. Unfortunately the URL is the same as profile.php so I don’t know how to redirect users away from it.

    This is a major problem for my setup as I’m using the prologue theme. Really looking for some help to resolve this…

    Many thanks anyone!!

    acescence

    (@acescence)

    i’m trying to solve this myself. as a quick hack i added a bit of javascript to prevent submitting the form if the email field is blank.

    houseofstrauss

    (@houseofstrauss)

    There is another check on the password fields as well. If they are not the same or one is missing it reports an error also 🙁

    Please post here if you get a result. Thanks…

    do77

    (@do77)

    Yeah, I just figured out the problem with the new password too! At least I found a “solution” for the E-mail thing. I just don’t give my users the chance to change their E-mail address afterwards and added disabled="disabled" to the input field. How often do you really want to change your E-mail address?

    do77

    (@do77)

    Just figured out that you get an error after the second login when you try to change something 🙁

    houseofstrauss

    (@houseofstrauss)

    http://wordpress.org/extend/plugins/theme-my-login/ is a similar plugin that works and appears to be supported. Takes the current theme template for login/profile/(including error messages) password reset and registration screens.

    Thread Starter adamcodefor

    (@adamcodefor)

    its a shame to stop using the CYC plugin because it is great, but after a month of no word or solution to what is a pretty big problem, it looks like I will be using the theme-my-login as it is pretty similar and more frequently updated. Cheers for the link houseofstrauss

    Thread Starter adamcodefor

    (@adamcodefor)

    do77 – i guess if you add some javascript to validate the matching passwords too that would work, but dont forget people can just disable javascript and get round it, it needs to be sever side really.

    houseofstrauss

    (@houseofstrauss)

    @ adam.codefor No problem … I am very surprised it was never debugged sooner than this. Anyways, theme-my-login does the job quite well.

    Thread Starter adamcodefor

    (@adamcodefor)

    yeah I have been using theme-my-login for a week or so now and it is far better, no problems at all =D

    I ran into the exact same problem, and it’s pretty much a dealbreaker if it can’t be fixed. So I played around with the code and managed to put together a fix. (I haven’t tried the alternative plugin mentioned above–it may be better, but regardless this is a fix for anyone that wants to keep using the CYC plugin!)

    Nothing elegant, but prevents users seeing the admin screen!

    This involves editing the following two files:

    1. /wp-admin/user-edit.php — CORE WordPress file
    2. /wp-content/plugins/customize-your-community/cyc.php — Main Plugin File

    As you should always do, be sure to make a backup to these files before going in and editing them!

    In /wp-admin/user-edit.php, find the following (~line 143):

    if ( !is_wp_error( $errors ) ) {
    	$redirect = ($is_profile_page? "profile.php?" : "user-edit.php?user_id=$user_id&"). "updated=true";
    	$redirect = add_query_arg('wp_http_referer', urlencode($wp_http_referer), $redirect);
    	wp_redirect($redirect);
    	exit;
    }

    and change it to (adding an elseif statment):

    if ( !is_wp_error( $errors ) ) {
    	$redirect = ($is_profile_page? "profile.php?" : "user-edit.php?user_id=$user_id&"). "updated=true";
    	$redirect = add_query_arg('wp_http_referer', urlencode($wp_http_referer), $redirect);
    	wp_redirect($redirect);
    	exit;
    } elseif ($is_profile_page) {
    	$redirect = "profile.php?" . "errors=" . urlencode(implode('||',$errors->get_error_messages()));
    	wp_redirect($redirect);
    	exit;
    }

    What this does it redirects back to the profile.php page (which will be the non-admin styled one), and sends a get variable with the output text of the errors. It’s sent as a “piped” array.

    Second, open up /wp-content/plugins/customize-your-community/cyc.php, and find the following (~line 275):

    if ($_GET['updated'] == true) {
    	echo '<p class="message">Your profile has been updated.</p>';
    }

    and change it to (again adding an elseif statment):

    if ($_GET['updated'] == true) {
    	echo '<p class="message">Your profile has been updated.</p>';
    } elseif ($_GET['errors'] != "") {
    	$error_messages = explode("||", $_GET['errors']);
    	echo '<p class="message">';
    	foreach ($error_messages as $the_msg) {
    		echo "$the_msg<br />";
    	}
    	echo '</p>';
    }

    This looks for the errors GET variable and if found, prints out each error message. This code can be changed to display the errors however you like, for example in a red box, etc.

    This should solve the problem. If anyone tries this out let me know if it works for you!

    An important note: Since you’ve changed a core WordPress file and also the plugin code, you’ll have to be careful when upgrading both the WordPress core and the plugin. You either will have to upgrade manually, or make the above changes again after doing an automatic upgrade.

    That should be it! Hopefully a real fix will make it into a future CYC version…

    Matt

    @nomatteus

    I cannot thank you enough for providing this fix. I was too far into a project with CYC to switch to something different, though I expect I will be trying Theme My Login for future projects.

    Thanks again!
    ~randy

    nomatteus ! You are a saviour !

    I have been struggling with the code to get around this CYC bug for I-dont-know-how-many-hours now !

    Your logic works pretty well !!

    I dont know how to thank you for this. Thanks a lot !

    Regards
    Anupam

Viewing 15 replies - 1 through 15 (of 18 total)
  • The topic ‘[Plugin: Customize Your Community] Error on the profile page shows backend’ is closed to new replies.