Search Results for 'wordpress'
-
AuthorSearch Results
-
June 20, 2011 at 2:23 pm #114891
Boone Gorges
KeymasterBrajesh is right; it’s probably a Javascript problem. I’d suggest checking out Suffusion’s custom BP template pack. Otherwise, as a stopgap, you might try changing line 23 of wp-content/plugins/bp-template-pack.php from
`wp_enqueue_script( ‘bp-js’, BP_PLUGIN_URL . ‘/bp-themes/bp-default/_inc/global.js’, array( ‘jquery’ ) );`
to
`if ( !is_admin() ) wp_enqueue_script( ‘bp-js’, BP_PLUGIN_URL . ‘/bp-themes/bp-default/_inc/global.js’, array( ‘jquery’ ) );`so that BP’s scripts are only loaded on non-Dashboard pages.
June 20, 2011 at 2:20 pm #114889aces
ParticipantSuffusion has it’s own compatibility pack https://buddypress.org/community/groups/suffusion-buddypress-pack/ ….?
June 20, 2011 at 1:40 pm #114887Brajesh Singh
ParticipantHi,
It most probably seems like javascript conflict/error.
Do you use firefox. If yes, check the console(Even better if you use firebug addon) and please let us know if you see any error there ?June 20, 2011 at 1:02 pm #114874Brajesh Singh
ParticipantHi Naved,
try this plugin
https://wordpress.org/extend/plugins/bp-redirect-to-profile/I had written it an year ago but it still works. Hope it helps. If it does not work. Please do let me know here.
June 20, 2011 at 12:49 pm #114873BlueInkAlchemist
Member@mercime – Took your advice, reuploaded BuddyPress and /register still redirects back to the base site.
What I meant by reinstalling WP is similar to what I just did with BP – download a fresh copy of the install from wordpress.org and manually overwrite the files on the FTP site, with the exception of wp-config.php so it still points to the right DB with the right credentials.
I believe this WP was installed manually, but the server does include some legacy folders that have nothing to do with WP – drupal, etc – which I suspect may interfere with the overall performance of the site.
June 19, 2011 at 9:45 pm #114832Sofian J. Anom
ParticipantIn your case I think it’s impossible.
As I know, you can only make multiple wordpress installation with single login only if you are using a single database. Therefore, if you want there is BuddyPress with a single user credential on each WordPress installation, then it’s only possible if you are also using a single database.
June 19, 2011 at 8:32 am #114802Stigmartyr
MemberHi @boonebgorges Thanks a lot for the reply – no I actually have root on my server. So I went in and copied all the WP 3.1.3 files and installed manually, editing the connection strings myself in wp-config.php
For Buddy Press I copied the files via FTP to /plugins and installed from there. I do indeed have phpMyAdmin access. It looks like the tables are there and I can create groups and post updates in them. It’s just when I enable forums then that page shows no topics displayed. Likewise when I got to post in a public group via that group’s Forum tab it will also error. I’ve tried every solution I could read in here all day long to no avail
Even clicking and unclicking the group’s permission to allow discussion forums.URL: http://stangnation.com
Forum Link: http://stangnation.com/forumsI’ve tried a number of permalink structures as well – I am currently using /%category%/%postname%
I CHMOD /plugins/buddypress to 755. I made sure of course the bb-config.php is accurate and in the root. BuddyPress SQL tables are on the same db as WordPress is..
Really stumped here…
June 18, 2011 at 6:25 pm #114779In reply to: Activity Post/Reply To Not Working
d71
MemberOk, so in the working default BuddyPress theme the Ajax handler works great:
bp_dtheme_post_update traceback:
#0 bp_dtheme_post_update() called at [:]
#1 call_user_func_array() called at
[wp-includes/plugin.php:395]#2 do_action() called at
[wp-content/plugins/buddypress/bp-core.php:2026]#3 bp_core_add_ajax_hook() called at [:]
#4 call_user_func_array() called at
[wp-includes/plugin.php:395]#5 do_action() called at
[wp-settings.php:298]#6 require_once(/home2/capacoac/public_html/artsbeta/wp-settings.php) called at
[wp-config.php:91]#7 require_once(/home2/capacoac/public_html/artsbeta/wp-config.php) called at
[wp-load.php:30]When doing a normal status update it seems to flow normally:
top of bp_dtheme_post_update in bp-theme-default…
. content=james
. object=
. calling bp_activity_post_update (no object)…
. calling user func tag=wp_default_stylesMy status update was “james”. So all working well for the default BuddyPress theme.
Now with BuddyBase activated none of that entire call chain happens and neither does it happen from the default buddy base theme. its like ajax.php is no longer being loaded.
To verify I put an error_log call at the top of the BuddyBase copy of _inc/ajax.php, just to indicate that _its_ version of ajax.php was being loaded…and its not. For some reason the BuddyBase theme is not having its version of ajax.php loaded.
I’m not really sure hwo to verify how the theme tells WordPress/BuddyPress to load that file, but I guess I have another lead to track down….
June 18, 2011 at 5:15 pm #114774In reply to: Activity Post/Reply To Not Working
d71
Memberfind . | xargs fgrep
./_inc/global.js
./_inc/ajax.php(basically the Ajax related code)
From the ajax code in BuddyBase theme, no hits not being invoked. So I went back to the BuddyPress plugin, and added some erro_log calls to bp-activity.php…that got his, so the Ajax frame work is working, just not connecting to the theme.
From the stack trace of bp-activity, it looks like wp-load.php leads to wp-settings.php, which loads up bp-loader.php…I imagine bp-loader.php is what brings in any necessary BuddyPress stuff.
Anyways, I confirmed that bp-activity.php (in the BuddyPress plugin, not the BuddyBase theme) is calling:
add_action( ‘wp’, ‘bp_activity_action_post_update’, 3 );
So the activity handler should be getting called…but it doesn’t. I put some logging in that function (bp_activity_action_post_update), and its not getting called.

The ‘wp’ hook seems like the place I would expect this to run; its Ajax so the theme/template isn’t actually needed, it just neesd th POST data. So the logic seems right.
At least the API reference says wp is used for POST processing:
https://codex.wordpress.org/Plugin_API/Action_Reference
I guess I need to dig around find where WordPress is invoking any wp hooks, and then try to see why its not invoking this POST handler.
June 18, 2011 at 1:11 pm #114763naved
Memberi included define (‘WP_MEMORY_LIMIT’, ’64M’); it under wp-config under languages section
June 18, 2011 at 12:53 pm #114762sidjags
Member@nicholmikey… thanks for the help on cubepoints implementation…
June 18, 2011 at 1:52 am #114748In reply to: [Resolved] Content won’t line up properly?
aces
ParticipantJune 17, 2011 at 11:00 pm #114736In reply to: Buddypress and WordPress??
@mercime
ParticipantIf you want it totally separate, then install first WP at domain root – http://yoursite.com. Create a second WP install at say, a physical subdomain – http://community.yoursite.com/ – using same database but different prefix for tables and install BuddyPress there.
June 17, 2011 at 10:54 pm #114735In reply to: Blog option in component setup
@mercime
Participant== why I do not have the option of Blogs in my component setup ==
Because you need to make it multisite first i.e. create a network https://codex.wordpress.org/Create_A_Network
1. Deactivate all plugins including BuddyPress
2. Create the network – if you hit some snags, support forum is at https://wordpress.org/support/forum/multisite
3. Before installing BP – https://codex.buddypress.org/getting-started/before-installing/
June 17, 2011 at 8:45 pm #114728In reply to: forum setup
Clare Parkinson
MemberHi Joanquingrech.
You can change any of the labels and messages in BuddyPress to whatever you want by making a customized language file. This article explains what to do: http://wpmu.org/basic-guide-to-creating-a-buddypress-language-file-for-sitewide-label-and-message-editing/
I like thinking of groups as “categories” myself. If you change them to “categories” or “topics” in the language file, then they can be geographical areas, or guilds, or whatever you want.
You can remove “groups” from the menu by creating a custom menu in WordPress that doesn’t have a ‘Groups’ tab.
Normally, users would join the groups themselves by clicking on the “join group” button, but as an admin you can move users around as you want between groups.
I can’t advise you on the theme for the forum appearance. I’m just going to edit the stylesheet myself to set mine up how I want.
cheers,
Clare
June 17, 2011 at 6:14 pm #114717Hugo Ashmore
ParticipantHow? please always share how you solved a problem on a open forum as it may help others who come across the thread.
June 17, 2011 at 4:53 pm #114711In reply to: errror on installing plugings
June 17, 2011 at 2:00 pm #114700naved
Membersolved
June 17, 2011 at 1:22 pm #114698Hugo Ashmore
Participant`define (‘WP_MEMORY_LIMIT’, ’64M’); adding this to wp-config can solve my problem ?`
This is a non question the response to which always has to be ‘You tell us’! try it does it fix the issue? it’s a simple test.
if it doesn’t then your host may not permit individual sites to alter PHP at site level ( very sensible on shared hosting) in which case you may need to speak to tech support and ask that the memory limit is increased or whether it can be.
June 17, 2011 at 1:15 pm #114696naved
Memberdefine (‘WP_MEMORY_LIMIT’, ’64M’); adding this to wp-config can solve my problem ?
my account info isDisk Space Usage 10.3 / 500 MB
Monthly Bandwidth Transfer 0.54 / 5000 MB…..so do i need to increase the db space and bandwidth or what should the above code can fix it plz help me in detail explanation plz …June 17, 2011 at 12:55 pm #114688aces
ParticipantYou probably need more memory…..
June 17, 2011 at 3:20 am #114671In reply to: WordPress 3.0 + Buddypress — User Creation Problems?
David
ParticipantHere’s how to get around activation. I was having the same problem on my test server, since it couldn’t send out activation emails. If you need activation emails enabled, then this workaround will not work for you.
For users that have already been created and cannot login, you can go into the wp_users table in the database and change their ‘user_status’ from ‘2’ to ‘0’ (if you have database access). ‘user_status’ is not used in WordPress — it’s a dead field — but Buddypress uses it to redirect to the homepage if a user has not been activated (aka user_status=2).
To avoid the problem for future user registrations, you can change a file to avoid activation (if you have FTP access). In the buddypress plugin directory, find bp-core/bp-core-signup.php. Find the line that says:
`$wpdb->query( $wpdb->prepare( “UPDATE $wpdb->users SET user_status = 2 WHERE ID = %d”, $user_id ) );`
In my installation (1.2.
it is on line 357. Change the 2 on that line to a 0. So it should look like this:
`$wpdb->query( $wpdb->prepare( “UPDATE $wpdb->users SET user_status = 0 WHERE ID = %d”, $user_id ) );`Now when a new user is created, they will automatically be able to login without their email needing to be confirmed.
June 16, 2011 at 7:33 am #114618In reply to: Need help with my WordPress theme and BuddyPress
Hugo Ashmore
ParticipantWe can’t see what that file parses and outputs! It looks as though there is no structure?
So do a number of those function calls describe markup structure? You will need to look at them and edit or copy where necessary; however you shouldn’t really be having an issue? you view the generated output of an index.php or page.php and match that to a buddypress page and ensure that the BP page matches to your themes. What structure does the file above generate? it should match to the other pages in your theme and is the structure that your BP pages need to duplicate.
June 16, 2011 at 1:38 am #114612raholt
MemberHello,
What I mean by “same content” is whatever I post on a page such as the main index page or other secondary pages, it would show up on the member sites as well. It would be the same content but even more than that it would be the same in that it’s not another duplicate site using the same content.
For example: I create a master page which has “Hello World, this is Ron. Take a look at this Business Advantage bla bla bla [ picture of something ]
The member would have the same site but it would be http://TheirID.MyWonderfulSite.com. The main page would be the same content but it would pull in the members first name and place it where I have my name. “Hello World, this is [Joe]. Take a look at this Business Advantage bla bla bla [picture of something].When you replicate a site like this and have 1000 members, you don’t have 1000 pages of content. You have 1 page and all 1000 members are using the same page but with their tags showing like their name, email etc.
In addition, they would be able to have their OWN unique blog page or bio page which would have 1000 instances of that.
Does this help?
That is what a network marketing replicating website does. You can see what I am talking about by going to my site at http://www.getstartersite.com. It’s being done already. I just want to do it with WordPress.
Thanks,
Ron
June 15, 2011 at 10:13 pm #114601In reply to: what search does buddypress use???
Brajesh Singh
Participant@famous, you are right about that. searching multiple blogs is too costly on database if the posts are not cached in a global table. The unified search does not includes it because most of the sites do not use any sort of global post caching, and searching the posts on a network of say more than 20 blogs will be too much for a shared server to handle. I remember there is a plugin https://wordpress.org/extend/plugins/multisite-global-search/ which does global search.
The problem is, It will put some real strain on database. if you still want to use it, you can extend the unified search with the above mentioned plugin.hope that helps.
-
AuthorSearch Results