Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 30,651 through 30,675 (of 32,678 total)
  • Author
    Search Results
  • #50495

    In reply to: About blog domains

    Felix J
    Participant

    Got helped in the wpmu forum. I would need a wpmu plugin to do what I want.

    Oh there is one thing more…

    Now I just need to know if BuddyPress can handle these sorts of plugins for example https://wordpress.org/extend/plugins/yet-another-multi-site-manager/ , if not what do I need to do so it can?

    Please tell me.

    Thanks

    #50481

    In reply to: About blog domains

    peterverkooijen
    Participant

    I think that’s very much a WPMU issue.

    catinw12
    Participant

    Hi Everyone,

    Buddypress wouldn’t let me login with my old name so Catincoach is out and Catinw12 is in.

    I posted this question a while back and didn’t get an answer. Is there a way to change the coding so that the link in the message/friend/group invitation email notification goes to http://www.xyxy.com/buddypress/”….”?redirect_to=http://xyxy.com/Buddypress/Buddypress/members/xyzmember/messages/

    as opposed to this:

    http://xyxy.com/Buddypress/wp-login.php?redirect_to=http://xyxy.com/Buddypress/Buddypress/members/xyzmember/messages/

    Ideally, I would like to change the coding in the email notification so that it begins as http://www.xyxy.com/…. but my efforts to find that have been futile.

    Is this something for the WordPress MU forum?

    Thanks,

    Brian

    #50421

    In reply to: Allowed memory size?

    Jeff Sayre
    Participant

    Since you had single-user WordPress installed before, I’d suggest doing a clean install. This means making sure that you delete both the single-user WP and the newly installed WPMU files. Also, delete your MySQL database and start with a new one.

    I assume that you do not have any data yet. If that is correct, then you can safely proceed down this road. If you do have important data in the MySQL DB, then you should back it up first.

    Also, you should use a separate MySQL DB for WPMU. Do not use the one that you are already using for single-user WP.

    Follow these instructions for help on installing WPMU. Make sure you read through all instructions linked below before beginning the install:

    1. Download BuddyPress from here
    2. https://codex.buddypress.org/getting-started/installing-wordpress-mu/
    3. Read the readme.txt file that comes with the WPMU download

    Then, once WPMU is installed and functioning properly, follow these instructions for help on installing BuddyPress.

    1. https://codex.buddypress.org/getting-started/installing-buddypress/
    2. Read the readme.txt file that comes with the BuddyPress download

    #50416
    Mariusooms
    Participant
    peterverkooijen
    Participant

    The phplist-dual-registration plugin also takes input from registration. It has this function:

    function subscribe($input_data) {
    if (!wpphplist_check_curl()) {
    echo 'CURL library not detected on system. Need to compile php with cURL in order to use this plug-in';
    return(0);
    }
    // $post_data = array();
    foreach ($input_data as $varname => $varvalue) {
    $post_data[$varname] = $varvalue;
    }
    // Ensure email is provided
    $email = $post_data[$this->email_id];
    // $tmp = $_POST['lid'];
    // if ($tmp != '') {$lid = $tmp; } //user may override default list ID
    if ($email == '') {
    echo('You must supply an email address');
    return(0);
    }
    // 3) Login to phplist as admin and save cookie using CURLOPT_COOKIEFILE
    // NOTE: Must log in as admin in order to bypass email confirmation
    $url = $this->domain . "admin/";
    $ch=curl_init();
    if (curl_errno($ch)) {
    print '<h3 style="color:red">Init Error: ' . curl_error($ch) .' Errno: '. curl_errno($ch) . "</h3>";
    return(0);
    }

    $post_data='action=subscribe&group_ids[]='.$this->lid.'&email_address='.$this->email_id.'&firstname='.$this->name_id;

    Is the $post_data line what I need? Something like this?:

    function subscribe($input_data) {

    // $post_data = array();
    foreach ($input_data as $varname => $varvalue) {
    $post_data[$varname] = $varvalue;
    }

    $email = $post_data[$this->email_id];
    $name = $post_data[$this->name_id];
    }

    And then I could use $email and $name in my function to “do stuff” with?

    Or can I use $post_data[$this->email_id] etc. directly? Is that the simple answer to my original question?

    Why is the $post_data commented out?! Don’t I need it?

    Do I need other pieces to make it work? For which fields would this work; only those from wp_users or xprofile as well? What about custom fields, including the real name/first name/last name mess?

    #50410
    Jeff Sayre
    Participant

    Luc-

    Many people have asked the same question. The good news is that there are plans to make BuddyPress compatible with single-user WordPress in the future.

    We’re not sure when that will happen, so give it time and keep checking back.

    #50405
    peterverkooijen
    Participant

    Here’s a very good one. It uses jQuery, which is included in WordPress.

    Once you have the javascript and css in place the menu is not dramatically different from what comes with default templates – ul li etc.

    #50397
    plrk
    Participant

    If you can build a WordPress theme, building a BuddyPress theme is not very hard – it is just larger.

    #6058
    grosbouff
    Participant

    Hello, I’m creating a classifieds component and I have an important question here…

    Actually, I use those urls :

    • …/wordpress-mu/classifieds (directory listing)
    • …/wordpress-mu/classifieds/test666 (single classified)
    • …/wordpress-mu/members/myname/classifieds/my-classifieds (user classifieds)
    • …/wordpress-mu/members/myname/classifieds/create (creation)

    Now I would like to be more precise for directory listing.

    I have three ways of filtering, “browing” classifieds :

    • “action” (searching / proposing)
    • type (job, services, etc)
    • category (garden, computers, etc)

    Here’s my question :

    How to deal with this for urls ?

    e.g;

    ../wordpress-mu/classifieds/searching/job/computers

    should show every classified where

    • someone is searched (not “proposes”)
    • for a job
    • in computers/

    [current_component] => classifieds [current_action] => searching [action_variables] => Array ( [0] => job [1] => computers

    The problem is that the url could also be

    ../wordpress-mu/classifieds/job/computers

    • (someone is searching or proposing)
    • for a job
    • in computers/

    [current_component] => classifieds [current_action] => job [action_variables] => Array ( [0] => computers

    Or just

    ../wordpress-mu/classifieds/job/computers

    • any classifieds related to the computers category
    • [current_component] => classifieds [current_action] => computers

      You know what I mean ?

      So.. Have you ideas on how I could build a function to filter my content based on the url given ?

      Take all what’s after /classifieds/ (current_action & action_variables), and check the slug for everything to define if it’s an action, a type or a category ?

      But that mean a lot of SQL requests…

      Of course I could make it like this

      ../wordpress-mu/classifieds/action/searching/type/job/category/computers, but it will be rather ugly…

      Need your advices ! :)

      Thanks a lot guys !

    The idea with the included bphome/bpmember themes is to be a skeleton framework to build off of. It shows how to use all of the included functions and loops in a way that makes the output of each element clear and concise.

    It might not be the cleanest theme available, but it’s a great start if you’re learning BP or you need to understand what files do what for what reasons.

    In my opinion, an experienced BP developer should be able to create a unique template starting from the bphome/bpmember themes and working outwards, within a few days. There’s no doubt that BP themes are extremely involved, but that’s likely to change as the platform matures and WordPress better supports theme locations and child themes.

    Long story short, you’re probably right, but don’t expect the included theme to get much fancier. (Look at WordPress and bbPress for example. Both included original themes are very primitive in their designs.)

    altaran
    Participant

    Hi all,

    Would a CSS designer be easily able to change the present horizontal menus into drop downs? More generally, is building a Buddypress theme more difficult than making one for WordPress?

    Thank you

    #50386
    coldjippie
    Participant

    I have to install WordPress MU in the root directory because I want that a domain point to the buddypress blog (/community), so I got the same error. If I install WordPress MU in a folder all works fine but then the visitors see the right url (/net/wp) and not the domain. Could it be that this is a buddypress bug?

    #6054

    The title of this post makes it a little hard to grasp what I’m talking about, but in short this is a really quick and easy way to make your own hard coded BuddyPress page without going into the WordPress page admin.

    In this example we’re going to make a page called “fun” that you can visit at domain.com/fun.

    Put the following In your home theme’s functions.php file…

    define('BP_EXAMPLE_SLUG', 'fun');
    function bp_show_example_page() {
    global $bp, $current_blog;

    if ( $bp->current_component == BP_EXAMPLE_SLUG && $bp->current_action == '' ) {
    // The first variable here must match the name of your template file below
    bp_core_load_template( 'fun', true );
    }
    }
    add_action( 'wp', 'bp_show_example_page', 2 );

    Now you need to create a fun.php file (mentioned above) in your home theme directory, and inside that file put…

    <?php get_header(); ?>
    <h3>Hello</h3>
    <p>I am an example page.</p>
    <?php get_footer(); ?>

    This could be used to make custom a custom login page, or whatever you’d like…

    All we did here was swipe the exact code BP already uses for the /register and /activate pages, and simplify it for our own use.

    Have fun!

    #50380

    In reply to: Page plugin?

    Kunal17
    Participant

    Jfcarter,

    Have a look at the pods plugin for wordpress at http://pods.uproot.us/

    I am trying to use it to create company profiles. Maybe we can combine efforts.

    #50368

    In reply to: Allowed memory size?

    Paul Wong-Gibbs
    Keymaster

    You have to download and install WordPress MU – https://mu.wordpress.org/

    #50364

    In reply to: Allowed memory size?

    Jeff Sayre
    Participant

    It looks like you are trying to install BuddyPress under single-user WordPress.

    BP currently requires the multi-user version of WordPress. Read this and follow the link in point one: https://codex.buddypress.org/getting-started/installing-buddypress/

    #6045
    roscosys
    Participant

    Hi, I had everything working on Darkpress theme, I then decided to switch back to the default theme and customise this, the home page works, but when on the members page, it seems there is no stylesheet.

    I have latest versions of WordPress MU & Buddypress installed. (Installed only yesterday)

    I also have “bpmember” folder in “wp-content/bp-themes/

    EDIT: GOT IT WORKING!! THANKS

    #50358
    r-a-y
    Keymaster

    Some people have suggested installing WP Hashcash to block signups, though I haven’t tried it myself.

    But you’re saying that someone signed up on your BP install with the Facebook Connect plugin?

    So it sounds like a problem with the FB plugin… not sure though.

    Sounds like DJPaul suspects the same thing!

    #50353
    Jeff Sayre
    Participant

    Are you on a shared hosting plan?

    I suggest that you contact your hosting company and ask for the assistance in figuring out what is going on.

    #50352
    Jeff Sayre
    Participant

    Also, Automattic’s VIP hosting is provided to just a very few, select, large clients. It is not something you can simply decide to purchase.

    So, my guess is that, yes, Automattic will offer BuddyPress installs to their very few VIP clients, but it will not be available to the vast majority of users.

    http://en.wordpress.com/vip-hosting/

    #6043
    abcde666
    Participant

    I am wondering if WPMU is really loading that slow ?

    See this story about improving loading times:

    http://www.gossamer-threads.com/blog/gt-and-lohudcom-wordpress-optimization/

    #50344
    coldjippie
    Participant

    Suprise, suprise! It’s running. I’ve installed WordPress MU in a folder in a folder and now it’s running. But don’t ask me why the root installation doesn’t work with buddypress in a folder.

    #6039
    thebloghouse
    Participant

    Hi all

    I am currently exploring various WordPress MU / BuddyPress hosting / mangement options for a client and wondering if there is anything in Auomattic’s plan’s to offer a similar service to the VIP Hosting that is currently offered for WordPress but for MU / BuddyPress?

    I am just about to email Automattic direct but thought a post here might get a quicker response.

    Cheers

    #50323
    ajonesma
    Participant

    Just go to http://ww2.toksta.com and create an account and setup your chat the way you want it and click ‘Create Script’ and choose ‘WordPress’, upload it to the /wp-content/plugins dir and follow the readme file directions. It does work because I have it working on my site right now.

    http://jjunltd.com

Viewing 25 results - 30,651 through 30,675 (of 32,678 total)
Skip to toolbar