Search Results for 'test'
-
Search Results
-
When I try to activate Akismet in my site admin>plugins panel I get this error:
Plugin could not be activated; it produced a Fatal Error.
But then I notice that there IS an Akismet Spam tab in my content panel–and it’s blocking posts from normal users and marking people as Bozos. What the heck? Am I doing something wrong or is Akismet incompatible with the latest release? Ahhh! Frustrating!
Topic: template for post-form label
I’m currently editing the default theme template for the latest version. Everything is going well, except I can’t find the code reference for the “Reply” label (it shows up as
<h2 class='post-form'>Reply</h2>
in the HTML output. The rest of this section is editable in post-form.php. Where do I need to look to find the section (basically I just want to either remove this label and add a new one separately, or else be able to wrap some more code around it). The only other thing which may shed some light on this is the preceeding code:do_action( 'post_form_pre_post' );
but I have no idea what this function does.Topic: bb-Bluesands
I just wanted to mention that I’ve finished up my bb-Bluesands theme as a complement to my Bluesands theme for WordPress. Feel free to download and test it out – and let me know if you run across any bugs.
Topic: newbie css customisation
hey guys,
i have little coding experience, i could do a fair pimp of my myspace page but that’s about it – this php stuff is all new to me. I’ve just installed bbpress as a subdirectory of my wordpress blog, and I want to do something really simple: I want to change the color of the rollovers when you mouse over the forum topic. On this guide I read, it said to change this line:
#latest tr:hover, #forumlist tr:hover, #favorites tr:hover { background: #330099; }
(specifically, the ‘background’ tag), but as you can see, although I’ve entered in a bright color and re-uploaded the style.css file, it remains a vague greyish sorta color.. where am I going wrong here?
Thanks in advance folks..
I just installed bbPress into the same database as my wordpress blog. Now I get an error when trying to use it.
test blog: http://www.kidoinfo.com/stage/
forum: http://www.kidoinfo.com/stage/bulletinboard/
Maybe it’s because I don’t understand the difference in one of the setup parameters:
“If you’ve installed bbPress into a subdirectory of your WordPress installation, define $bb->wp_home and $bb->wp_siteurl as your WordPress blog address and WordPress address”
-I think they have the same address: http://www.kidoinfo.com/stage/
(not this is a test version of the site that is password protected) NOTE: if it’s not possible to troubleshoot this error because the test site is behind a password, let me know and I’ll go ahead and put it in the public site, but I’d rather not until it’s all set up.
Here’s the error I’m getting:
You can check the settings in wp-config.php and see if they’re the same.
Warning: Cannot modify header information – headers already sent by (output started at /home/kidoinfo/public_html/stage/bulletinboard/config.php:1) in /home/kidoinfo/public_html/stage/bulletinboard/bb-includes/pluggable.php on line 37
Warning: Cannot modify header information – headers already sent by (output started at /home/kidoinfo/public_html/stage/bulletinboard/config.php:1) in /home/kidoinfo/public_html/stage/bulletinboard/bb-includes/pluggable.php on line 37
Warning: Cannot modify header information – headers already sent by (output started at /home/kidoinfo/public_html/stage/bulletinboard/config.php:1) in /home/kidoinfo/public_html/stage/bulletinboard/bb-includes/pluggable.php on line 164
and here’s the config info for WordPress blog and for bbpress:
WordPress:
wp-config.php
<?php
// ** MySQL settings ** //
define(‘DB_NAME’, ‘kidoinfo_wrdp3’); // The name of the database
define(‘DB_USER’, ‘kidoinfo_wrdp3’); // Your MySQL username
define(‘DB_PASSWORD’, ‘xxxxxxxxxxxx); // …and password
define(‘DB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value
// define(‘DB_CHARSET’, ‘utf8’);
// define(‘DB_COLLATE’, ”);
// You can have multiple installations in one database if you give each a unique prefix
$table_prefix = ‘wp_’; // Only numbers, letters, and underscores please!
// Change this to localize WordPress. A corresponding MO file for the
// chosen language must be installed to wp-content/languages.
// For example, install de.mo to wp-content/languages and set WPLANG to ‘de’
// to enable German language support.
define (‘WPLANG’, ”);
bbPress:
config.php
You can check the settings in wp-config.php and see if they’re the same.<?php
// ** MySQL settings ** //
define(‘BBDB_NAME’, ‘kidoinfo_wrdp3’); // The name of the database
define(‘BBDB_USER’, ‘kidoinfo_wrdp3’); // Your MySQL username
define(‘BBDB_PASSWORD’, ‘xxxxxxxxxxxx’); // …and password
define(‘BBDB_HOST’, ‘localhost’); // 99% chance you won’t need to change these last few
define(‘BBDB_CHARSET’, ‘utf8’); // If you are *upgrading*, and your old config.php does
define(‘BBDB_COLLATE’, ”); // not have these two contstants in them, DO NOT define them
// If you are installing for the first time, leave them here
// Change the prefix if you want to have multiple forums in a single database.
$bb_table_prefix = ‘bb_’; // Only letters, numbers and underscores please!
// The full URL of your bbPress install
$bb->uri = ‘http://www.kidoinfo.com/stage/bulletinboard/’;
// What are you going to call me?
$bb->name = ‘Kidoinfo Bulletin Board’;
// This must be set before you run the install script.
$bb->admin_email = ‘douglas.itkin@gmail.com’;
// Set to true if you want pretty permalinks, set to ‘slugs’ if you want to use slug based pretty permalinks.
$bb->mod_rewrite = ‘slugs’;
// The number of topics that show on each page.
$bb->page_topics = 30;
// A user can edit a post for this many minutes after submitting.
$bb->edit_lock = 60;
// Your timezone offset. Example: -7 for Pacific Daylight Time.
$bb->gmt_offset = -5;
// Change this to localize bbPress. A corresponding MO file for the
// chosen language must be installed to bb-includes/languages.
// For example, install de.mo to bb-includes/languages and set BBLANG to ‘de’
// to enable German language support.
define(‘BBLANG’, ”);
// Your Akismet Key. You do not need a key to run bbPress, but if you want to take advantage
// of Akismet’s powerful spam blocking, you’ll need one. You can get an Akismet key at
// http://wordpress.com/api-keys/
$bb->akismet_key = ‘xxxxxxxxxxxx’; // Example: ‘0123456789ab’
// The rest is only useful if you are integrating bbPress with WordPress.
// If you’re not, just leave it as it is.
$bb->wp_table_prefix = ‘wp_’; // WordPress table prefix. Example: ‘wp_’;
$bb->wp_home = ‘http://www.kidoinfo.com/stage/’; // WordPress – Options->General: Blog address (URL) // Example: ‘http://example.com’
$bb->wp_siteurl = ‘http://www.kidoinfo.com/stage/’; // WordPress – Options->General: WordPress address (URL) // Example: ‘http://example.com’
/* Stop editing */
if ( !defined(‘BBPATH’) )
define(‘BBPATH’, dirname(__FILE__) . ‘/’ );
require_once( BBPATH . ‘bb-settings.php’ );
Thanks in advance for any assistance people can provide.
Hi,
I’ve just launched a new site bbpressraw.com. The site provides a set of lean & mean bbPress themes that are designed to enable you to quickly develop your own custom bbPress themes. They should save you a great deal of time if you are trying to create your own theme from scratch.
The themes are compatible with and have been tested with bbPress 0.8.3.
A number of layout variations have been provided, including:
- 1col_fixed: bbPress blank 1-column theme with fixed width
- 1col_fluid: bbPress blank 1-column theme with fluid width
- 2col_fixed_left: bbPress blank 2-column theme with left sidebar and fixed width
- 2col_fixed_right: bbPress blank 2-column theme with right sidebar and fixed width
- 2col_fluid_left: bbPress blank 2-column theme with left sidebar and fluid width
- 2col_fluid_right: bbPress blank 2-column theme with right sidebar and fluid width
For now the themes have been made available. During the next week I’ll be posting some tips to get you up and running quickly!
Enjoy!
I just upgraded to the latest wordpress 2.3 and bbpress 0.8.3 and now when I try and access any page I get the following error at the top of the page:
Warning: Invalid argument supplied for foreach() in bb-settings.php on line 173
I checked the bb-settings.php file and the line looks like:
foreach ( glob(BBPLUGINDIR . ‘_*.php’) as $_plugin )
I checked BBPLUGINDIR to see if it’s been set correctly, and it does indeed point to the location of my-plugins.
I’m running PHP5 with a mamp server on os x.. I’ve never had a problem with bbpress before (being using it for a few months now), and only saw this error with the upgrade.
has anyone else seen this, or know how to remove it?
cheers,
Jason
Hey!
So after the rather simplified installation and integration with WordPress, I finally finished setting up the forum section of my website. But after several unsuccessful attempts, I was unable to get Sub-Forums working. All of the forums I create just show up on the home page as a top-level forum. I then try to put it under a parent forum, but it just doesn’t work. I try everything. I am currently running the latest version of bbPress witht he WOrdpress INtegration Plug’-In installed. I ask that someone please help as this is very important towards the deployment of my site
THANKS!
K
Topic: Can’t see user profiles
I’ve just installed bbPress 0.8.3 in /forums/ in WordPress 2.3, but when I click on a user name or profile to inspect or edit, I’m taken back to the front page of the blog.
Hovering over the link shows [blog URL]/forums/profile/[user name]. Hovering over the Edit link gives [blog URL]/forums/profile/[user name]/edit.
Other than that, it seems to be working, although I haven’t tested it fully.