Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 22,151 through 22,175 (of 22,713 total)
  • Author
    Search Results
  • #40251
    Lance Willett
    Participant

    Very cool and useful — thanks.

    #40224
    nicolagreco
    Participant

    Cool! Thanks burt

    #40223
    Per Søderlind
    Participant

    :-D

    #40218
    nicolagreco
    Participant

    You could wait the integration of bp in wp,

    or (i think it’s better) you could try copying some tables in your new mu install:

    example:

    copy wp_users to wp_users

    wp_postmeta to wp_1_postmeta

    wp_posts to wp_1_posts

    etc etc..

    that’s a bit difficult to do, maybe others could help you better than me.. :)

    Nicola

    #40173
    Gibcosta
    Participant

    unfortunately this did not work for me, i’d also like to use one wpmu install and run multiple separate domains with buddypress on a subdomain and bbpress, using the inove theme.

    see my post on wpmu forum

    https://mu.wordpress.org/forums/topic.php?id=11695#post-70149

    #40159
    cinnemon
    Member

    Thank you for your reply. As I noted earlier, I’m already running a WordPress blog network with active members. Incidentally, the README.txt file for WordPress actually uses the directory /blogs as an example:

    * If you want to have your WordPress MU installation in its own

    subdirectory on your web site (e.g. http://example.com/blogs/),

    rename the directory wordpressmu to the name you’d like the

    subdirectory to have and move or upload it to your web server.

    For example if you want the WordPress MU installation in a

    subdirectory called “blog”, you should rename the directory called

    “wordpressmu” to “blogs” and upload it to the root directory of your

    web server.

    I imagine this may be a problem for others who went in this direction. Are you saying that those of us in this situation are out of luck with BuddyPress unless we reinstall and try to import all of our users’ blogs into the new site?

    Thanks again, I do appreciate your time on this.

    Burt Adsit
    Participant

    get_bloginfo(‘wpurl’).”/wp-admin/profile.php

    should be replaced with a call to: bp_core_get_userurl($bp->loggedin_user->id) which is the url to the currently logged in user. You’ll have to declare ‘global $bp;’ someplace before that in the code.

    #40136
    Burt Adsit
    Participant

    Sounds like a job for wpmu forums. It would really get more attention there from those people who have lots of wpmu experience: https://mu.wordpress.org/forums/

    #40105

    Is there any way to get the WordPress Plugin “advanced axcerpt” to work here?

    #40091
    mspecht
    Participant

    Hi Kelly,

    Each blog uses it’s own theme so you will need to write your own actions to do this similar to https://mu.wordpress.org/forums/topic.php?id=8041 and http://premium.wpmudev.org/forums/topic.php?id=653 would be my guess.

    #40087
    hyrxx
    Participant

    there is a way to edit the users data, i have a plugin installed that allows you to go to users and then click a link and it logs you in as the selected user, obviously this means you can edit thier profile, the link only shows up for the site admin

    the plugin is: user switching – https://wordpress.org/extend/plugins/user-switching/

    the only annoyance is that once you switch users it means you must login again to get back to admin or watever, i.e. it doesnt allow switching back and forth between accounts

    it does help greatly though, hope this helps you

    #40041
    Sgrunt
    Participant

    yawn….early morning in Italy. If you first activate the facebuddy home theme, and then select site admin>buddypress>select theme>facebuddy it does not load? i seee that here all works: http://wordpress-blog.nl/

    please be sure to have downloaded the latest version of the zip (it was uploaded yesterday)

    #40021

    In reply to: nginx re-write rules

    Per Søderlind
    Participant

    I’m using this one (found it on mu.wordpress.org/forums). I’m having problems creating new blogs, but I’m not sure if it’s nginx causing the problem (it works fine with wpmu):

    server
    {

    listen 80;
    server_name DOMAIN.COM *.DOMAIN.COM;

    access_log /usr/local/nginx/logs/DOMAIN.COM.access.log;
    error_log /usr/local/nginx/logs/DOMAIN.COM.error.log;

    # rewrite rule for files

    location ~* ^.+.(xml|jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|midi|wav|bmp|rtf|js|swf)$
    {
    root /home/web/DOMAIN.COM/www;
    rewrite ^/files(/.*)$ /wp-content/blogs.php?file=$1 last;
    expires 10d;
    break;
    }

    # rewrite rule for sitemap under the lines that handles upload files

    rewrite ^(.*/)?sitemap.xml wp-content/sitemap.php;

    # rewrite errors

    location /
    {
    #auth_basic "Restricted";
    #auth_basic_user_file /etc/nginx/htpasswd;
    root /home/web/DOMAIN.COM/www;
    index index.php;
    error_page 404 = /index.php?q=$uri;
    }

    #send php requests to fast cgi

    location ~ .php$
    {
    fastcgi_pass 127.0.0.1:9000;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME /home/web/DOMAIN.COM/www$fastcgi_script_name;
    include /usr/local/nginx/conf/fastcgi_params;
    }

    }

    #40018
    sha_munira
    Participant

    thanks, its because im not using wordpress MU…silly mistake..haha

    #40010
    nicolagreco
    Participant

    if you add bp tables in the new db it’s not a problem :D

    #40008
    Ekine
    Participant

    Thanks for replying.

    Maybe I should try exporting from wp+mu and importing to wp without buddypress first and see where I am getting to.

    #40007

    In theory the idea is to be able to export from MU and import to .org, but I’ve personally never had much success with the import/export proceedure.

    #40004
    Andy Peatling
    Keymaster

    You should think of a home theme as just a standard WordPress blog theme. It is no different other than a few new files to handle directories.

    A member theme is a “BuddyPress” theme, and should probably be called that.

    You should treat them as two entirely different themes, your WordPress theme should have the styles and images for just the WordPress parts and your BuddyPress theme should have the styles and images for just the BuddyPress parts.

    You could of course still provide the two themes in one download package, but they should still work independently. It’s not a good idea at all to make the themes dependent on one another. Someone may want to use your member theme but keep their own blog theme.

    I’ll be writing more docs on this soon.

    #39968
    Jeff
    Participant

    Why does wordpress mu add “?ver=1.2.6” to jquery.js?

    I’m getting a 404 when clicking the ajax widgets (with permalinks on) … could the ?ver= cause this?

    #39939
    Sgrunt
    Participant

    hi john…no, any demo for now sorry: i’ve included a lot of screenshots for helping. BuddyDress is wordpress and not wordpressmu for now.

    #39934
    pietro28
    Participant

    johnjamesjacoby

    the problem is that if you install buddypress plugin automatly transform the permalink structure

    OLD STRUCTURE OF WORDPRESS MU (BlogID=1)

    mydomain.com/2009/03/13/hello-world/

    NEW Structure

    mydomain.com/blog/2009/03/13/hello-world/

    I want to mantain the OLD structure and when you install buddypress, if you go to SETTINGS -> PERMALINK SETTING is impossible to delete /blog/ for custom permalink Structure.

    ¿how can I change this for the old structure?

    #39927

    WordPress has always allowed for multiple ways to access a specific post, even if your permalink structure is setup in a specific way.

    Categories

    http://www.thelifeofjohn.com/rants/

    http://www.thelifeofjohn.com/category/rants/

    Posts

    http://www.thelifeofjohn.com/2009/03/the-web-world-has-gone-unordered-list-crazy/

    http://www.thelifeofjohn.com/rants/the-web-world-has-gone-unordered-list-crazy/

    More than one way to get to the same link, and both are valid, and both could lead Google down different paths to the same destination. Granted, this is on a non-MU install, but MU suffers the same fate, only with multiple blogs.

    Without having /blog or /news or /something there, now you’re opening up the risk of having overlapping post/page slugs. If you write a blog entry named “members” what would you want to happen? Goto the blog post, or BuddyPress’s members page? Multiple that times 100 individual minds blogging outside of your control, and you see how that can be dangerous.

    Trust me when I say that I understand what you’re saying, I do, and I can see how this could be something to consider when making the move to use MU and/or BuddyPress, but Google can recover quickly and so can your 5000 posts if they’re important and relevant. :)

    Also, just for fun, lets goto…

    http://delsolownersclub.com/blog/2009/02/09/del-sol-mugen-side-steps/

    and then…

    http://delsolownersclub.com/2009/02/09/del-sol-mugen-side-steps/

    Looks like both take you where you need to be?

    Not quite ready to mark this one green, but it looks like a correctly installed BuddyPress/MU won’t give you this problem…

    #39899
    gpo1
    Participant

    I want this done,Kaltura to port over to BP : https://wordpress.org/extend/plugins/all-in-one-video-pack/

    Would be a good answer to server loads because users can upload videos to 3rd party host and not yours that would save you server performance and storage issues!

    #39875

    In reply to: Blogs Using BP Theme

    sebastianmacias
    Participant

    Does anyone know what would be the best way to get this level of integration of blogs and buddy press?

    https://apeatling.files.wordpress.com/2008/06/blog.jpg

    I found that screenshot here: http://apeatling.wordpress.com/2008/06/12/new-buddypress-theme/

    Thanks,

    Sebastian

    #39846
    oldskoo1
    Participant

    +1 – Great read.

    Often i have moments of reflection on just how incredible software is becoming these days.

    I’m amazed at the collective effort that is put by people that usually just get involved because it makes them tick.

    I’m sure most of them / us have families and do a lot of this in spare time. That is impressive.

    The best software is always produced out of communities or dev teams that place their trust in a community to help out. Most of the time the people involved are the community which is great compared to what was happening 20 years ago.

Viewing 25 results - 22,151 through 22,175 (of 22,713 total)
Skip to toolbar