Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 25 replies - 1 through 25 (of 44 total)
  • Avatar of ds123
    ds123
    Participant

    @ds123

    this is exactly what i need to do @djpaul any ideas? i tried installing the role scoper plugin but i’m not seeing any permission that would allow an editor or any role for that matter to mark user as spammer ….on a sidenote i found a plugin to add that option back to the admin bar (did mark spammer totally disappear in 1.7?) so that if i can get editor role working they can easily mark spammers from the admin bar

    any advice would be greatly appreciated i can’t be the only one facing the issue of having to either give admin access to users who really should not have admin access or just deleting every spammer myself every day

    what options are there?

    Avatar of ds123
    ds123
    Participant

    @ds123

    @georgef101 its been a year and i can’t wait anymore to upgrade our site …does this plugin work or have you found a solution i definitely will help pay for it just let me know…anyone else have more info please reply

    Avatar of ds123
    ds123
    Participant

    @ds123

    @modemlooper …. now that ios6 is coming …. any chance buddypress will put this fix into the core? i think we can finally get off photobucket as our way of sharing photos yes? and this is a tiny bit off topic but what plugin do you recommend for allowing members to share / upload photos? thanks!

    Avatar of ds123
    ds123
    Participant

    @ds123

    i’m looking for a developer to create a blackberry app please contact

    Avatar of ds123
    ds123
    Participant

    @ds123

    @apeatling will you please update this to use buddypress 1.5 ?? i’m unable to upgrade buddypress as i’m sure others are without this plugin being compatible

    Avatar of ds123
    ds123
    Participant

    @ds123

    @georgef101 how much funds would be needed to hire a developer to do this? @r-a-y @DJPaul

    (so cool activity bump to top is now updated ..this is one key plugin i need before i can go buddypress 1.5)

    Avatar of ds123
    ds123
    Participant

    @ds123

    @nuprn1 no way you upgraded bump to top to work with buddypress 1.5 thank you!!! this was the one reason i have not upgraded our site to 1.5 buddypress yet

    Avatar of ds123
    ds123
    Participant

    @ds123

    @modemlooper i think i found a version of 1.5.1 i can use … and the really cool thing i just found out the activity bump to top plugin has now been upgraded to work with buddypress 1.5 ..so i should be able to upgrade to your latest version soon

    Avatar of ds123
    ds123
    Participant

    @ds123

    @apeatling this is really bad that buddypress forums doesn’t even work …. its scary i think as it should be working better not worse than our own buddypress sites ….. the forum and profiles on this site are pretty much unusable ..have brought up multiple issues but nobody ever responds ….. just now i tried to go to page 2 of a forum buddypress mobile forum and instead of page 2 of posts i get a totally blank white screen

    Avatar of ds123
    ds123
    Participant

    @ds123

    @modemlooper i really appreciate your reply and help but the code you posted does not exist in the version of your plugin i’m using 1.5 …. if you look at the code i posted above can you please tell me where in that code do i force the https url? thanks!

    Avatar of ds123
    ds123
    Participant

    @ds123

    @modemlooper … thanks for the reply but i do not see the stylesheet one …. here is your file ..can you please tell me where it is exactly?

    `<?php
    /*
    Plugin Name: BuddyPress Mobile
    Plugin URI: http://go-themes.com
    Description: A plugin and theme for BuddyPress for optimized viewing on Apple’s iPhone and iPod touch. Also works with some Android and blackberry devices..
    Author: modemlooper
    Version: 1.5
    Author URI: http://twitter.com/modemlooper
    */

    /*
    * Make sure BuddyPress is loaded before we do anything.
    */
    if ( !function_exists( ‘bp_core_install’ ) ) {
    require_once( ABSPATH . ‘/wp-admin/includes/plugin.php’ );
    if ( is_plugin_active( ‘buddypress/bp-loader.php’ ) ) {
    require_once ( WP_PLUGIN_DIR . ‘/buddypress/bp-loader.php’ );
    } else {
    add_action( ‘admin_notices’, ‘buddypress_mobile_install_buddypress_notice’ );
    return;
    }
    }

    define ( ‘BUDDYPRESS_MOBILE_VERSION’, ’1.5′ );

    /*
    * admin links
    */
    require ( dirname( __FILE__ ) . ‘/admin.php’ );

    function buddypress_mobile_install_buddypress_notice() {
    echo ‘

    ‘;
    _e(‘BuddyPress Mobile requires the BuddyPress plugin to work. Please install BuddyPress first, or deactivate BuddyPress Mobile.’);
    echo ‘

    ‘;
    }

    require_once( ‘include/compat.php’ );

    class bpMobilePlugin{
    var $iphone;

    function bpMobilePlugin(){
    $this->iphone = false;
    add_action(‘plugins_loaded’,array(&$this,’detectiPhone’));
    add_filter(‘stylesheet’,array(&$this,’get_stylesheet’));
    add_filter(‘template’,array(&$this,’get_template’));
    add_filter( ‘theme_root’, array(&$this, ‘theme_root’) );
    add_filter( ‘theme_root_uri’, array(&$this, ‘theme_root_uri’) );
    add_filter( ‘template’, array(&$this, ‘get_template’) );
    }

    function detectiPhone($query){
    $container = $_SERVER;
    $useragents = array (
    “iPhone”,
    “iPod”,
    “Android”,
    “blackberry9500″,
    “blackberry9530″,
    “blackberry9520″,
    “blackberry9550″,
    “blackberry9800″,
    “webOS”
    );
    $this->iphone = false;
    foreach ( $useragents as $useragent ) {
    if (eregi($useragent,$container)){
    $this->iphone = true;
    }
    }

    }

    function get_stylesheet($stylesheet) {
    if($this->iphone){
    return ‘default’;
    }else{
    return $stylesheet;
    }
    }

    function get_template($template) {
    if($this->iphone){
    return ‘default’;
    }else{
    return $template;
    }
    }

    function get_template_directory( $value ) {
    $theme_root = compat_get_plugin_dir( ‘buddypress-mobile’ );
    if ($this->iphone) {
    return $theme_root . ‘/themes’;
    } else {
    return $value;
    }
    }

    function theme_root( $path ) {
    $theme_root = compat_get_plugin_dir( ‘buddypress-mobile’ );
    if ($this->iphone) {
    return $theme_root . ‘/themes’;
    } else {
    return $path;
    }
    }

    function theme_root_uri( $url ) {
    if ($this->iphone) {
    $dir = compat_get_plugin_url( ‘buddypress-mobile’ ) . “/themes”;
    return $dir;
    } else {
    return $url;
    }
    }

    }
    $bp_mobile = new bpMobilePlugin();

    function bp_mobile_scripts() {
    wp_enqueue_script( “buddypress-mobile”, path_join(WP_PLUGIN_URL, basename( dirname( __FILE__ ) ).”/themes/default/theme.js”), array( ‘jquery’ ) );
    if (get_option(‘add2homescreen’)==1) {
    wp_enqueue_script( “add2home-mobile”, path_join(WP_PLUGIN_URL, basename( dirname( __FILE__ ) ).”/themes/default/add2home.js”) );
    }
    }
    add_action(‘wp_print_scripts’, ‘bp_mobile_scripts’);

    ?>`

    Avatar of ds123
    ds123
    Participant

    @ds123

    @modemlooper this is at the bottom of version 1.5 so change both those lines to the .js files to full https path? not seeing one for the stylesheet (i know you do it differently the version after this)

    function bp_mobile_scripts() {
    wp_enqueue_script( “buddypress-mobile”, path_join(WP_PLUGIN_URL, basename( dirname( __FILE__ ) ).”/themes/default/theme.js”), array( ‘jquery’ ) );
    if (get_option(‘add2homescreen’)==1) {
    wp_enqueue_script( “add2home-mobile”, path_join(WP_PLUGIN_URL, basename( dirname( __FILE__ ) ).”/themes/default/add2home.js”) );
    }
    }
    add_action(‘wp_print_scripts’, ‘bp_mobile_scripts’);

    ?>

    Avatar of ds123
    ds123
    Participant

    @ds123

    @modemlooper thanks so much for the reply ….. i see this get_stylesheet function but don’t know enough to code in that full path …can you help me with some actual code ? I am using buddypress mobile 1.5 because of customized theme need to stick with it for now and it works

    function get_stylesheet($stylesheet) {
    if($this->iphone){
    return ‘default’;
    }else{
    return $stylesheet;
    }
    }

    Avatar of ds123
    ds123
    Participant

    @ds123

    @jwack it works for up 1.2.10 but says it fails for buddypress 1.5 …. can someone please take this over am willing to pay and make it compatible with 1.5 ?

    Avatar of ds123
    ds123
    Participant

    @ds123

    @Pisanojm and everyone what do you suggest for a site that does not want to live without the following plugins “activity bump to top, buddypress like, buddypress follow, profile privacy” but definitely wants to keep up to date and upgrade to 1.5? these are key features of our community and are currently listed as Fail for BP 1.5 …any advice would be appreciated

    Avatar of ds123
    ds123
    Participant

    @ds123

    @modemlooper you are a life saver sir! thanks for the quick reply …your suggestion fixed it! looking forward to 1.5 …. if its too much work to not charge i’d just start charging for your plugin for sure worth paying for….. on another note and i know its off topic but does relate to upgrading to 1.5 do you foresee any problems upgrading to buddypress 1.5 and buddypress mobile 1.5 if i use plugins like buddypress like, buddypress follow, buddypress bump to top?

    Avatar of ds123
    ds123
    Participant

    @ds123

    thanks @mercime tried adding that memory increase to .htaccess didn’t work … i upgraded wordpress to latest …still won’t activate …tried deleting buddypress plugin and uploading new version ….doesn’t activate

    the wordpress admin says “Plugin activated.” after it finishes but its still in the inactive section and no buddypress options

    is the only next step to delete buddypress database tables?

    Avatar of ds123
    ds123
    Participant

    @ds123

    any news on this? is there anyway to use some of the work done with wordpress plugin “postie” to develop this? and an upload photos by email function would be amazing like facebook offers…… currently can’t upload from iphone so this solves the avatar registration issue too from a mobile

    Avatar of ds123
    ds123
    Participant

    @ds123

    hey guys and @xyclops i did the UTC fix also but now i get these errors all the time is it ok or should i just forget about birthdays? meaning what’s more serious this warning?

    ] PHP Warning: timezone_open() [function.timezone-op$

    Avatar of ds123
    ds123
    Participant

    @ds123

    @chestnut_jp i hope you and family are ok and thank you for taking the time to write back …. on your post above should i change bp-like.php as you mention at 851 then i will get a text like link on my blog posts?

    Avatar of ds123
    ds123
    Participant

    @ds123

    @virtuali …. my question has to do with the title of the forum topic hyperdb with buddypress

    Avatar of ds123
    ds123
    Participant

    @ds123

    @DJPaul can you please tell me what database caching plugin your using to speed up mysql queries on master / slave servers? i’m using hyper db seems to work but i want to use memcache will that help logged in users on buddypress? (ryan’s plugin memcached plugin)

    … my slave server is a stripped down mysql server and nothing else do i need to install memcache on the slave server? (its already installed on the master)

    thanks for any help!

    Avatar of ds123
    ds123
    Participant

    @ds123

    anyone is intense debate plugin compatible with buddypress ?

    Avatar of ds123
    ds123
    Participant

    @ds123

    @gregfielding thanks for the info … my main issue is for logged in users and the very busy activity stream …. is there anyway to not display all the activity ? maybe that will load the page faster ..i use the activity stream as my homepage …. and it is very painful to hit it when logged in its sometimes a couple seconds before you see anything…. i am in the process of getting hyper db running on 2 mysql servers but what is a bummer is that even when their are 10-20 people signed in at same time its still slow …. actually even when there are only a couple the darn activity stream still lags …innodb tables….maxcdn ….w3 total cache..opcode apc
    …any tips to improve the main activity load time?

    Avatar of ds123
    ds123
    Participant

    @ds123

    @alierkurt were you able to find a way to “like” blog posts?

Viewing 25 replies - 1 through 25 (of 44 total)