Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 14,651 through 14,675 (of 22,644 total)
  • Author
    Search Results
  • Stigmartyr
    Member

    Hi @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/forums

    I’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…

    #114779
    d71
    Member

    Ok, 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_styles

    My 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….

    #114774
    d71
    Member

    find . | 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.

    naved
    Member

    i included define (‘WP_MEMORY_LIMIT’, ’64M’); it under wp-config under languages section

    sidjags
    Member

    @nicholmikey… thanks for the help on cubepoints implementation…

    #114748
    aces
    Participant
    #114736
    @mercime
    Participant

    If 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.

    #114735
    @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/

    #114728

    In reply to: forum setup

    Hi 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

    Hugo Ashmore
    Participant

    How? please always share how you solved a problem on a open forum as it may help others who come across the thread.

    #114711
    @mercime
    Participant
    naved
    Member

    solved

    Hugo 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.

    naved
    Member

    define (‘WP_MEMORY_LIMIT’, ’64M’); adding this to wp-config can solve my problem ?
    my account info is

    Disk 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 …

    aces
    Participant

    You probably need more memory…..

    #114671
    David
    Participant

    Here’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.8) 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.

    #114618
    Hugo Ashmore
    Participant

    We 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.

    raholt
    Member

    Hello,

    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

    #114601
    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.

    #114591
    projectjerel
    Member

    NOPE!

    here’s my .htaccess file as well
    # BEGIN WordPress

    RewriteEngine On
    RewriteBase /
    RewriteRule ^index.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]

    # END WordPress

    # MEMORY
    php_value memory_limit 16M
    # END MEMORY

    I have no idea how to disect the error log, does anything jump out at anyone?
    I’d be happy to repost the latest….

    #114580
    projectjerel
    Member

    I will try to be nice. Relative to me, this will not function out of the box. on a completely fresh install. Could well be a permissions issue. However, buddypress installs and works no problems at all. The forum setup says it did everything fine (or that i have to create teh bb-config.php file) it seems to be changing it’s mind.

    So the situation is this:

    buddypress – works installs no issues, very smooth.

    forum setup finishes
    dashboard ceases to function – website remains intact, forums tab goes to a 404 error.

    v1.2.8 of buddypress
    v3.1.2 and v3.1.3 of wordpress (both produce the same lack of function).

    when i say it’s absoutely busted, relative to me it is, which makes sense as its not working for me.

    bbPress is now absent from the picture as it seems it’s something all it’s own.

    I’m at a loss as to how to proceed…

    Paul Wong-Gibbs
    Keymaster

    However, that’s running BuddyPress 1.3.

    BuddyPress 1.2.8, which is the current version, does have a couple of small issues that we’ve noticed so far with WordPress 3.2, mainly with javascript in the BP-Default theme. If anyone spots any more, please let us know. We plan a same-day release of 1.2.something with WordPress 3.2 to address these.

    You can get the latest in the 1.2 series from https://buddypress.trac.wordpress.org/changeset/4550/branches/1.2?old_path=%2F&format=zip (at time of writing. SVN is https://svn.buddypress.org/branches/1.2/)

    @mercime
    Participant

    You can do all that when you transform your single WP into a multisite installation by creating a network with subdomain structure https://codex.wordpress.org/Create_A_Network
    Multisite support forum – https://wordpress.org/support/forum/multisite

    “same content” – if you mean that each user has a portfolio page, or about me page, a contact us page, etc. this can be achieved by creating a custom theme which you can designate as the default theme for each new subsite created by your members.

    Create a network/go multisite before installing BuddyPress plugin if you want to add social networking features – https://codex.buddypress.org/getting-started/before-installing/

    #114539

    In reply to: BP Blog question

    aces
    Participant

    wp in multisite/multi-user mode is for multiple blogs on the same installation, if that’s what you mean…

    https://codex.wordpress.org/Create_A_Network

    EDIT: darn it – beaten to it by moments….

    #114531
    LPH2005
    Participant

    You might start out small. Install BuddyPress and enable just the activity stream; disable everything else. Make sure that the theme css works well with the activity stream. You’ll need to install the BuddyPress template pack. After you are satisfied with the activity stream then change WP install to multi-site. You’ll want to lock it down so that you control creation of blogs – so that you don’t have to deal with splogs. Once you have that working then you can add a few other BP features – private messaging, etc.

Viewing 25 results - 14,651 through 14,675 (of 22,644 total)
Skip to toolbar