Forum Replies Created
-
Login to the admin interface with admin
goto http://popnws.com/wp-admin/options-permalink.php
and click on save changes button and see if it helps.
In reply to: buddypress registration not working in ie7Try by turn off your Java Script error in IE. To do that follow this link
In reply to: Avatar Upload Issues@jjj : It seems to me that BP is not trapping the GD Lib error while creating a thumbnail when using wp_create_thumbnail function in bp-core-avatars.php around line no. 250 resulted, it render the Cropper UI without an image and without any error.
In this case while all file permission and everything are correct. But user won’t find his file on FTP because BP deletes the original file if its not in correct size.
So I would suggest that before reporting any avatar upload issue here on forum user should check that file permissions are correct and its creating thumbnails.
A very simple way to test this is.
1. Login to the admin interface with admin
2. Goto Media -> Add New and try uploading any image
– If upload works correctly, which means file permission are ok. If not check the file permission
– If upload works correctly, check that its creating thumbnails in 150X150 and 300X300 (default) for bigger images. This can be check by going to wp-content/blogs.dir/–Your Upload path–
If both are correct avatar upload might work.
Hope this helps
In reply to: Registration Button Not Working@vichost : Please enable user registration from admin interface.
1. Login to the site with admin
2. Goto “Site Admin” -> “Options” or domainname.com/wp-admin/wpmu-options.php
3. Enable registration from “Allow new registrations” section.
Hope this helps.
In reply to: Problem with bpPicture Album@all : Now you can download updated plugin for BuddyPress 1.1
In reply to: BuddyPress Upgrade Killed My Blog. HELP.@sschablow : Please try by renaming plugins folder to tmp_plugins or something.
In reply to: "sub"-plugins@Grosbouff : It can be done by adding filters and actions at each point where you want to inject other plugins or code.
In reply to: Activity streamYou can use
bp_activity_recordfunctionIn reply to: How to substitute my logo for [socialnetwork]1. To change “socialnetwork” on home page
Go to -> wp-content -> themes -> bphome -> images -> logo.gif
Replace logo.gif
2. To change “socialnetwork” on members page
Go to -> wp-content -> bp-themes -> bpmember -> images -> logo.gif
Replace logo.gif
It seems memory_limit issue to me. If you check your php error log there must be a line something like “Allowed memory size of 8388608 bytes exhausted…….”
To resolve that
1. Check your phpinfo() and find “memory_limit” in it (Most server has 8 MB).
2. Now to increase your memory_limit edit your php.ini file and find memory_limit
3. Change existing value memory_limit = 8M ; to something like memory_limit = 12M ;
4. Restart your apache server.
5. Again check phpinfo() and memory_limit, now it should be 12M
I think above workaround will solve your problem.
I have tried many times but at my end forum coming out ok, each time every time

[p][/p] is a known bug and still needs to be tracked.
Try by deactivation vipers-video-quicktags plugin.
@ pb1285n : Can I have your URL?
In reply to: Search and spaces@ amweiss: Please refer to following thread
In reply to: Forums installation issues@ thestasi : It seems even your BuddyPress not setup properly. So please go one step at a time
In reply to: Forums Not Being CreatedI am using bbPress-1.0-RC1 and everything seems to be working fine.
In reply to: Safari SupportClear your browser cache & cookies and try again.
I am not sure in which sidebar you want to implement this.
If you are talking about blog sidebar in default BP theme.
1. Open sidebar.php from wp-content/themes/bphome/
2. Replace all content with following code
<div id="sidebar">
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar('blog-sidebar') ) : ?>
<div class="widget-error">
<?php _e( 'Please log in and add widgets to this column.', 'buddypress' ) ?> <a href="<?php echo get_option('siteurl') ?>/wp-admin/widgets.php?s=&show=&sidebar=sidebar-4"><?php _e( 'Add Widgets', 'buddypress' ) ?></a>
</div>
<?php endif; ?>
<?php bp_adminbar_notifications_menu(); ?>
</div>3. Check by clicking on any post from main blog.
You have to create a new function like bp_adminbar_notifications_menu()
Even if you directly write bp_adminbar_notifications_menu(); in your sidebar you will get the result.
In reply to: Bulk Import Members glitch with 1.01@Arse suarez : If user’s email ids are registered on gravatar.com then it will show.
In reply to: bp-photo what a GREAT plugin!Pls try by moving album folder to your member theme folder
In reply to: 1 more quick simple questionFor that you have to customize your member theme.
In reply to: Alignment in profileI think you are using IE6.
Can you please check it in other browsers like Firefox or Safari?
In reply to: Two very easy questions ….Here are links for these plugins
1. https://wordpress.org/extend/plugins/wordpress-thread-comment/
2. https://wordpress.org/extend/plugins/wp-postviews/
wordpress-thread-comment needs some modification to work only with post author
Please refer to these notes in style.css
/***
* Rename /css/custom-sample.css to /css/custom.css and uncomment the following line to load your own
* custom styles without modifying the originals (this will preserve your changes across theme updates)
*
* @import url(css/custom.css);
*/
/***
* NOTE: If you rename /css/site-wide-sample.css to /css/site-wide.css you can apply CSS styles to any
* theme that is in use across your whole site. This includes any blog or member theme. You do not
* need to add an @import declaration in this file, it will load automaticaly.
*/