Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 16,726 through 16,750 (of 22,685 total)
  • Author
    Search Results
  • #93270

    Ok I was looking in my Dashboard under my Automatic WordPress Backup and I have about 12 different back ups, all the way till the end of july.

    But if I use one of these backups, do I lose all of the work I’ve done since then?

    And what happens to the members that have signed up since then? Will I lose them?

    #93251
    formerfatguy
    Member

    i’m doing the same thing. I’m pretty sure it will work. I’ve seen a thread o ver on wishlist that says it will.

    haven’t done it yet though, so it’s not a for sure yet

    @mercime
    Participant
    #93196

    In reply to: Janrain Engage tested?

    asshu
    Member

    Janrain released it’s lasted version for wordpress 3 .
    From it’s news letter :
    “New WordPress Plugin
    The first version of the new Janrain Engage plugin for WordPress is now available. This version offers several new features including WordPress 3 compatibility and an enhanced UI.”

    But I like Gigya SSO rather than Janrain SSO.

    #93172
    @mercime
    Participant

    “I want to have many users, major emphasis on articles and basically block out all the rest.”
    Single install of WP 3.0.1 and you[ don’t even need BuddyPress. You can even use the Mingle Forums plugin which doesn’t require the Mingle plugin or SimplePress Forum plugin. As for central profile area, you can create WP author template plus a WP page template coded to taste for list of authors and you’re done.

    #93144
    Ekine
    Participant

    Okay, jetzt weiß ich… dass ich nichts über wordpress+buddypress weiß. ^^ Good work!

    #93140
    Nini
    Participant

    I have just installed buddypress and it is not working properly, what am I doning wrong. For instance, there are no pages for posting updates like this, creating groups and forums post. What am I supposed to be doing. I installed on top of WordPress 2010 theme and used the compatibility pack… What am I missing. When user log on it does not show the My Account/ Notification menu at all, it still showing the login in /sign up menu strip on top of the page. What am doing wrong. Please help

    paulhastings0
    Participant

    I host on RackSpace (Cloud Sites) this normally isn’t a problem ever. Do what Paul Gibbs suggests above and then increase the memory allocated for PHP by editing the wp-config.php: https://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP

    Paul Wong-Gibbs
    Keymaster

    What’s probably happened is that the site out-of-memory’d during the initial installation, so you may need to clean your database and re-install BuddyPress.

    Hugo Ashmore
    Participant

    I would check all settings in the BP admin section, possibly deactivate/reactivate BP.

    Are you running anything other than a bog standard install?

    Check the DB do these tables exist?

    Robert J.
    Participant

    It turns out that it was running 32M or memory, so I created a .htaccess that increased that to 64M

    Now the WP works, but the database is generating errors that the table it is looking for doesnt exist.

    Here is the error from the log. Note, I am hosting this in Rackspace Cloud (CloudSites):

    [22-Sep-2010 09:15:23] WordPress database error Table ***********.wp_bp_xprofile_groups’ doesn’t exist for query SELECT id FROM wp_bp_xprofile_groups WHERE id = 1 made by require_once, require, do_action, call_user_func_array, xprofile_add_admin_menu, xprofile_install
    [22-Sep-2010 09:15:23] WordPress database error Table ***********.wp_bp_xprofile_fields’ doesn’t exist for query SELECT id FROM wp_bp_xprofile_fields WHERE id = 1 made by require_once, require, do_action, call_user_func_array, xprofile_add_admin_menu, xprofile_install

    Note, I replaced my DB name with ***********

    Hugo Ashmore
    Participant

    You will need to supply more information than you have, i.e versions installed, although I asume they are latest stable releases of both.

    This is not a common error; WP and BP normally install just fine, 500 is a server error and can be caused by a mis-configured .htaccess rule or lack of PHP script memory and many other factors.

    Can you initially confirm how much memory is allocated to PHP script limit it may need to be increased, also what version of PHP you have installed on the server.

    Does WP run ok? Don’t activate BP just ensure that WP is installed correctly, that permalinks work as expected.

    If you can’t access dashboard rename BP plugin to force a deactivation of it and that should return access to wp-admin

    #93080
    Hugo Ashmore
    Participant

    @jimboba My apologies, no you didn’t incur my wrath and weren’t dismissed, sometimes it’s easy to lose track of threads

    Using the @mention system does help to ensure we see things flagged to our username.

    At times it does become very difficult to help further, especially remotely where we can only ask questions and are divorced from the actual events, normally I have access to all the files such as access/error logs, DB etc so I can effectively troubleshoot issues.

    Something else to check might be the settings for wordpress url and site url ; wordpress url should reflect the url path to your sub folder installation?

    #93077
    Stacy (non coder)
    Participant

    Wp- private claims to do this (https://wordpress.org/extend/plugins/wp-private/).

    #93060
    @mercime
    Participant
    rickkumar
    Participant

    @DJPaul Thanks for your response. I am not a programmer so :)

    Folks at WPMU Dev suggested trying this pluggin by JohnJamesJacoby to see if it works:

    WP Multi Network

    https://wordpress.org/extend/plugins/wp-multi-network/

    Adds a Network Management UI for super admins in a WordPress Multisite environment.
    Turn your multi-site installation of WordPress into many multi-site networks, all surrounding one central user base.

    WP Multi Network allows cape wearing super admins to create new network collections of sites, allowing for infinitely extensible site, network, and domain arrangements.

    @johnjamesjacoby Please advise if I can use this pluggin for my purpose as I explained in the original post above.

    Thanks you very much.

    #93056
    techguy
    Participant

    @Tolden and @stephenefromfrance
    Your functions.php file should contain the folowing:
    `<?php
    //Deals with uppercase username signup problems…maybe
    function my_sanitize_user( $username, $raw_username, $strict ) {
    $username = $raw_username;
    $username = wp_strip_all_tags( $username );
    $username = remove_accents( $username );
    // Kill octets
    $username = preg_replace( ‘|%([a-fA-F0-9][a-fA-F0-9])|’, ”, $username );
    $username = preg_replace( ‘/&.+?;/’, ”, $username ); // Kill entities

    // If strict, reduce to ASCII for max portability.
    if ( $strict )
    $username = preg_replace( ‘|[^a-z0-9 _.-@]|i’, ”, $username );

    // Consolidate contiguous whitespace
    $username = preg_replace( ‘|s+|’, ‘ ‘, $username );

    return $username;
    }
    add_filter( ‘sanitize_user’, ‘my_sanitize_user’, 100, 3 );

    ?>`

    At least that’s what mine has and it works fine.

    I’m also using this plugin to notify users if this would be a problem for them also: http://buddydev.com/buddypress/creating-a-buddypress-wordpress-username-availability-checker-for-your-site/ Although, I think I modified the script so it would only warn for certain use cases. I also did just realize that it doesn’t work for IE. Haven’t had a chance to see why yet. So, it’s good that I have both.

    #93052
    Boone Gorges
    Keymaster

    It’s up to individual plugin authors to include such a button, since WordPress itself isn’t really aware of the extra databases being created. I agree that it’s good practice for a plugin to include a button like this. But since BP doesn’t have one, it’s pretty simple to just drop the tables in question when you’re done using the plugin.

    #93048
    Ekine
    Participant

    Wouldn’t it be better if the option of deleting the corresponding plugin database tables were build in within the wordpress administration. Drupal handles uninstalling plugins this way which is very handy.

    #93043
    pmoi
    Participant

    Hey, I’ve just installed BuddyPress and BuddyPress Template Pack on the “Imbalance” theme http://wpshower.com/free-wordpress-themes/imbalance-free-wordpress-theme/ It said the install was successful whilst I was setting it up but still displays “BuddyPress is ready. You’ll need to activate a BuddyPress compatible theme to take advantage of all of the features. We’ve bundled a default theme, but you can always install some other compatible themes or upgrade your existing WordPress theme.”

    The main issue is that after I’ve installed the template package no options are appearing to create a forum or group, the only options coming up in the Buddypress dropdown in the dashboard are; General Settings, Component Setup, Forums Setup, Profile Field Setup and I can’t do anything with any of them except Profile Field. I’m thinking it might be because I don’t know if my ” bbPress tables are in the same database as my WordPress tables”, I don’t seem to be able to work it out.

    Really really need help with this, hope someone can!

    Thanks

    #93034
    paulhastings0
    Participant

    Here’s one to get you started:

    https://wordpress.org/extend/plugins/gd-star-rating/

    #93027
    phos flip
    Participant

    Don’t know if this is any use to anyone and no doubt there are far better ways of doing it but just in case it is of use….

    I’ve created (hacked really) a plugin made up of 3 files, one of which is useless for now but at a future point I’d like to play around with it.

    bp-group-catdisp.php

    `<?php
    /*
    Plugin Name: Display Categories
    Plugin URI:
    Description: Displays a blog category in groups
    Author: Mas
    Version: 0.1
    License: GNU General Public License 2.0 (GPL) http://www.gnu.org/licenses/gpl.html
    Site Wide Only: true
    */
    if ( !defined( ‘BP_GROUP_CATDISP’ ) )
    define ( ‘BP_GROUP_CATDISP’, ‘programme’ );

    function bp_group_catdisp_init() {
    bp_group_catdisp_wrapper();
    }

    if ( defined( ‘BP_VERSION’ ) )
    bp_group_catdisp_wrapper();
    else
    add_action( ‘bp_init’, ‘bp_group_catdisp_init’ );
    //above links to admin screen in backend
    require(dirname(__FILE__) . “/bp-group-catdisp-admin.php”);

    // group options
    function bp_group_catdisp_wrapper() {
    class bp_group_catdisp extends BP_Group_Extension {
    var $visibility = ‘private’;

    var $enable_create_step = false;
    var $enable_edit_item = false;
    var $has_caps = false;

    function bp_group_catdisp () {
    global $groups_template;

    // group title

    $this->name = __( ‘Programme’, ‘programe’ );
    $this->slug = BP_GROUP_CATDISP;
    $this->nav_item_position = 12;
    $this->create_step_position = 12;

    // group ID for displaying category within
    global $bp;

    $group_array = array( 17,11 );

    if ( in_array( $bp->groups->current_group->id, $group_array) )
    //group ID to display in array. Note can reverse this code ie. set it not to display in listed groups by placing !in_array( $bp etc.

    {
    $this->enable_nav_item = true;
    } else {
    $this->enable_nav_item = false;
    }

    }

    function display () {
    global $bp, $groups_template;

    include(“bp-group-catdisp-edit.php”);

    //bit above links to file that prints to tab

    }

    }
    bp_register_group_extension( ‘bp_group_catdisp’ );
    }

    ?>
    `

    bp-group-catdisp-edit.php

    `

    stories4change Y-Care Programme

    Information and modules related to the Y-Care Programme 2010/11

    <a href="” rel=”bookmark” title=”Permanent Link to “>

    Sorry, no posts matched your criteria.

    `

    bp-group-catdisp-admin.php

    `<?php

    function group_catdisp_add_admin_menu() {
    add_submenu_page( ‘bp-general-settings’, __( ‘Group Categories’, ‘bp_group_catdisp’ ), __( ‘Disp Cats’, ‘bp_group_catdisp’ ), ‘manage_options’, __FILE__, ‘group_catdisp_plugin_options’ );
    }
    add_action(‘admin_menu’, ‘group_catdisp_add_admin_menu’, 15);

    function group_catdisp_plugin_options() {
    if (!current_user_can(‘manage_options’)) {
    wp_die( __(‘You do not have sufficient permissions to access this page.’) );
    }
    $updated = false;
    //above this is php for creating admin page and below is printed onto admin page

    ?>

    <?php
    if ( !$options = get_option( ‘bp_gm_settings’ ) )
    $per_page = 10;
    else
    $per_page = $options;

    $args = array( ‘type’ => ‘alphabetical’, ‘per_page’ => $per_page );

    if ( $_GET == ‘name’ )
    $args = ‘alphabetical’;
    else if ( $_GET == ‘group_id’ )
    $args = ‘newest’;
    else if ( $_GET == ‘popular’ )
    $args = ‘popular’;

    if ( $_GET )
    $args = $_GET;
    else
    $args = 1;

    if( bp_has_groups( $args ) ) :
    global $groups_template;
    ?>

    <?php
    if ( !$group )
    $group =& $groups_template->group;
    ?>

    Category

    Categories

    You don’t have any groups to manage.

    <?php
    }
    ?>
    `

    The first two hard code a group by ID and display a selected wordpress category within that group. The last file is the useless one. I’d started hacking from one of @boonebgorges plugins with the idea of creating an admin screen from which groups could be linked to blog categories.

    I’ve run out of time for now to play with that further and so for now am just going to duplicate the first two files for another couple of groups which will work for my purposes.

    #93024
    nunomad
    Member

    Thanks for the suggestion, Roger, but I’m not sure it will work for me. The whole site is a membership site using s2Member, so s2Member needs to govern the functionality of WordPress and Buddypress in an integrated way.

    #93009
    Boone Gorges
    Keymaster

    (1) and (2) don’t require BuddyPress at all. For (2) you can use a custom post taxonomy or a custom post type (or plain old categories) to distinguish your own articles from your users’ content.

    As for (3), BuddyPress doesn’t have a rating system built in. There are a lot of WordPress rating plugins, and I’m sure one of them could be adapted to work with BP.

    #93006

    Ok, I couldnt see anything within my Error Log inside of my Dashboard with HostGator, so I’ve contacted their customer support & they’ve created a ticket to hopefully get me the error log.

    Any other ideas in the mean time? What file are all of the forums kept in so I could possibly see if the Forums folder is still there?

    I should also probably look into the Automatic WordPress Backup v2.0-RC1 backups that were created on the Amazon Cloud?

Viewing 25 results - 16,726 through 16,750 (of 22,685 total)
Skip to toolbar