Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'Activation 404'

Viewing 25 results - 26 through 50 (of 60 total)
  • Author
    Search Results
  • #236389
    blongwp
    Participant

    Hi I am a newbie to BuddyPress and WordPress.

    I am using WordPress 4.1.1, BuddyPress 2.2.1 with theme Twenty Fifteen (tried with eleven, twelve and thirteen as well)

    * I enabled registration for all.
    * I went to the BuddyPress settings, left the components at the default settings.
    * On the Page tab pages were generated for Members, Activities, Registration and Activation.
    * If I press the view button for the registration page I get a blank page displayed with the following url. <host>:<port>/index.php/register/
    * If I log out and press the register link the url is <host>:<port>/register/ and I get a 404

    I searched your forums and there seems to be a number of people with this or a similar problem but I could not find a solution.

    Any help would be appreciated.

    PanosL
    Participant

    Hello!

    Here is the information first:

    1. Which version of WordPress are you running?
    WordPress Version 4.1
    2. Did you install WordPress as a directory or subdomain install?
    Installed as a directory
    3. If a directory install, is it in root or in a subdirectory?
    Subdirectory
    4. Did you upgrade from a previous version of WordPress? If so, from which version?
    No
    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
    Yes, its only the member profile pages not working and the registration page
    6. Which version of BP are you running?
    2.1.1
    7. Did you upgraded from a previous version of BP? If so, from which version?
    No, fresh wordpress installation fresh Kleo fresh Buddypress
    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
    Akismet,AskApache Debug Viewer,K Elements, Resize Image After Upload,Revolution Slider,rtMedia for WordPress, BuddyPress and bbPress, bbpress, Taxonomy Metadata, WordPress SEO, WPBakery Visual Composer
    9. Are you using the standard BuddyPress themes or customized themes?
    No i am using Kleo
    10. Have you modified the core files in any way?
    No
    11. Do you have any custom functions in bp-custom.php?
    No
    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
    bbPress 2.5.4
    13. Please provide a list of any errors in your server’s log files.
    its 404 not found
    14. Which company provides your hosting?
    Rackspace
    15. Is your server running Windows, or if Linux; Apache, nginx or something else?
    Apache

    Extra info: I have permalinks set to default. With default permalinks, the posts work but the member profiles give 404. If i change the permalinks to something else the posts don’t work and the member profile pages don’t work either. Also it appears i have no registration page. Its like Buddypress doesn’t recognise any of the paths. I have created Registration and Activation pages and have set them at the settings. I had it working on a previous wordpress installation that was the same, but then after a fresh installation it stopped working.

    #231171
    Luke Mackenzie
    Participant

    I’ve taken a look at https://codex.buddypress.org/themes/theme-compatibility-1-7/template-hierarchy/ but don’t see any mention of templates for activation and registration.

    I’m building a theme from scratch using roots which has the templates:

    • index.php
    • 404.php
    • base.php (this is a theme wrapper which injects header, footer etc)
    • single.php
    • page.php

    In the WP dashboard I see the error:

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

    Where can I find some more info on required theme templates and how to create a registration / activation template?

    #175552
    marya521
    Participant

    Hi,
    I’m using the Gridiculous theme and when I go to the activation email and click the link, it will take me back to my blog just fine, but in the middle of the blog it shows a 404 msg. and says “SORRY. WE CAN’T SEEM TO FIND THE PAGE YOU ARE LOOKING FOR.” How do I fix this? thx!
    http:// getslimwithmary.com

    #171205
    bp-help
    Participant

    @abertawe
    You still may want to double check because there has been instances where a theme caused the creation of extra registration and activate pages and if the correct one is not associated then it will produce a 404 page not found error.

    #171183
    Abertawe
    Participant

    Before activating Buddypress I had gone into the general settings in the dashboard and checked the anyone can join option so I wouldn’t think it’s anything to do with that. Both pages were created automatically when the plugin was activated so I’m not sure why I was getting a 404 page not found error…

    #171140
    Abertawe
    Participant

    Hey all, I’m new to the whole Buddypress thing but not new to WordPress.

    I am soon to start up my own metal community soon for anyone who listens to metal music, metal bands and artists included and have chosen to use Buddypress.
    Before I do purchase a web host package I thought I’d set it all up on a free test host first just to see what it would look like, how it all works and so on though I have come across a problem already…
    So installing the plugin was simple enough and at first everything seemed fine though when I try to register another account just to see if it would work I come across a 404 page not found error, logged in again and checked the pages and the registration page is there.

    Looked for a solution on Google and have read some topics in regards to the same or similar issues here and have come to the conclusion that I need to create both register and activate pages? I ask though what would the point of that be when they have already been created automatically?

    Was also wondering if anyone knows where I could get a free rock/metal theme for Buddypress?

    #171139

    In reply to: Flat Portal theme

    Squirrel
    Participant

    Thanks @shanebp 🙂

    It basically works in this way- I have a header file with multiple headers for different page templates or conditions such as is_singular() or is_page.. e.g

    if (is_front_page() || is_404() || is_page_template('public-subpages.php') || is_page_template('public.php') || is_page_template('public-full.php') || is_page_template('gallery-public.php') || is_singular('download') || bp_is_activation_page() || bp_is_register_page()) :
    get_header('public');
    elseif (bp_is_profile_component() || bp_is_settings_component() ):
    get_header('restrict-profile');
    else :
    get_header('private');

    The pages are all set to private by default and depend on setting them to different page templates if you want them public or a different style.
    The private pages have a header-private that re-directs non-logged in users to the log in page (which is created on theme activation and set to the log in page template)

    So the public page templates have a header-public without any redirect for non-logged in users.

    There are also page templates that go with a header-restrict for restricting pages to editor / admin only with the conditional redirect

    elseif (bp_is_current_component( 'members' ) || is_page_template('archives.php') || is_page_template('full-restrict.php') || is_search() || is_tag() || is_date() ) :
    get_header('restrict');

    The different header files have re-directs at the top except for the public one: e.g header-restrict has:
    if(!current_user_can('delete_others_pages')) { wp_redirect( home_url() ); exit; }
    at the top.

    It’s been my pet project for a few years but to be honest you are right I’ve not had much luck promoting it and there are lots of plugins that do similar things and lots of themes, but it’s been interesting non the less 🙂 I use it for my own little project support area and it’s basic but it works.

    Thanks for checking it out.

    #148137

    Odd they are 500 errors, and not 404’s. You may want to refresh your permalinks, incase something got mucked up in there.

    #146504
    maikelcoke
    Participant

    No redirect, the key is on the url.

    I’ve debugged the /register action.
    I’ve tried to output the _GET var. No way, is empty if i add a parameter in the url.
    These seems to be a global problem in my buddypress.

    But the _POST is set correctly.

    no proxies
    lighttpd/1.4.28 (ssl)
    PHP 5.3.5-1ubuntu7.11 with Suhosin-Patch (cgi-fcgi) (built: Sep 12 2012 18:47:32)

    Can it be my rewrite rule?

    $HTTP["host"] =~ "^www\.xx\.de$" {
    server.document-root = "/var/www/xx/wordpress"
    url.rewrite-once = (
    "^/(.*/)?files/$" => "/index.php",
    "^/(.*/)?files/(.*)" => "/wp-includes/ms-files.php?file=$2",
    "^(/wp-admin/.*)" => "$1",
    "^/({_0}+/)?(wp-.*)" => "/$2",
    "^/({_0}+/)?(.*\.php)$" => "/$2",
    )
    server.error-handler-404 = "/index.php"
    }

    #141734
    David Carson
    Participant

    It’s still not clear to me what happens when the activation link is clicked.

    Does the page load? White screen? 404? I think those details would help diagnose.

    #131771
    aces
    Participant

    @allentan What debug info does a wp-mail-smtp test email give you.

    Does that email actually leave your host’s servers?

    The functions.php file would be found in the ( child ) theme directory. If it doesn’t exist you can create one.

    Were you logged out when you filled in the registration form?

    I wonder if this even is an email problem as I can’t reach normal buddypress pages such as http://learningdigitalphotography.net/activate/ I get `(HTTP 404 Not Found)`….

    snowlas
    Participant

    So here is the problem and MY solution. Might not work for you.
    What I’m using: WP 3.3.1, BP 1.5.4, & CIMY Extra Fields 2.3.7

    I register users from my WordPress page, NOT my BuddyPress page. So not myurl.com/register BUT I AM USING myurl.com/wplogin.php?action=register

    What was happening: CIMY generates a key before BuddyPress generates a key. THEN, Buddypress would send out its own email, but WordPress is looking for the CIMY key to activate the user.

    Also, when BuddyPress was sending out the activation email from bp_core_filters.php, NOT bp_members_signup.php. It seems that bp_core_filters.php does not seem to have the function to activate a user, but bp_members_signup.php does.

    When I would register users from my BuddyPress page instead of the WordPress page, the activate email would work just fine. The email was also being sent from bp_members_signup.php, NOT bp_core_filters.php. How do I know? I altered the email message in filters.php, but then got a different email when I registered through BuddyPress and not WordPress.

    Okay. So what did I do?

    bp_core_filters.php was overriding my CIMY activation email. When I disabled BuddyPress, I was able to register users through CIMY and my activation link even said ‘?cimy_key=838494040383830209’ (not a real key, obviously) and not just ‘?key=8393834929282’

    Before you do this, save a clean copy of bp_core_filters.php somewhere different, so if this doesn’t work for you, you can put the old file back in without any problems.

    I went into bp_core_filters.php and DELETED lines 224-255. This starts with:

    ?function bp_core_activation_signup_user_notification( $user, $user_email, $key, $meta ) {

    $activate_url = bp_get_activation_page() . “?key=$key”;
    $activate_url = esc_url($activate_url);
    $admin_email = get_site_option( ‘admin_email’ );

    if ( empty( $admin_email ) )
    $admin_email = ‘support@’ . $_SERVER;?

    Then it ends with, on line 255

    ?add_filter( ‘wpmu_signup_user_notification’, ‘bp_core_activation_signup_user_notification’, 1, 4 );?

    Delete all code between lines 224 and 255. If you have WPMU, above that is the email function for WPMU, in lines 181-222.

    Why am I using CIMY and not just extending the profile fields on BuddyPress? I needed to collect address data. It was a requirement to collect address data from the registration. But, it would then display publicly on the profile in BuddyPress. I couldn’t have that. I just wanted the data in WordPress, hidden. Thus, I’m using CIMY.

    Also, I use CIMY and hide the buddypress admin bar to strangers. I use the plugin login logout and place the widget in a sidebar to direct to the correct login screen, not the buddypress login screen.

    Check it out: http://mediabridges.info

    BuddyPress is running but is not handling any registration, activation, etc. But users can still use it.

    #129882

    In reply to: Profile page?

    athuntington
    Member

    Thanks for your response,

    I have WP 3.3.1/BP 1.5.4
    I’m logging in from a mac, so I believe it’s OS X? I’m using Safari. Does that answer your question appropriately?
    I have the default BP theme
    I have installed s2member, akismet, bbpress, bp, bp pending activations, invite anyone, jetpack, mail from, page tagger, skt nurcaptcha, wiziapp, and wp show id’s
    For permalinks, it’s set to post name. When I tried it as default, it gives a 404 error message when someone tries to get on the site.

    I installed the plugin ‘redirect to profile’ but that one didn’t seem to work. However, I found one called ‘profile as homepage’ and it seems to work when someone has left my site without logging out and then goes back to the site. But it still doesn’t do the trick when a person logs in. I still get the same ‘page not found’ message.

    ngtszman
    Member

    it seems like a windows permission problem, when doing buddyPress activation
    step2: automatically create page for groups, activity, members

    britt2802
    Member

    Hey all,

    I seem to be having some issues with the transition from old WP to new.

    A sequence of unfortunate events has lead me to wipe out my once beautifully integrated WP-BP coupon enthusiast site (www.shopcents.net). The entire site was fine one day, and completely a wreck the next. I was getting redirection errors as well as 404’s on every page and blank screens when trying to access the dashboard. I had to delete all themes and plugins from my ftp manager. Now, starting fresh again I installed the WordPress update 3.3 and next on my list was to install Buddypress again. I did so through the Plugins page and upon activation I get a blank screen. When Buddypress is deleted, everything goes back to normal. To make sure this wasn’t a site or hosting issue, I installed a Maintenance Mode plugin and all works fine.

    My hosting company (of who I won’t mention any names) tells me that there are no hosting issues going on and therefore won’t help me. I am desperately seeking some advice from all the seasoned WP-BP veterans out there!

    Thank You!

    ptaylor1001
    Member

    I am running WordPress 3.2.1 and installed BuddyPress, activated it, ran the activation wizard accepting all the defaults and changed the theme to the default BuddyPress theme. All of my pages are no longer accessible or found (menu links return 404 not found error).

    I did install and activate bbPress as well to cater for site wide forums. I de-activated this but it did not help fix the issue.

    I have since de-acitvated BuddyPress but the issue remains.

    I have created new pages since deactivating BuddyPress but this has not fixed the issue either.

    Lost patience.

    #119903
    @mercime
    Keymaster
    #119040

    Well, I discovered that in re-installing the wordpress and activation the network option, I’d forgotten to edit the .httaccess page.
    Sorry for the false alarm

    #95926

    In reply to: BP Xtra Signup

    davewoodbridge
    Participant

    Hi guys,

    Great plugin – some very critical registration form elements!

    I’m having some trouble with the mailchimp integration. When I enable it via the bp-xtra admin page, I get a 404 error after users submit the registration form, and no address is added to my Mailchimp list. The user still gets the activation email, but the 404 is kind of ugly :)

    I’ve set up the plugin properly: added my API key and the ID for the group… but 404 page remains unless I disable the mailchimp checkbox.

    Anyone have this problem? Or any idea how to fix it?

    Thanks in advance,
    Dave.

    #15441
    Jack
    Participant

    (I mistakenly posted this as an activity update rather than a topic. Oops)

    I’m running a multi-site BP installation (WP 3.0.1, BP 1.2.5.2) and I’m experiencing problems related to user authorization.

    When I have the option ”Both sites and user accounts can be registered.” enabled under multi-site options, any user that attempts to sign up isn’t able to activate their account using the activation link include in the confirmation email sent by BP. When they click the link, instead of activating their account they’re see a 404 page, or an ”oops… couldn’t find that page screen” (in chrome). This occurs even when they don’t try to create a blog during signup.

    I’ve also noticed that in cases where the user does attempt to create a blog, when they select a blog url during the signup process, WP is allowing them to select a blog url formatted as ”domain” rather than ”<domainblog” which in one test overwrote the url for the user’s profile because they used their username as their blog url. This meant that it was impossible to visit their profile page; all links instead landed on their blog’s homepage.

    Any ideas as to how to address either issue, the activation issue is the biggest problem I can see so far.

    harderstuff
    Member

    Running wp3.0 and bp 1.2.5. The upgrade has fixed part of the problem that I was having, but I still have the following issue.

    When a user registers from one of the subdomain sites, his activation email has a link which point to the subdomain, but when he follows it, he gets an HTTP 404 error. If he removes the subdomain name from the link, everything works fine. Example: registers from sub1.example.com, gets an activation link pointing to sub1.example.com/activate?key=xxxx, follows the link and gets an HTTP 404. Replace the link with example.com/activate?key=xxxx and activation is successful.

    The user’s avatar gets place in the repository for the blog described in ‘Super Admin->Options->Dashboard Site’ and the user that gets created is assigned to that same blog. The only thing that’s a problem is that the email doesn’t come from the ‘Dashboard Site’.

    Any suggestion on how I can fix this would be appreciated. Thanks.

    #12558
    m
    Participant

    I made my site yesterday and I’ve been trying to fix it up, but whenever I do anything really, it redirects to a 404 page, then instantly redirects to the unerrored page. My buddy has told me it popped up when he uploaded an avatar, when he wrote on my wire, when he accepted my friend request, when posting on the forums… The site is working fine, however. If a 404 page error comes up, everything is still processed. I would just like to get rid of the 404 page and instead make it look a lot smooth and cleaner.

    1. Which version of WP/MU are you running? 3.0
    2. Did you install WP/MU as a directory or subdomain install? directory
    3. If a directory install, is it in root or in a subdirectory? root
    4. Did you upgraded from a previous version of WP/MU? If so, from which version? Nope
    5. Was WP/MU functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. I didn’t test it; I installed it directly
    6. Which version of BP are you running? 1.2.4.1
    7. Did you upgraded from a previous version of BP? If so, from which version? Nope
    8. Do you have any plugins other than BuddyPress installed and activated?
    BP-NotificationWidget
    BP Disable Activation
    BuddyPress Album+
    BuddyPress Gifts
    BuddyPress Like
    BuddyPress Member Profile Stats
    Buddypress My Friends Widgets
    BuddyPress Profile Privacy
    Buddypress Wire
    Enhanced BuddyPress Widgets
    Registered-Users-Only-2
    9. Are you using the standard BuddyPress themes or customized themes? a custom theme, Darwin
    10. Have you modified the core files in any way? Not in any way that would affect this.
    11. Do you have any custom functions in bp-custom.php? Don’t believe so.
    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? I installed the latest one, but it kept linking me to the post (which was a 404), even though it posted the message. It wouldn’t redirect you back to the thread properly.
    13. Please provide a list of any errors in your server’s log files.
    14. Which company provides your hosting? GoDaddy

    #68646
    rich! @ etiviti
    Participant

    If the plugin is activated, then the registration to buddypress is not possible. 404 error on registration activation page.

    i’m unable to duplicate that… this slug => /register/ works for me with various subplugins activated. anymore details to help out?

    (also the /activate/ page works fine too)

    #68645
    enzyad
    Participant

    If the plugin is activated, then the registration to buddypress is not possible. 404 error on registration activation page.

Viewing 25 results - 26 through 50 (of 60 total)
Skip to toolbar