Search Results for 'buddypress'
-
AuthorSearch Results
-
March 7, 2011 at 2:22 pm #107054
Rob Watson
Member# There are lots of WordPress hacks designed to take the contents of your wp-config
# file (username and password) and dump them to a text file a spambot can pickup and
# send to a hacker. If you block access to wp-config file in your .htaccess using
# this method, you block those hackers from getting your database login information.
Order deny,allow
deny from all# Turn off directory indexing to keep anyone from seeing the contents of a directory
# if there is no index file.
Options All -Indexes# Block known spambots and crawlers. Update the following section with newly discovered
# spambots and crawlers. This blocks them from ripping off posts and images (costing
# bandwidth in the process.
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_USER_AGENT} ^BlackWidow [OR]
RewriteCond %{HTTP_USER_AGENT} ^Bot mailto:craftbot @yahoo.com [OR]
RewriteCond %{HTTP_USER_AGENT} ^ChinaClaw [OR]
RewriteCond %{HTTP_USER_AGENT} ^Custo [OR]
RewriteCond %{HTTP_USER_AGENT} ^DISCo [OR]
RewriteCond %{HTTP_USER_AGENT} ^Download Demon [OR]
RewriteCond %{HTTP_USER_AGENT} ^eCatch [OR]
RewriteCond %{HTTP_USER_AGENT} ^EirGrabber [OR]
RewriteCond %{HTTP_USER_AGENT} ^EmailSiphon [OR]
RewriteCond %{HTTP_USER_AGENT} ^EmailWolf [OR]
RewriteCond %{HTTP_USER_AGENT} ^Express WebPictures [OR]
RewriteCond %{HTTP_USER_AGENT} ^ExtractorPro [OR]
RewriteCond %{HTTP_USER_AGENT} ^EyeNetIE [OR]
RewriteCond %{HTTP_USER_AGENT} ^FlashGet [OR]
RewriteCond %{HTTP_USER_AGENT} ^GetRight [OR]
RewriteCond %{HTTP_USER_AGENT} ^GetWeb! [OR]
RewriteCond %{HTTP_USER_AGENT} ^Go!Zilla [OR]
RewriteCond %{HTTP_USER_AGENT} ^Go-Ahead-Got-It [OR]
RewriteCond %{HTTP_USER_AGENT} ^GrabNet [OR]
RewriteCond %{HTTP_USER_AGENT} ^Grafula [OR]
RewriteCond %{HTTP_USER_AGENT} ^HMView [OR]
RewriteCond %{HTTP_USER_AGENT} HTTrack [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^Image Stripper [OR]
RewriteCond %{HTTP_USER_AGENT} ^Image Sucker [OR]
RewriteCond %{HTTP_USER_AGENT} Indy Library [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^InterGET [OR]
RewriteCond %{HTTP_USER_AGENT} ^Internet Ninja [OR]
RewriteCond %{HTTP_USER_AGENT} ^JetCar [OR]
RewriteCond %{HTTP_USER_AGENT} ^JOC Web Spider [OR]
RewriteCond %{HTTP_USER_AGENT} ^larbin [OR]
RewriteCond %{HTTP_USER_AGENT} ^LeechFTP [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mass Downloader [OR]
RewriteCond %{HTTP_USER_AGENT} ^MIDown tool [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mister PiX [OR]
RewriteCond %{HTTP_USER_AGENT} ^Navroad [OR]
RewriteCond %{HTTP_USER_AGENT} ^NearSite [OR]
RewriteCond %{HTTP_USER_AGENT} ^NetAnts [OR]
RewriteCond %{HTTP_USER_AGENT} ^NetSpider [OR]
RewriteCond %{HTTP_USER_AGENT} ^Net Vampire [OR]
RewriteCond %{HTTP_USER_AGENT} ^NetZIP [OR]
RewriteCond %{HTTP_USER_AGENT} ^Octopus [OR]RewriteCond %{HTTP_USER_AGENT} ^Offline Explorer [OR]
RewriteCond %{HTTP_USER_AGENT} ^Offline Navigator [OR]
RewriteCond %{HTTP_USER_AGENT} ^PageGrabber [OR]
RewriteCond %{HTTP_USER_AGENT} ^Papa Foto [OR]
RewriteCond %{HTTP_USER_AGENT} ^pavuk [OR]
RewriteCond %{HTTP_USER_AGENT} ^pcBrowser [OR]
RewriteCond %{HTTP_USER_AGENT} ^RealDownload [OR]
RewriteCond %{HTTP_USER_AGENT} ^ReGet [OR]
RewriteCond %{HTTP_USER_AGENT} ^SiteSnagger [OR]
RewriteCond %{HTTP_USER_AGENT} ^SmartDownload [OR]
RewriteCond %{HTTP_USER_AGENT} ^SuperBot [OR]
RewriteCond %{HTTP_USER_AGENT} ^SuperHTTP [OR]
RewriteCond %{HTTP_USER_AGENT} ^Surfbot [OR]
RewriteCond %{HTTP_USER_AGENT} ^tAkeOut [OR]
RewriteCond %{HTTP_USER_AGENT} ^Teleport Pro [OR]
RewriteCond %{HTTP_USER_AGENT} ^VoidEYE [OR]
RewriteCond %{HTTP_USER_AGENT} ^Web Image Collector [OR]
RewriteCond %{HTTP_USER_AGENT} ^Web Sucker [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebAuto [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebCopier [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebFetch [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebGo IS [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebLeacher [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebReaper [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebSauger [OR]
RewriteCond %{HTTP_USER_AGENT} ^Website eXtractor [OR]
RewriteCond %{HTTP_USER_AGENT} ^Website Quester [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebStripper [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebWhacker [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebZIP [OR]
RewriteCond %{HTTP_USER_AGENT} ^Wget [OR]
RewriteCond %{HTTP_USER_AGENT} ^Widow [OR]
RewriteCond %{HTTP_USER_AGENT} ^WWWOFFLE [OR]
RewriteCond %{HTTP_USER_AGENT} ^Xaldon WebSpider [OR]
RewriteCond %{HTTP_USER_AGENT} ^Zeus
RewriteRule ^.* – [F,L]# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]# END WordPress
March 7, 2011 at 1:25 pm #107051In reply to: Check if an user is or not a group_member :
Philippe Gras
ParticipantMarch 7, 2011 at 12:45 pm #107049In reply to: Problem After Installing Buddypress
Sharan
MemberMy Blog is not yet launched. i have cross checked. that. if i use wordpress i am able to do everything user registration forgetpass. and even getting mails on the signup defined email. but whenever i install plugin of buddypress it stops working. on wordpress its working fine. I am using bluehost
i am using wordpress 3.1
and buddypres. 1.2.8if u can catch me @skype = punj4b1_
March 7, 2011 at 12:44 pm #107048Paul Wong-Gibbs
KeymasterThose plugins need to be updated for changes for WordPress 3.1. Contact the developers.
P.s. Achievements is my plugin and I’m aware
March 7, 2011 at 12:42 pm #107047In reply to: Problem After Installing Buddypress
Paul Wong-Gibbs
KeymasterBuddyPress uses WordPress’ email routines. There is no special handling. You are probably running into issues with your host throttling the increased number of emails that BP sends. I’d suggest you contact your host and ask them.
March 7, 2011 at 12:25 pm #107046In reply to: how to change profile -> settings page
Xavier Emerson
Memberhi….
I’m using buddypress 1.2.6
the above specified files r not working form me…
is there any settings i have to change to work it…
Could you help me…Thanlkz in advance..
March 7, 2011 at 10:48 am #107044In reply to: BP 1.2 and bbPress admin/plugins
seomaverick
ParticipantI’m so confused at this point, as to why it works the way it does.
I was so happy to find buddypress but not being able to create default support forums is nuts. I don’t quite know what to do now.
March 7, 2011 at 10:04 am #107043In reply to: Show Categories in tabs and drop down menus at top?
@mercime
Participant===== TO SUPPORT WP 3 MENUS FOR BP 1.2.8 =====
1. Create a child theme of bp-default https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/
2. Create a functions.php file in your child theme and add this:
`<?php
/* https://codex.wordpress.org/Function_Reference/add_theme_support#Navigation_Menus */
add_action( ‘init’, ‘register_my_menus’ );
function register_my_menus() {
register_nav_menus(
array(
‘primary-menu’ => __( ‘Primary Menu’ )
)
);
}/* Removes ul class from wp_nav_menu */
function remove_ul ( $menu ){
return preg_replace( array( ‘#^- ]*>#’, ‘#
$#’ ), ”, $menu );
}
add_filter( ‘wp_nav_menu’, ‘remove_ul’ );?>`
3. Copy over header.php from bp-default theme and paste into child theme folder.
4. Replace line “ or the whole navigation block with code below:
`
false, ‘menu_class’ => ‘menu’, ‘theme_location’ => ‘primary-menu’, ‘fallback_cb’ => ‘display_home’ ) ); ?>`
Adjust according to taste
March 7, 2011 at 9:07 am #107042In reply to: advanced Group & groupware functionality
roman
Participant@virtuali: thanks for your answer and yes i’ll always search for plugin myself first of all – but sometimes you just oversee something right?
I think those functionality was not included until now, and i just wanted to give a hint that these could be necessary functionalities for a community platform…@mercine: thanks that looks awesome!
by the way i found a groupwiki plugin: https://buddypress.org/community/groups/bp-wiki/home/
will check it out and give feedback if anyone is interested
March 7, 2011 at 9:01 am #107041In reply to: WordPress and Buddypress same password
Sofian J. Anom
Participant@B1gft — This link might help to create a multi installation wordpress with a single login:
http://techblog.touchbasic.com/html/single-unified-login-for-multiple-wordpress-2-8-installs-in-subdirectories-using-cookies/But I’m not sure that there is hosting that does not support WordPress multisite. Even free hosting I have ever tried allow WordPress multisite. But it can not use subdomains, because it does not provide wildcard subdomains features.
March 7, 2011 at 8:23 am #107039In reply to: Increase font size
Hugo Ashmore
ParticipantYou’ll need to be a little more specific about your set up and how you’re attempting this. What themes approach are you taking, are you using a custom theme, child theme of bp-default.
In theory you should be able to simply adjust the body font-size but a series of fixed px units throughout the layout make this harder to accomplish so you may have to target specific elements within the activities page.
The best and proper approach if you are using the bp-default theme is to create a simple child theme in which you simply have a style.css and in that you keep any custom styles.
Guides on creating a child theme: https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/
You’ll then need to identify the element you want to increase the size on. Depending on what elements you do actually want to increase you might simply be able to adjust the body font-size which is set to 12px but that will only change those elements that haven’t been explicitly set to a fixed size.
March 7, 2011 at 8:14 am #107038In reply to: Increase font size
@mercime
ParticipantIt’s in bp-default/_inc/css/default.css where body has font-size of 12px.
To change, recommend you create a child theme https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/ and make the change thereMarch 7, 2011 at 8:05 am #107037In reply to: WordPress and Buddypress same password
b1gft
ParticipantMy host wont allow multi site, I tried. I dont want to move from my host as I have a few clients sites hosted there as well.
March 7, 2011 at 7:52 am #107033In reply to: WordPress and Buddypress same password
Paul Wong-Gibbs
KeymasterIt sounds as if you are running two separate WordPress installs. If you are, get rid of one of them and use multisite. There are ways to share the users table between installs (like on here), but I would suggest multisite is easier to achieve.
March 7, 2011 at 6:08 am #107031@mercime
ParticipantDo post your .htaccess file here – something might have gotten messed up there.
March 7, 2011 at 5:47 am #107030Rob Watson
MemberAs an experiment, I changed “wordpress” in the documentroot path to “wp”. Restarted apache. Still, the home page loads beautifully, yet every link in the site (buddypress link or blog post link) leads to 404. Totally confused here. Never had this happen before after many, many installs.
March 7, 2011 at 5:40 am #107029Rob Watson
MemberGrr. Ignore the part after “webmaster” in previous post. The forum is doing weird stuff to it. It’s supposed to be just the IP address.
March 7, 2011 at 5:39 am #107028Rob Watson
MemberThanks, mercime. But when I add in “/wordpress/” in front of “/members/…”, I still get 404.
http://xxx.xxx.xx.xxx/wordpress/ also returns a 404. But http://xxx.xxx.xx.xxx/ returns the buddypress-enabled home page, fully themed and functional, except for the fact that clicking any deeper part of the admin menus returns 404.
My apache virtualhost settings are as follows:
`
ServerAdmin webmaster @xxx.xxx.xx.xxx
DocumentRoot /data01/home/username/production/wordpress
ServerName xxx.xxx.xx.xxx
ErrorLog logs/xxx.xxx.xx.xxx-error_log
CustomLog logs/xxx.xxx.xx.xxx-access_log common
`Does anything need to change there to fix this problem?
March 7, 2011 at 4:03 am #107023pcwriter
ParticipantBuddypress doesn’t connect to the database, WordPress does.
BP is a plugin and will use the same db as WP, but if WP can’t connect, BP won’t work either.March 7, 2011 at 3:44 am #107022i_banks
Memberso there aren’t any other files Buddypress uses to connect and save to DB?
March 7, 2011 at 2:57 am #107020pcwriter
ParticipantIn your wp-config.php file (root of your site), you’ll see the following lines:
`// ** MySQL settings – You can get this info from your web host ** //
/** The name of the database for WordPress */
define(‘DB_NAME’, ‘your-db-name-here’);/** MySQL database username */
define(‘DB_USER’, ‘your-db-username-here’);/** MySQL database password */
define(‘DB_PASSWORD’, ‘your-db-password-here’);`Insert your connection info in the appropriate places, save and reupload.
March 7, 2011 at 1:38 am #107016In reply to: Checking if activity entry is a forum topic or not
Virtuali
ParticipantPlease don’t replicate topics. https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/group-activity-by-keyword/
You need to be more specific on what you are trying to do, I can’t understand what you are saying.
March 7, 2011 at 1:36 am #107015In reply to: How do I add a menu item on the profile page?
Virtuali
ParticipantJust creating new profile page category from my understanding??? Just to go your buddypress admin page under profile setup and create new fields there, no need to hook anything.
P.S, why on your activity page is the header content below the avatar? Go into your theme’s CSS file and remove
`div#item-header div#item-header-content {
float:left;
}`To clear things up, it should look a-lot nicer.
March 7, 2011 at 12:15 am #107011In reply to: Forums Bug: There are no posts for this topic.
March 6, 2011 at 11:12 pm #107010@mercime
ParticipantHello. See *Info Before Activation* at the bottom of readme.txt included in plugin folder which is not seen in WP repo pages https://plugins.svn.wordpress.org/bp-group-frontpage/trunk/readme.txt
I personally haven’t used the plugin since it requires BP Album plugin.It wasn’t automatically listed in BuddyPress.org plugin directory because plugin dev forgot to “tag” it BuddyPress in plugin file
-
AuthorSearch Results