Search Results for '"wordpress"'
-
Search Results
-
Hello all,
Very odd issue!
I seem to be missing some forums:
http://forums.audreysargent.com/
There should be three additional forums, “The Cafe”, “The Design Divan” and “Written Role Play”.
They’re still there, is the odd thing. You just can’t see them in the forum listing on the index page, and they’re not showing up in my admin control panel either.
To prove it, here are links to each of the forums:
http://forums.audreysargent.com/forum/written-role-play
http://forums.audreysargent.com/forum/the-cafe
http://forums.audreysargent.com/forum/the-design-divan
In addition, this problem seems to happen with or without plugins- so it doesn’t seem to be a plugin issue. Though I could be wrong.
I’m not seeing any PHP errors, so I’m not sure how to diagnose the issue. It’s obvious all the content is still there, and even still accessible.
I upgraded the forum BEFORE I upgraded WordPress. Also, it is a fully integrated installation, they share the same database.
Any thoughts? Big thanks in advance to anyone willing to help me troubleshoot.
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.
I have added:
require_once(‘path/to/wp-blog-header.php’);
to my bbPress config file to allow bbPress to have access to wordpress functions. Now I want to do the reverse and add access to bbPress functions in WordPress. Is there a similar easy way to do this?
I am getting this error at my site.
Warning: mysql_get_server_info() [function.mysql-get-server-info]: Access denied for user ‘thechamp’@’localhost’ (using password: NO) in /home/thechamp/public_html/bbpress/bb-includes/db-mysqli.php on line 80
Warning: mysql_get_server_info() [function.mysql-get-server-info]: A link to the server could not be established in /home/thechamp/public_html/bbpress/bb-includes/db-mysqli.php on line 80
Warning: Cannot modify header information – headers already sent by (output started at /home/thechamp/public_html/bbpress/bb-includes/db-mysqli.php:80) in /home/thechamp/public_html/bbpress/bb-includes/pluggable.php on line 37
Warning: Cannot modify header information – headers already sent by (output started at /home/thechamp/public_html/bbpress/bb-includes/db-mysqli.php:80) in /home/thechamp/public_html/bbpress/bb-includes/pluggable.php on line 37
Warning: Cannot modify header information – headers already sent by (output started at /home/thechamp/public_html/bbpress/bb-includes/db-mysqli.php:80) in /home/thechamp/public_html/bbpress/bb-includes/pluggable.php on line 164
heres my config file
<?php
// ** MySQL settings ** //
define(‘BBDB_NAME’, ‘thechamp_wrdp1’); // The name of the database
define(‘BBDB_USER’, ‘thechamp_risal’); // Your MySQL username
define(‘BBDB_PASSWORD’, ‘xxxxx’); // …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://idjam.com/bbpress/’;
// What are you going to call me?
$bb->name = ‘Support Forums’;
// This must be set before you run the install script.
$bb->admin_email = ‘*********’;
// Set to true if you want pretty permalinks, set to ‘slugs’ if you want to use slug based pretty permalinks.
$bb->mod_rewrite = false;
// 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 = 0;
// 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 = ”; // 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://idjam.com’; // WordPress – Options->General: Blog address (URL) // Example: ‘http://example.com’
$bb->wp_siteurl = ‘http://idjam.com’; // 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’ );
?>