Search Results for 'wordpress'
-
AuthorSearch Results
-
September 30, 2011 at 4:52 pm #121675
Walid
Participant@boonebgorges have you tried fresh 1.5 install instead of upgrading?
I have been frustrated the last 2 hours trying to do it, and the same still happen, I even updated to wordpress 3.3 on one test site to see, but still without any hope.
I’m not upgrading, I’m installing 1.5 from scratch on subdomain multisite, can you try that and see if the bug reproduced for you?September 30, 2011 at 4:19 pm #121569In reply to: May implement a Town Index with buddypress.org?
lselwd
Memberwell I was reading “bp for dummies book”, and finished today, in current 1.5 version can implement this, can you provide any hint?
I mean:
May implement a Town Index with buddypress.org? I am familiar with WordPress.org…
in main page I would like something like old yahoo.com categories[Pharmacies, Restaurants, Bookshops, Hotels, Taxis,..]… when click appear a category[eg Pharmacies] data with listings/urls/tel etc appear listing all Pharmacies in town…September 30, 2011 at 4:19 pm #121669In reply to: May implement a Town Index with buddypress.org?
lselwd
Memberwell I was reading “bp for dummies book”, and finished today, in current 1.5 version can implement this, can you provide any hint?
I mean:
May implement a Town Index with buddypress.org? I am familiar with WordPress.org…
in main page I would like something like old yahoo.com categories[Pharmacies, Restaurants, Bookshops, Hotels, Taxis,..]… when click appear a category[eg Pharmacies] data with listings/urls/tel etc appear listing all Pharmacies in town…September 30, 2011 at 4:01 pm #121567In reply to: 404 Errors on all pages
Blogurp
Participant@drmikelbrown The default theme did work with mine when I tested it after having those errors, so, you have a deeper issue. I purchased mingle It’s $40 and the ultimate theme to totally customize your website http://themeforest.net/item/mingle-multipurpose-wordpress-theme/235056 BTW, my htaccess file looks like this:
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ – [L]# uploaded files
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule . index.php [L]
php_value upload_max_filesize 16M
php_value post_max_size 16MI have subdomains and not sub directories.
September 30, 2011 at 4:01 pm #121667In reply to: 404 Errors on all pages
Blogurp
Participant@drmikelbrown The default theme did work with mine when I tested it after having those errors, so, you have a deeper issue. I purchased mingle It’s $40 and the ultimate theme to totally customize your website http://themeforest.net/item/mingle-multipurpose-wordpress-theme/235056 BTW, my htaccess file looks like this:
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ – [L]# uploaded files
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule . index.php [L]
php_value upload_max_filesize 16M
php_value post_max_size 16MI have subdomains and not sub directories.
September 30, 2011 at 1:36 pm #121557Boone Gorges
KeymasterAn update. I ran through a few tests this morning, with
`define( ‘BP_ROOT_BLOG’, 2 );`I tested on two kinds of MS installations: one with subdomains and one with subdirectories. In each case, I installed BP 1.2.10, then upgraded to 1.5. In each case, everything worked fine. The pages in the wizard dropdown were from blog 2, *not* blog 1. This is as expected; see https://buddypress.trac.wordpress.org/browser/tags/1.5/bp-core/admin/bp-core-admin.php#L535
For now, I have closed https://buddypress.trac.wordpress.org/ticket/3602. If anyone can give steps to reproduce (perhaps I’ve misunderstood something about the process), please do so on that ticket.
September 30, 2011 at 6:10 am #121537Paul Wong-Gibbs
KeymasterSeptember 30, 2011 at 1:52 am #121521In reply to: Enable anonymous comments or posts
blewinski
MemberHello,
Just wondering if you ever figure out how to do this; or if anyone else knows how to do it. I am facing a similar problem and I am a total newbie to wordpress / buddypress.
Any help would be much appreciated!
September 30, 2011 at 1:10 am #121517In reply to: Three issues with 1.5
Sketaful
MemberI’ve turned on gravatars on the default WordPress main but still no gravatars shows.
September 29, 2011 at 11:46 pm #121512In reply to: Problem with buddypress ( instalation)
xabbu1974
MemberI might actually be able to help out with this one. I was getting the same errors. Apparently this is because your wp-config.php is reading the default memory allocation of about 8meg that your host usually sets up by default. Once I edit my wp-config file to allocate 64 or 96 meg with the below instructions it popped back up fine.
https://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
September 29, 2011 at 11:35 pm #121510In reply to: 404 Errors on all pages
drmikelbrown
Member@ granville
according to the bp plugin documentation the. htaccess file was to be changed to this:
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ – [L]# uploaded files
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L]
RewriteRule ^[_0-9a-zA-Z-]+/(.*.php)$ $1 [L]
RewriteRule . index.php [L]# END WordPress
I did that. am i suppose to leave the olf RewiteCond?
Thanks
September 29, 2011 at 11:22 pm #121508In reply to: 404 Errors on all pages
granville
ParticipantHi Dr Mikel Brown
This sounds like an htaccess issue. Please see this post.https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/404-on-every-link/
To summarise, you should have a file in the root directory of your folder that is called .htaccess (there is a fullstop at the beginning of the file name). The contents of the .htaccess file should contain the following:
# BEGIN WordPressRewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]# END WordPress
Hope this helps
Rob GSeptember 29, 2011 at 7:43 pm #121491In reply to: BuddyPress 1.5 user fullname save/show errors
juanmaguerrero
Participant@boonegorges yes, please forgive me. I’m using BP 1.5 (the “definitive” version) and the last version of WordPress. Here’s the thing:
After editing the profile fields of a user and hitting the “save” button, an error shows telling that there was an error while saving the changes and if the fullname of the user was changed, it shows the username insted of the previous one.
(i.e: I set my fullname to “Boone Gorges” and hit “save”. Then the fullname field shows the value of “boongorges”).
Now checking my Database I see in “wp_users” -> boongorges I see that this fields and values… (among others):
|| user_login || boongorges
|| user_nicename || boongorges
|| user_url || (empty)
|| display_name || (empty)This was fixed on https://buddypress.trac.wordpress.org/changeset/4939 but that worked on BP 1.5 beta 2 but now with the release of “Lombardi” it got back to the same problem.
Thanks for your help, very much
September 29, 2011 at 7:17 pm #121490@mercime
ParticipantDon’t exactly know how current that list is. I would suggest double-checking compatibility of the plugin/s you want to install yourself as well. BP compatiblity is usually noted in right sidebar re plugin like you saw for BP Moderation – https://wordpress.org/extend/plugins/bp-moderation/
September 29, 2011 at 6:56 pm #121484In reply to: 1.5 and “Pages”
Yeowza
MemberOk thanks Boone, I can see why it would be used for the WordPress menus.
Hopefully bbPress can integrate these templates into shortcodes in the future.
September 29, 2011 at 6:52 pm #121482In reply to: 1.5 and “Pages”
Boone Gorges
KeymasterThe question about theming/shortcodes is not really related to the issue of WP pages in BP 1.5. BP 1.5 uses WP pages in order to integrate into WP menus, to make it easier to change permalinks, etc. There is no integration with the page templates in your WP theme.
In the future, there will be better integration with a wider variety of WordPress themes. Test out the new bbPress to get a sense of what it might look like. It might not involve shortcodes, but it will be something equally easy. In the meantime, the Template Pack is your best bet.
September 29, 2011 at 6:50 pm #121481Boone Gorges
KeymasterI don’t know how to make this work on Windows. It’s not really a BuddyPress problem – I’m guessing that a normal WP installation won’t work either, if you turn on pretty permalinks. Have a look at https://codex.wordpress.org/Using_Permalinks#Permalinks_without_mod_rewrite
September 29, 2011 at 6:42 pm #121479modemlooper
ModeratorThe Header and footer and sidebar and content area are usually in every WordPress template. You need to edit the BuddyPress files added to your theme to match the structure of your theme.
Sometimes the content area is called container or wrapper or something else. You need to match the containing div around the content to the BP files.
In step 3 it shows you a diagram of div markup. If you have never edited code you may need to hire someone to do this. On complex themes it can be a challenge.
September 29, 2011 at 5:46 pm #121474drmikelbrown
Membervia ftp i did what you stated and now i can get into the backend and see the site.
The theme is the default is wordpress’ Twenty Eleven 1.2. I assume that this means that I am having a plugin problem? my site is idreamconnection.com
now what do i need to do?
thx
September 29, 2011 at 11:54 am #121458In reply to: Three issues with 1.5
Paul Wong-Gibbs
KeymasterThe gravatar choice is controlled by WordPress’ main option. I think this is on the Reading page of the Appearance wp-admin menu.
September 29, 2011 at 6:18 am #121451In reply to: Activity Stream feed missing after upgrade
Paul Wong-Gibbs
KeymasterI can’t see how setting the front page back to showing blog posts should be broken by 1.5. All this works fine for me on my test installs (admittedly a new install, not an upgrade).
@tmcneill71 You can grab older versions from https://wordpress.org/extend/plugins/buddypress/download/
@mikepratt, Tim: What other plugins are you running. What theme. Multisite – if so, subdomain or subdirectory? Prior to upgrading, what did you have your home page set as, or was it just showing blog posts?
September 29, 2011 at 5:41 am #121447In reply to: editing adminbar
r-a-y
KeymasterThe WordPress Admin Bar (not BuddyBar) is a different bar entirely.
Try finding something on the WordPress forums:
https://wordpress.org/supportCan also try this plugin:
https://wordpress.org/extend/plugins/wp-custom-admin-bar/ (haven’t tested it myself)September 29, 2011 at 2:39 am #121440Walid
Participant@djpaul @boonebgorges
any checking happened with that problem?
https://buddypress.trac.wordpress.org/ticket/3602September 29, 2011 at 2:33 am #121439Walid
Participant@mercime I saw that you have css experience so I thought maybe you can help with that
I don’t know though why buddypress template pack doesn’t fix the integration with twenty eleven as it’s the main theme of wordpress.September 28, 2011 at 8:12 pm #121395In reply to: Add Outbound Links in the header.php
Paul Wong-Gibbs
KeymasterBuild a custom menu in the WordPress admin, and use that.
-
AuthorSearch Results