Search Results for 'wordpress'
-
AuthorSearch Results
-
July 23, 2010 at 8:27 am #86731
hachimaki
MemberJuly 23, 2010 at 2:57 am #86715Pisanojm
ParticipantHey @techguy, I dropped some of the users that showed up in the query (not having validated) from the wp_users table, but then I noticed that there was a couple discrepencies with the user numbers on the user admin… so I did some checking and noticed that their user_id was also in the users_meta and xprofile_data… so I cleared there particular user_ids from those tables… and everything went back to “normal”….
So I learned a good lesson here…find them with the query above (which works perfect) and then pull them from the the back_end of wordpress so all the related table data gets cleared….
Everything is working fine now… but I’m slightly worried that I messed something up because those particular data was cleared. Thoughts?
I backed everything up yesterday (but not before I pulled the data 3 hours ago)… another lesson there.
July 22, 2010 at 11:04 pm #86698Philo Hagen
ParticipantHave you set the timezone for your site in your WordPress admin settings? Look under general settings and scroll up past all the UTC stuff to find the city near you if you haven’t done so already.
July 22, 2010 at 11:00 pm #86694In reply to: aligning buddypress with rest of page
Philo Hagen
Participant@fennelandfern I have a three column site with customized column widths (www.hooping.org). Looking at the page you have linked it seems pretty clear to me that the content in your sidebar is wider than the default settings your sidebar are set for. Even looking at your index page makes this clear as you have ads that are hanging off over the edge. So this isn’t just a Buddypress issue, this is an issue for your doing with WordPress as a whole. It looks like your ads are probably 300k in width and I’m thinking that your sidebar is set to be something like 260k in width. Consequently you need to either a) change the size of your ads so that they fit in the space allotted for them, or b) change the size of your sidebar to make it wide enough for your content to be displayed – change the CSS width for your sidebar. If you don’t know CSS get someone to help you that does.
July 22, 2010 at 10:51 pm #86691In reply to: Search Query and MySQL help
r-a-y
KeymasterI’m not a SQL guy myself, but because the data is divided in separate tables, look into constructing a select join query.
See how it’s done in /bp-xprofile/bp-xprofile-classes.phpAlso take a look at the BP Member Filter plugin or the BP Profile Search plugin.
July 22, 2010 at 8:54 pm #86674In reply to: BP-FBConnect not working with buddypress 1.2.3
jordashtalon
Member@kagliostro i’m having the same problem as you, I could get WP-FB-Autoconnect working before but with WordPress 3.0 and Later versions of BuddyPress i’m having no luck whatsoever. What is Gygia?
July 22, 2010 at 5:54 pm #86658In reply to: Groups or Forums as Home Page
Sofian J. Anom
Participant@hnla, “each in a separate blog” meant the group on a blog, and forums on the other blogs.
Actually, with WordPress Multisite, I want to make BuddyPress active across the entire site/blog, and I want to make the home page on every blog is different: blog posts on the blog 1; activity on the blog 2; groups on the blog 3, forums on the blog 4, etc.. On my site only me (admin) who can create blogs.
I’ll try using a loop, though I have not quite understand how to use it.
Thanks a lot.
July 22, 2010 at 5:17 pm #86654In reply to: Changing BuddyPress Base URL
tejinder
MemberThanks alot for suggestion.
But now i have another problem,
Error: Your WordPress address must match your Site address before creating a NetworkIs there bybass or trick for this?
July 22, 2010 at 3:47 pm #86635In reply to: New Buddypress Groups design.. Group Hierarchy
firetag
Participant@vshafer well I just released it now.. and no its not its not a premium plugin its a freemium… lol bad joke but heres the link https://wordpress.org/extend/plugins/bp-group-categoriestypes/ …. its my first upload to the repo so tell me if the download doesn’t work or something
July 22, 2010 at 2:12 pm #86553Joe
Participantso there is no way to escape this? I ask because my site is not based around a user community, that is just one feature. Therefore, I don’t want every registration to be based around buddypress.
One thing that might help matters –
I have the buddypress part of my site set up on it’s own wordpress install (multisite 3.0). Maybe I can make it so the buddypress registration isn’t applied to the entire network, but just the buddypress site.I already tried adding the following line to my wp-config:
define( ‘BP_ROOT_BLOG’, 2 );However, it hasn’t seemed to make a difference.
Anyone?
Thanks again.July 22, 2010 at 1:16 pm #86621In reply to: WordPress 3.0 + Buddypress — User Creation Problems?
rich! @ etiviti
ParticipantJust some basic questions: multisite (which is important as a different process)? registration steps completed? data in mysql for a failed user signup? (check _users->”user_status” and _usermeta->meta_key->”activation_key”)
I was pointing out the php file and functions – if you wanted see the flow of the signup. (wp_insert_user, setting user_status, generating and saving activation_key, sending activation email to user). You mentioned “My install of wordpress does send emails successfully, until I activate Buddypress (then it breaks).” BuddyPress uses the same WordPress functions to send an email – so nothing changes in that regard but maybe some weird oddity in your setup causing a null email address or some other unpredictable result.
July 22, 2010 at 1:10 pm #86619In reply to: WordPress 3.0 + Buddypress — User Creation Problems?
Hugo Ashmore
ParticipantRich was asking whether you could confirm that an important stage was definitely being completed correctly as that helps narrow down the areas to troubleshoot.
Using a tool such as phpMyAdmin (MySQL DB manager) find the table called ‘wp_signups’ and confirm that emails that should have been sent and received do indeed have a valid set of entries for registration i.e activation key.
July 22, 2010 at 11:41 am #86615In reply to: WordPress 3.0 + Buddypress — User Creation Problems?
JustinCA
ParticipantAs I said to Paul… Being “a bit off-putting” is not my normal MO, but the original post was written two weeks ago and the only thing that’s happened since is a whole bunch of people have said “I have the same problem”. It hasn’t been until I was “a bit off-putting” that someone actually replied to the original question/post.
Enough about that.
Sorry, but your questions are a bit over my head. Any and all PHP coding I know is completely self taught and I’m not far enough along to grasp what you’re asking me to look for.
At any rate, thanks for the response.
-Justin
July 22, 2010 at 11:24 am #86613In reply to: WordPress 3.0 + Buddypress — User Creation Problems?
rich! @ etiviti
Participanteveryone here is a volunteer and may not read every single thread or know the answer to every unique issue. probably does not help when being a bit off-putting.
All sign-up steps work until the confirmation message? what is the status in the users table for the failed signup user? does each failed signup user have an activation key in the usermeta table? if so – that at least tells us the
bp_core_signup_userprocess works upbp_core_signup_send_validation_email(which only builds the email message and executes wp_mail() )have a look in buddypress/bp-core/bp-core-signup.php at the functions and steps.
if you are using multisite, then it is a different process
July 22, 2010 at 10:59 am #86610In reply to: WordPress 3.0 + Buddypress — User Creation Problems?
JustinCA
Participant@DJPaul
It’s funny you should say that when it wasn’t until two weeks later (after the original post) that a moderator / support team member (you) chimed in on this, and that was because someone (me) wasn’t very polite (intentionally). So it looks like rudeness, not my normal MO, went a little bit further than politeness (this time), but served its purpose none the less. Thanks for responding.Now, to answer your question / statement…
1.) My hosting environment is linux, not windows.
2.) My install of wordpress does send emails successfully, until I activate Buddypress (then it breaks).
3.) The emails aren’t going to SPAM, lol. That was the first thing I checked (on 5 different email accounts).
Again, thanks for the response.
-Justin
July 22, 2010 at 10:58 am #86609In reply to: WordPress 3.0 + Buddypress — User Creation Problems?
JustinCA
Participant@pisanojm
1.) 4xjunction.com
2.) WP 3.0 and BP 1.2.5.2
3.) PHP 5.x
4.) Yes, they allow PHP mail (it works fine until Buddypress is activated)
5.) Yes, I’ve tried with all plugins off
6.) It works with the default as well as any other theme, except BuddypressThanks for the respnose,
-Justin
July 22, 2010 at 8:13 am #86599In reply to: Hide/Remove dashboard from normal members
Sofian J. Anom
ParticipantTry this plugin: https://wordpress.org/extend/plugins/adminimize/
July 22, 2010 at 6:57 am #86595In reply to: Hide/Remove dashboard from normal members
B.
ParticipantLooks like I spoke to soon. Peters Login Redirect Plugin (https://wordpress.org/extend/plugins/peters-login-redirect/) takes advantage of the filter added in 2.6.2. You can read an article about the plugin here http://www.theblog.ca/wplogin-redirect. If anyone else has other ideas let me know. For now I’m just going to send all subscribers to edit profile page upon login from the wp-admin section.
July 22, 2010 at 6:20 am #86591In reply to: Have buddypress not on the root site
r-a-y
KeymasterCheck your front page settings:
https://codex.wordpress.org/Settings_Reading_SubPanelJuly 22, 2010 at 6:15 am #86588In reply to: Have buddypress not on the root site
Reginald
ParticipantI installed buddypress into my main site. I didn’t like the combination and uninstalled with the intention of reinstalling as a sub domain installation. Now my site is looking for http://www.environmentaide.org/activity. Activity no longer exists and the plugin has been removed. I’ve looked everywhere for the pointer to revert to my WordPress default domain.
How do I remove the activity pointer and move on to reinstall buddypress as a separate site?July 22, 2010 at 6:09 am #86587In reply to: WordPress 3.0 + Buddypress — User Creation Problems?
Paul Wong-Gibbs
Keymaster@justinca
It’s the kind of support forum where politeness goes a long way. The only issue I’m aware of with BuddyPress page links is that some installs running on IIS need some extra stuff added; that’s vague because I’m not an IIS user, I don’t have access to a machine to dev on, and I don’t know about the typical Microsoft hosting environment.If your install of WordPress can send emails successfully, then BuddyPress can too. We can’t be held responsible for what emails are marked as spam by mail servers.
You have also told us no details about your setup; please see https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/when-asking-for-support/
July 22, 2010 at 4:45 am #86575In reply to: WordPress 3.0 + Buddypress — User Creation Problems?
Pisanojm
ParticipantJustin what is your Website address?
What version of BP and WordPress?
What version of PHP?
Does your host allow you to send PHP mail?
Have you tried with all plugins off?
Does it work with the default BuddyPress Theme?
This all works fine for me with BP 1.2.5.2 and WP 3.0 using…July 22, 2010 at 4:29 am #86572In reply to: WordPress 3.0 + Buddypress — User Creation Problems?
JustinCA
ParticipantWhat kind of support forum is this? If you google about this “buddypress activation email problem” it’s all over the !@#&% place, and no one has an answer? I’ve seen forum after forum post, thread, question, whatever and well over a dozen “fixes”, none of which have worked for me.
This is absurd. Registrars not getting their activation emails and, as a result, not being able to log in, basically renders Buddypress USELESS. I wished I’d known about this before I spent the last three !@#&% days customizing my site.
Here’s an idea… Don’t release this crap without being 110% sure that the most important feature (people being able to become members) works.
And at the very least can you guys answer the question… How can we fix the problem?
July 22, 2010 at 2:27 am #86568In reply to: WordPress theme vs BuddyPress theme
thekmen
ParticipantThe only issues you should have with a WP theme is all the BuddyPress CSS, easy enough to fix but can require lots of edits depending on the theme.
To include the required BuddyPress JS & ajax functions in any WP theme, all you need to do is add something like the following to your themes functions.php file
require_once( BP_PLUGIN_DIR . '/bp-themes/bp-default/_inc/ajax.php' );
function theme_loaded_init() {
wp_enqueue_script( 'bp-js', BP_PLUGIN_URL . '/bp-themes/bp-default/_inc/global.js', array( 'jquery' ) );
}add_action('wp_head', 'theme_loaded_init', 5);
You would also need to add the BuddyPress template folders to your theme & add either the default buddypress & admin bar css to your css with edits or include the defaults in the above theme_loaded_init function.
also note, some themes that include custom JS can conflict with BuddyPress JS, if the theme is coded properly it should be easy to remove those conflicts on BuddyPress pages.
July 22, 2010 at 2:11 am #86567In reply to: WordPress theme vs BuddyPress theme
B.
ParticipantThanks everyone, I was going to say after the first two post that I was going to jump into Child Theming something I’ve wanted to do for a while. The second two post sound more like using the theme pack and making a standard theme may be a better option. Ah, I’m back where I started! I think I’m leaning towards child theme for two reasons 1) it’s something I’ve wanted to learn and 2) It has all the BP ajax, CSS, etc.
Thanks for your input thus far and I encourage you to keep it coming.
-
AuthorSearch Results