• Resolved Damyan90

    (@damyan90)


    Website: https://www.sirforex.net
    Wordpress Version: 4.4
    Theme: twenty fourteen

    Hello everyone and MERRY CHRISTMAS! ??

    I recently decided to integrate registration at my website. I launched the meta box widget in the content bar of my website. The strange is that when I click on Register, it leads to https://www.sirforex.net/register and it says the page is not found.

    I remember in the past having troubles with fake registered users because my “anyone can register” box was activated. I got hundreds of spam regs in the website for few days. Therefore, I remember it USED to work. Now the page is gone and I don’t know why.

    I deactivated all the plugins, I switched to default theme and I even changed the theme. Unfortunately the https://www.sirforex.net/register link still did not lead to anywhere.

    I would be grateful if you help me!

    Happy Holidays!

    Damyan

Viewing 6 replies - 1 through 6 (of 6 total)
  • Did the plugin ask you to create a page named “register”, place a shortcde in it, and then publish the page?

    Try to change Permalink in wp-admin/settings to Plain.

    Thread Starter Damyan90

    (@damyan90)

    The buddypress blugin says this on top of every WP Dashboard page:

    “The following active BuddyPress Components do not have associated WordPress Pages: Activate, Register. Repair”

    I can click on repair and it leads me to a page where I can link buddypress to my register page, which obviously is gone.

    I changed the permalinks to plain but it did not work. Actually, when I changed the permalinks to plain, buddypress says that we are almost ready and we need to put the permalinks on something different than default.

    When I go to my pages, a registration page does not exist at all. Is this normal?

    I have the same problem, when i used permalink -> %postname% or diff… in some process”submit” page shows 404, when i changed permalink to Plain work fine, of course i do not want plain in my WordPress.

    Try to add in your theme functions.php

    function remove_title_query_var( $qvars ) {
    $qvars = array_unique($qvars);

    if(($key = array_search(‘title’, $qvars)) !== false) {
    unset($qvars[$key]);
    }
    return $qvars;
    }
    add_filter( ‘query_vars’, ‘remove_title_query_var’ , 10, 1 );

    Thread Starter Damyan90

    (@damyan90)

    Hey wp-billi,

    Thank you for your response. I am a newbie and I am still learning. Could you please give me some more details about where exactly should I paste this code in my functions.php ? I would be grateful if you are as detailed as possible. ??

    Kind Regards,
    Damyan

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘…/register NOT FOUND’ is closed to new replies.