Search Results for 'wordpress'
-
AuthorSearch Results
-
December 30, 2009 at 6:15 am #59724
In reply to: 404 Page Not Found Issues – Mod Rewrite
rahulukil
Participanti m also having the same problem and yet not solved cah anyone help me.
I have installed WordPressmu 2.8.6 and its workin fine all alone now after installing plugin Buddypress 1.1.3 and changing the themes by moving the bp-themes to wp-content/themes except the home page rest all other links are showing…
The requested URL /wordpressmu/linkname(say blog or member) was not found on this server.
404 not found…
What to do?
Plz HElp
December 29, 2009 at 10:57 pm #59705In reply to: 404 Page Not Found Issues – Mod Rewrite
houmie
ParticipantAhh now I understand what the problem is. many thanks for that. My WordPress Mu wasnt actually working in first place, and had nothing to do with BuddyPress.
However the question is; can I – being hosted by GoDaddy Windows Economy – access the config file of the webserver in order to make this little change?

Many Thanks for help,
Houman
December 29, 2009 at 6:50 pm #59692@mercime
Participanthttps://wordpress.org/showcase/flavor/buddypress/
Maybe developers of those sites can be contacted or interviewed to give more info.
December 29, 2009 at 6:27 pm #59688Paul Wong-Gibbs
KeymasterFrom the recent SitePoint podcast.
Andy Peatling said:
The BuddyPress.org site is actually over a million users because it’s connected to the main WordPress database/user database. It’s obviously not one million active users, but there is a fair few thousand active users every week, multiple thousands of users every week.
Some of the other standalone websites – testbp.org is actually over about 14,000 users now. TastyKitchen, which is which is another site using BuddyPress for recipes used in cooking, they’re around 20,000, I think.
Check the full podcast on http://www.sitepoint.com/blogs/2009/12/21/podcast-41-buddypress-with-andy-peatling/
December 29, 2009 at 5:02 pm #59680In reply to: how to access to bbpress admin from buddypress??
@mercime
ParticipantYou cannot use the admin panel of bbPress if you use the one/two click BuddyPress installation. If you want a bbPress admin panel and want to install bbPress plugins, you need to install bbPress externally, then use the WordPress integration plugin, then you go to BuddyPress Forum component and click on “I want to use exisiting bbPress forum”
vanicon
ParticipantVery sorry for me, I waited too long for this moment and when I found out was very glad, really, I was not able to appreciate the beauty of it on a regular wordpress before the end of 2009. If I’m your first rabbit max@vanicon.ru subject to this address ready for any tests. Believe me it is very necessary.
December 29, 2009 at 12:43 pm #59657In reply to: Twitter Connect… Anybody?
gpo1
ParticipantWell, most twitter users don’t have a good blogging platform ,so microblog and use a very good blog platform.
So more choices for the site owner.. I don’t feel the need for FB user to use wordpress cos they have a many apps (crap) on facebook already than twitter !
December 28, 2009 at 8:09 pm #59616In reply to: Publishing documets to a group
danbpfr
ParticipantSorry for bumping this old post, but life is evoluting…
Such a plugin exist now:
https://wordpress.org/extend/plugins/buddypress-group-documents/
December 28, 2009 at 5:12 pm #59612writenowrong
MemberSpeaking of your Achievements plugin, do you plan on offering an update that allows us to make new achievements without editing the source code?
Feel free to email me back if it helps.
December 28, 2009 at 4:27 pm #59611In reply to: Making Buddypress a Social Network for non-bloggers?
Bowe
ParticipantThere is also a solution for that.. It’s called Community blogs: https://wordpress.org/extend/plugins/bp-community-blogs/
From the plugin description:
By activating the Community Blogs plugin, Administrators can give immediate registered user status to any member of their BuddyPress enabled site on the blogs they choose. All the member has to do is visit the blog. The user is silently added as a registered user of that blog. Administrators can choose the role the new user has. Either Contributor or Author. Admins can give access to all users or users from specific BuddyPress groups.
As soon as a (registered) users visit the Blog (in your case Community Voice page) it automatically gets added as an author and is allowed to post! Great huh?
December 28, 2009 at 12:42 pm #59597In reply to: buddypress = Content Aggregator
December 28, 2009 at 11:58 am #59595In reply to: Can I use Page Templates? for groups, members, etc
Rian Rietveld
ParticipantHi,
First of all: thanks for BuddyPress, great work

I’m building a new template for my BuddyPress site, but for some reason Ican’t get the custom template pages working. I copied an existing archive.php file to links.php,
put
<?php
/*
Template Name: Links
*/
?>
at the top of the code and put the file into the sn_parent directory.
When I add a new page in admin, I’m not able to select the template of the new file. Is this different then WordPress? Or am I doing something wrong.
December 28, 2009 at 11:16 am #59590In reply to: buddypress = Content Aggregator
gpo1
ParticipantI feel that maybe the life-stream should hacked or this FYI: https://wordpress.org/extend/plugins/complexlife
because it a simple and powerful plugin,and different from the other feed aggregator…
December 28, 2009 at 10:34 am #59589In reply to: Donations on BP.org, what do you think?
Bowe
ParticipantI think that would be a very good idea Andy.. It would mean a more centralized way to discuss plugins and with the latest plugin release Group Documents: https://wordpress.org/extend/plugins/buddypress-group-documents/ you can even offer the plugins for download. Looking forward to it!
December 28, 2009 at 5:01 am #59581In reply to: Help with Child Theme
Hikari
MemberHello guys.
I’ve just started developing a child theme for a theme I’m almost finishing developing and I got frustrated with this same behavior.
I will try to explain it better. As I’ve noted, WordPress doesn’t see the child theme as the actual theme, so
bloginfo('template_directory')will return the parent theme.BUT, if you faced this situation you already know that the sole unique parent theme’s file that is not inherited by child themes is
style.css, which is the only file a child theme is needed to have. If we want to use parent theme’sstyle.csswe must import it using@import url(../parent-theme-folder/style.css);That’s why
bloginfo('stylesheet_directory')returns the child theme path. As a record, template_url also refers to the parent theme.I’m not sure of that, but I believe we can nest themes on a list, having THEME-1 as the root, THEME-2 as its child implementing some new extra stuff and THEME-3 having THEME-2 as its parent and adding a few more features. That’s not as impossible to happen as some may thing, I’ve already seen a few Thematic’s child themes, and if you wanna use any of them and do a few changes to their CSS, having 2 nested child themes is really possible, if WordPress supports it of course.
And with that we may end up with a now real problem: template_directory points to top parent theme, and stylesheet_directory points to the bottom child theme… Probably middle child themes will break when they try to access their files using stylesheet_directory and they are not found…
WordPress really needs to solve this, they should implement something like
templatedir('theme-name'), where we can access any theme we want, even classic and basic…For now what I’m gonna do is use PHP constants. My parent theme already has its:
define('THEME_PREFIX_PATH',bloginfo('template_directory'));And for my child themes I’ll do the same using stylesheet_directory. Doing so, if someday WordPress gives a final solution for this mess, we’ll just have to use it on this constant and all our child themes will be fixed.
It’s sad but seems to be the most maintainable solution I’ve found.
December 28, 2009 at 3:23 am #59574In reply to: Cannot create blog since upgrade
Xevo
Participant@ pcwriter: Did you remove the kubrick theme from your theme folder (standard wordpress theme). I had the same problem a while back, solved it by placing the kubrick theme back in the themes folder.
December 27, 2009 at 6:45 pm #59562In reply to: Profile Field Setup href Bug?
Paul Wong-Gibbs
KeymasterReplying to six month old threads that have been marked as ‘resolved’ (Green traffic light) will mean most people will skip the thread.
But, https://wordpress.org/extend/plugins/custom-profile-filters-for-buddypress/
December 27, 2009 at 6:39 pm #59561In reply to: WPMUDEV Theme question for someone?
Andrea Rennick
ParticipantJust a note to say that I tried looking at Atahualpa to modify it for use with Buddypress, and the code is an absolute nightmare to work with. And it’s a table-based layout.
Yes, it has a lots of options. But if you want to mod it, ugh… There’s loads of other themes out there with options pages.
edit: to answer your original question, in taking the navigation on the right, just move the code in the theme into a nav spot where you want in the header, and style it to go horizontally.
It’s not really BP specific, or even MU-specific. It’s all a matter of styling.
December 27, 2009 at 2:05 pm #59548In reply to: Single WP supported on latest trunk
Andy Peatling
KeymasterI’ve added the WP abstraction code that will allow BuddyPress to run on all WordPress versions to the trunk. This code will more than likely be needed even after the merge, so I want to get it in there and up and running for 1.2.
I’ve had it going for a while locally, so it seems silly to sit on this until 1.3. After the merge I will tweak where needed, but I don’t anticipate much change since the multiblog features of 3.0 will simply be an on/off setting.
December 27, 2009 at 10:44 am #59541In reply to: Making Buddypress a Social Network for non-bloggers?
Paul Wong-Gibbs
Keymaster@David – downloads plugin at https://wordpress.org/extend/plugins/buddypress-group-documents/. I haven’t tried it yet, but it looks good.
December 27, 2009 at 4:37 am #59533In reply to: Making Buddypress a Social Network for non-bloggers?
Mike Pratt
Participant@David – fair point. fyi, group notifications: https://wordpress.org/extend/plugins/group-forum-subscription-for-buddypress/
December 27, 2009 at 4:13 am #59532In reply to: WPMUDEV Theme question for someone?
gsmith6673
ParticipantSuzanne, I have another WP blog and use: https://wordpress.org/extend/themes/atahualpa
I’ve been over chatting on their forum and it looks like no one has formed a workable solution yet for a versatile design that effectively integrates BP.
I’ll keep looking as I’m not a coder but think I represent a typical user that wants to incorporate a flexible format. The Atahualpa is a good example…very versatile.
The BP plug-in has a lot of offer when thinking of the community theme.
see me here as well: http://www.greenbuildinginspector.com
gs
December 27, 2009 at 3:23 am #59531In reply to: What you don't like about BuddyPress
peterverkooijen
ParticipantAbout how member/profile data is stored in the database, Andy Peatling wrote:
I’ll be reworking the schema in 1.2, interested to hear your ideas.
I sent you a lengthy mail through the system, again describing the problem as I see it, but probably not enough solutions. I came across this in another thread:
I’m now using another 3rd party plugin for membership to the site (WP eMember). While it has its own table, it also creates a matching WP user for each of the members it creates.
I haven’t tested the various commercial membership plugins yet (Memberwing, Wishlist, …), but they must all have their own solutions for the problem. I’m curious what their database tables look like…
December 26, 2009 at 5:05 pm #59520online
ParticipantThanks Jeff — good question!
1. Which version of WPMU are you running?
WordPress MU 2.8.6.
2. Did you install WPMU as a directory or subdomain install?
Directory
3. If a directory install, is it in root or in a subdirectory?
Subdirectory
4. Did you upgraded from a previous version of WPMU? If so, from which version?
Nope.
5. Was WPMU functioning properly before installing/upgrading BuddyPress?
Yea, mostly (except that I had to install plugin to dealt with “www” subdomain issue [see above / top] )
6. Which version of BuddyPress (BP) are you running?
Latest (1.1.3)
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?
Yea, “GD Star-Rating” + “Visitor Maps and Who’s Online” (I guess I could do without this one if Buddypress would work
)9. Are you using the standard BuddyPress themes or customized themes?
Standard
10. Have you modified the core files in any way?
Nope.
11. Do you have any custom functions in bp-custom.php?
Nada.
12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
I clicked to istall forums, but haven’t touched that since (absolute beginner with that)
13. Please provide a list of any errors in your server’s log files.
None (at least not that I can see)
14. Which company provides your hosting?
“Freenet.DE” (I think somehow affiliated with either GMX or Strato
)Bonus: trying to set it up here >> http://saarpfalz.org/x/
December 25, 2009 at 5:40 pm #59496In reply to: Unwanted profile/register page redirects
tobiaslohr
Memberhi,
i have a similar problem. when i access the registration page at http://<somehostname>/register i get a HTTP 302 response code and a redirect to the start page.
i’m usingthe following setup:
– buddypress 1.1.2
– wordpress mu 2.8.6
i’m sure, that i followed the installation instructions correctly step by step. i double checked it. the only thing i changed is the theme. however, also with the default theme activated (which i haven’t touched) the issue remains.
does anybody have an idea, why this is?
-
AuthorSearch Results