Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 3,651 through 3,675 (of 22,689 total)
  • Author
    Search Results
  • #263906

    In reply to: Cannot Sign up

    Bradley Ross
    Participant

    From my previous post, changing AllowOverride None to AllowOverride FileInfo seems to have made the member, groups, and other pages operational.

    The following is a diff of the httpd.conf from the Yosemite version of macOS and my current version. Remember that there are three configuration files: httpd.conf, my.cnf, php.ini
    https://bradleyaross.wordpress.com/2017/02/04/wordpress-installation-problems/

    BradleyRossMacBook:apache2 bradleyross$ diff httpd.conf httpd.conf-YosemiteDefault
    22,25d21
    < #
    < # History:
    < # Starting with httpd.conf.pre.update which was dated July 1, 2015
    < #
    107,109d102
    < #
    < # The line for mod_include.so was uncommented 17-February-2017
    < # to allow the use of server side includes
    164,167c157
    < #
    < # The line for mod_cgi.so was uncommented on 17-Feb-2017
    < #
    < LoadModule cgi_module libexec/apache2/mod_cgi.so

    > #LoadModule cgi_module libexec/apache2/mod_cgi.so
    178,186c168,170
    < # See http://askubuntu.com/questions/48362/how-to-enable-mod-rewrite-in-apache
    < LoadModule rewrite_module libexec/apache2/mod_rewrite.so
    < #
    < # The two following lines had been commented out as part of the
    < # update July, 2015. They are now being uncommented to
    < # put them back in
    < #
    < LoadModule php5_module libexec/apache2/libphp5.so
    < LoadModule hfs_apple_module libexec/apache2/mod_hfs_apple.so

    > #LoadModule rewrite_module libexec/apache2/mod_rewrite.so
    > #LoadModule php5_module libexec/apache2/libphp5.so
    > #LoadModule hfs_apple_module libexec/apache2/mod_hfs_apple.so
    235,237d218
    < # Apparently the slash at the end of the Directory open tag
    < # refers to the root of the file system rather than /> indicating
    < # an empty tag
    269,270c250
    < # The attribute Includes was added 17-Feb-2017
    < Options FollowSymLinks Multiviews Includes

    > Options FollowSymLinks Multiviews
    278,281c258
    < # The attribute None was changed to FileInfo 17-Feb-2017:wq
    <
    < #AllowOverride None
    < AllowOverride FileInfo

    > AllowOverride None
    453,455c430,431
    < # The following two lines were uncommented on 17-Feb-2017
    < AddType text/html .shtml
    < AddOutputFilter INCLUDES .shtml

    > #AddType text/html .shtml
    > #AddOutputFilter INCLUDES .shtml
    BradleyRossMacBook:apache2 bradleyross$

    #263903

    In reply to: Cannot Sign up

    Bradley Ross
    Participant

    I have .htaccess
    I have loaded the entire system three times and followed the directions
    I have made sure that all of the files have an owner of _www

    I have already screamed and will probably do so again. I am currently using

    Apple Macintosh macOS 10.12.3
    Wordpress 4.7.2
    Theme: TwentySeventeen
    bbPress 2.5.12
    BuddyPress 2.8.0
    Jetpack 4.6

    The requested URL /blogs/wordpress/template/members/bradleyross/profile/edit/ was not found on this server.
    The page register has the permalink http://localhost/blogs/wordpress/template/index.php/members
    Does this sound correct

    It also appears that multiple attempts to load the software may result in things like members-2 and members-3. You may have to send pages with those permalink to the trash and then empty the trash. Hopefully, you can then recreate the pages correctly

    I now assume that the problem is somewhere in the rewrite module. In the httpd.conf file, I am going to change the line Allow None to Allow FileInfo. Does this sound reasonable and are there any other changes you think that I should make.

    in httpd.conf, I have

    LoadModule alias_module libexec/apache2/mod_alias.so
    LoadModule rewrite_module libexec/apache2/mod_rewrite.so
    #
    # The two following lines had been commented out as part of the
    # update July, 2015. They are now being uncommented to
    # put them back in
    #
    LoadModule php5_module libexec/apache2/libphp5.so
    LoadModule hfs_apple_module libexec/apache2/mod_hfs_apple.so

    and

    <Directory “/Library/WebServer/Documents”>
    #
    # Possible values for the Options directive are “None”, “All”,
    # or any combination of:
    # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that “MultiViews” must be named *explicitly* — “Options All”
    # doesn’t give it to you.
    #
    # The Options directive is both complicated and important. Please see
    # http://httpd.apache.org/docs/2.4/mod/core.html#options
    # for more information.
    #
    # The attribute Includes was added 17-Feb-2017
    Options FollowSymLinks Multiviews Includes
    MultiviewsMatch Any

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be “All”, “None”, or any combination of the keywords:
    # AllowOverride FileInfo AuthConfig Limit
    #
    AllowOverride None

    #
    # Controls who can get stuff from this server.
    #
    Require all granted
    </Directory>

    #263877
    thefierywell
    Participant
    #263871

    In reply to: Cannot Sign up

    Slava Abakumov
    Moderator

    @indra1007

    Have you read the article that was linked by @danbp?
    Do you have .htaccess file in the same diretory where you installed WordPress?
    If not, create it with this content:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress

    More details here: https://codex.wordpress.org/htaccess

    #263869
    Slava Abakumov
    Moderator

    Latest WordPress itself has issues on PHP 7.1, and while testing BuddyPress we allow failures on PHP 7.1 as well.
    So in general BuddyPress should work on PHP 7.1, but no one spent extra attention on testing there everything and fix if there are any issues.

    Try to downgrade to PHP 7.0.x.

    #263854
    r-a-y
    Keymaster

    Thanks for reporting!

    A fix is already in trunk:
    https://buddypress.trac.wordpress.org/changeset/11432

    This will be ready for v2.8.1. Until then, manually patch bp-xprofile/bp-xprofile-admin.php with the changeset linked above until 2.8.1 is released.

    #263845
    #263843
    danbp
    Participant

    Bug confirmed! Open a ticket on the trac.

    To login, use same credentials as for this forum.

    #263829

    In reply to: Hide members

    Hi. I struggled with this for a while, and I agree entirely that something like this needs to be in the BuddyPress core… actually, I think much better user management needs to be in the WordPress core, not just BuddyPress, but that’s a discussion for another time…

    I eventually found the code that you’re using and modified it to be able to ignore all users with a specific WP role or roles, thus removing the need to hard-code specific user IDs.

    To manage user roles you’ll need a plugin such as User Role Editor by Vladimir Garagulya and create a new role that you assign to users who you want excluded (I chose “suspended”). If you use URE you can assign this as an additional role to the main one that WordPress allows you to set.

    The code is here: http://pastebin.com/9xYALGfR, but I’m no PHP expert, so offer no assurances… all I can say is that it works for me 🙂

    #263825
    Slava Abakumov
    Moderator

    You will need to integrate Multi Vendor plugin into BuddyPress.
    That means create specific profile pages (there is an article in BuddyPress Codex), modify BuddyPress templates in your child theme (same – see articles in Codex).

    You can check this as well:

    #263816
    Slava Abakumov
    Moderator

    What are your WordPress and BuddyPress versions?

    #263754
    MarcusFuto
    Participant

    The reason seemed to be that the account I was posting from didnt have a buddypress registration only wordpress admin registratation.

    #263748
    MarcusFuto
    Participant

    Thanks,

    It seems I was able to get some help here too:

    https://wordpress.org/support/topic/hello-guys-how-to-exclude-a-single-page-from-redirect/#post-8800781

    The think is that I want the activity page to show be visible menu for logged out users as well.

    But the activity page is only selectable for logged in users as you can see here: https://snag.gy/Am1gph.jpg

    Thanks for the tip!

    #263743
    shanebp
    Moderator

    Have you tried one of the privacy plugins?
    For example: https://wordpress.org/plugins/bp-simple-private/

    #263731
    Hugo Ashmore
    Participant

    Apparently ticketed:
    https://buddypress.trac.wordpress.org/ticket/7443

    We’ll consider a possible solution or ‘hack’ 🙁 to avoid the issue.

    #263716
    r-a-y
    Keymaster
    r-a-y
    Keymaster

    Hi, about BP Group Hierarchy, it is not supported any more.

    I just patched a bunch of pull requests and patches from Github, but I do not maintain the plugin. I personally do not use the plugin either, so I’m sorry that I cannot help out here.

    Your best bet is to engage with the community that uses BPGH and see if someone has a fix. I know that dcavins is working on an alternative to BPGH, but I’m not sure if that plugin supports everything from BPGH yet.

    It also looks like dcavins proposed a fix for the count here:
    https://wordpress.org/support/topic/fails-with-bp-2-7/#post-8435421

    If that works, I can merge it into my branch of BPGH.

    #263711
    r-a-y
    Keymaster

    This has nothing to do with BuddyPress, but it has to do with adding HTTPS support to your WordPress website.

    You have to either pay to get a SSL certificate or use the Let’s Encrypt service to get a free SSL certificate:
    https://letsencrypt.org/

    Then, configure WordPress to use SSL and this issue should be fixed.

    #263710

    In reply to: BP profile issue

    wonderdog4
    Participant

    WORDPRESS 4.7.2
    BUDDYPRESS 2.7.4

    #263644
    Slava Abakumov
    Moderator

    Yes, you can use a hook in a function bp_activity_add() called the same.

    /**
     * Fires at the end of the execution of adding a new activity item, before returning the new activity item ID.
     *
     * @since 1.1.0
     *
     * @param array $r Array of parsed arguments for the activity item being added.
     */
    do_action( 'bp_activity_add', $r );
    

    So you should write something like this:

    add_action( 'bp_activity_add', function( $arguments ) {
        // Put in wp_mail() function all your params, see https://developer.wordpress.org/reference/functions/wp_mail/
        wp_mail($to, $subject, $message);
    } );
    
    #263638
    Venutius
    Moderator

    I’ve not seen anything with a pie charge, but for the raw data you could look at Dan’s plugin:

    https://wordpress.org/plugins/buddymemberstats/

    #263620
    r-a-y
    Keymaster

    Can you follow up on Paul’s suggestion?

    Do you have NOBLOGREDIRECT defined anywhere? Check wp-config.php or check if a plugin or theme is defining it somewhere.

    I’ve added a patch that should fix this issue if NOBLOGREDIRECT is defined, but is running from single site:
    https://buddypress.trac.wordpress.org/attachment/ticket/7441/7441.01.patch

    Can you test this out and let us know if this fixes things for you?

    #263617
    warezit
    Participant

    Hello!

    I am having an issue with BP, that I caused myself. I intentionally deactivated, then deleted, BP (on a 5 day old site) thinking that I wasn’t going to use it. Then I ran ‘WP Optimize’ which removed all the unused tables from the plugins I had installed, and removed unused transients, etc… This is what caused the problem.

    Some time later, I went to re-install BP – which succeeds with no issues. Here’s where the issues crop up… Next, I went to create a new Group on the BP front-end, and it reports an error:
    There was an error saving group details. Please try again.

    Enabling WP debug mode in “wp-config.php” reports this:

    WordPress database error: [Table 'wordpress.wp_bp_groups' doesn't exist]
    SELECT id FROM wp_bp_groups WHERE slug = 'create'
    WordPress database error: [Table 'wordpress.wp_bp_activity' doesn't exist]
    SELECT id, user_id, date_recorded FROM wp_bp_activity WHERE component = 'members' AND type = 'last_activity' AND user_id IN (1) LIMIT 1
    WordPress database error: [Table 'wordpress.wp_bp_activity' doesn't exist]
    SELECT id, user_id, date_recorded FROM wp_bp_activity WHERE component = 'members' AND type = 'last_activity' AND user_id IN (1) LIMIT 1
    WordPress database error: [Table 'wordpress.wp_bp_activity' doesn't exist]
    SHOW FULL COLUMNS FROM <code>wp_bp_activity</code>
    WordPress database error: [Table 'wordpress.wp_bp_notifications' doesn't exist]
    SELECT * FROM wp_bp_notifications n WHERE user_id IN (1) AND component_name IN ('friends','messages','activity','groups','blogs') AND is_new = 1
    WordPress database error: [Table 'wordpress.wp_bp_messages_recipients' doesn't exist]
    SELECT SUM(unread_count) FROM wp_bp_messages_recipients WHERE user_id = 1 AND is_deleted = 0 AND sender_only = 0
    WordPress database error: [Table 'wordpress.wp_bp_friends' doesn't exist]
    SELECT id FROM wp_bp_friends WHERE (initiator_user_id = 1 OR friend_user_id = 1) ORDER BY date_created DESC
    WordPress database error: [Table 'wordpress.wp_bp_groups_members' doesn't exist]
    SELECT COUNT(DISTINCT m.group_id) FROM wp_bp_groups_members m, wp_bp_groups g WHERE m.group_id = g.id AND m.is_confirmed = 0 AND m.inviter_id != 0 AND m.invite_sent = 1 AND m.user_id = 1
    WordPress database error: [Table 'wordpress.wp_bp_messages_notices' doesn't exist]
    SELECT id FROM wp_bp_messages_notices WHERE is_active = 1

    I have been trying to find a solution for this online, for the last 4+ hours… and I have gotten nowhere… So, I am humbly asking for help here, on how to recreate these tables – WITHOUT DELETING AND RECREATING MY ENTIRE SITE. I have nearly 100 hours into this site so far, and I am NOT starting over. Starting over is NOT an option, so please save everyone’s time and skip suggesting this.

    I have reviewed all of these links, and followed all of their respective directions, when applicable:

    Deleting BuddyPress


    https://buddypress.org/support/topic/reinstall-should-i-delete-old-tables-from-db/

    repair buddypress database


    and, many many many many more links, that I am not going to go back and try to find…

    Any help with this would be great – I’d really like to use BP again… I have seen a number of other people online with this issue, so I know I am not the only one. There has to be some elegant solution to re-create the required SQL tables for the plugin, right?

    I have tried running this, after I reinstalled BP the 4th time (with my TDL inserted, ofc):
    https://xxxxxx.com/wp-content/plugins/buddypress/bp-core/bp-core-update.php?f=bp_update_to_2_7_4
    But, it didn’t seem to do anything…

    Ubuntu 16.04.1
    Apache 2.4.18
    PHP 7.0.13
    WP 4.7.2
    BP 2.7.4
    no other BP extension/plugins have been installed since the 1st time removing BP

    I am more than happy to provide any requested log files!

    Thank you a TON in advance!! I look forward to getting this working again.

    #263584
    juanho
    Participant

    i am not using multisite, the other instance of wordpress is working independently on a different location of the same server, completely isolated from one another.
    Wordpress v4.7.2

    #263576

    In reply to: Pending Activation

    leo1951
    Participant

    Thanks for the responses.

    I do not need any Easy WP SMTP plugin running on any WordPress site to send mail. I am only adding it because I want email sent from a specific site to use my preferred return email. Also, not all of my domains are setup to sign outgoing emails so with Easy SMTP I can determine from which domain emails will be sent from.

    I will close this subject for now while I investigate more.

    Thanks, everyone for valuable feedback.

Viewing 25 results - 3,651 through 3,675 (of 22,689 total)
Skip to toolbar