Published on September 17th, 2010 by robruifrok
I did a local installation of BBpress. After the installation procedure I get the following lines above the actual page:
Deprecated: Assigning the return value of new by reference is deprecated in C:xampphtdocsbbpressbb-settings.php on line 186
Deprecated: Assigning the return value of new by reference is deprecated in C:xampphtdocsbbpressbb-includesbackpressfunctions.wp-object-cache.php on line 108
Deprecated: Assigning the return value of new by reference is deprecated in C:xampphtdocsbbpressbb-includesbackpresspomomo.php on line 171
Deprecated: Assigning the return value of new by reference is deprecated in C:xampphtdocsbbpressbb-includesfunctions.bb-l10n.php on line 484
Deprecated: Assigning the return value of new by reference is deprecated in C:xampphtdocsbbpressbb-includesbackpressclass.wp-taxonomy.php on line 581
After login more errors follow, but no forum page
Published on September 17th, 2010 by maxumimike
Resolved, nothing to see here.
Published on September 17th, 2010 by minervaa
I am experiencing a strange problem from today. The forum suddenly stopped working.
I haven’t done anything to the forum- no edit no new plugins.
The problem is – if you click on the topics or post names it doesn’t go anywhere. It stays on the forum home page. Although it shows the topics url on the browser address.
I already deactivated few plugins (although the forum was working fine with them) just to check, but it stays the same.
I am using bbPress v 0.9.0.6
Hybrid theme
I really don’tknow where shall I look at.
I would appreciate any input from anyone.
Thanks
Published on September 17th, 2010 by topperud
Something strange happened when I tried to log in here using my old username:
I had to reset the password, but when I followed the link in the mail I only got the message “you are not allowed to change the password”??? WTF? Tried several times, and the mail arrives, but I am not allowed to change the password. Had to make a new user in the end
Published on September 17th, 2010 by VirtualityStudio
Does anyone know how to change the links of the author gravitar/name to point to their profile instead of to their website? I’ve tried a few different ways of doing this (functions.php etc) and nothing seems to work. Has anyone done this successfully that would like to share?
In the post.php:
<?php post_author_avatar(); ?>
<p><?php post_author_link(); ?>
<small> <?php post_author_title(); ?> </small>
is there a way to do this using a href perhaps???? I’ve tried this too… just not with any good results.
Thanks!
Published on September 16th, 2010 by suomynona
Several days ago I did a new install of bbpress in my wordpress root on localhost/, checked it out and all looked fine. My intention is to work through the integration of wp and bbp, but I didn’t have time to work with it then, so I went back today to try it out and find that there’s a misplaced “?>” displaying at the top of every page – before the header. I also noticed that the footer on the Appearance page of the admin panel runs across the Kakumei-blue theme so that the activate link is inaccesible.
I’ve messed around with it for a few hours – saved my bb-config.php, deleted bbpress/ and replaced it from the zip; checked permissions; repaired my mysql database; restarted my apache2 and mysql services; checked the header.php; cleared my browser cache… I’m at a loss to understand this.
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>bbPress Bulletin Board</title>
<link rel="stylesheet" href="http://localhost/wordpress/bbpress/bb-templates/kakumei/style.css" type="text/css" />
<link rel=”alternate” type=”application/rss+xml” title=”bbPress Bulletin Board » Recent Posts” href=”http://localhost/wordpress/bbpress/rss.php” />
<link rel=”alternate” type=”application/rss+xml” title=”bbPress Bulletin Board » Recent Topics” href=”http://localhost/wordpress/bbpress/rss.php?topics=1″ />
<meta name=”generator” content=”bbPress 1.0.2″ />
</head>
I’m just short of removing the database and starting over, which would be the quick and easy way out, but I would like to figure it out for the heck of it. Any ideas will be appreciated.
Published on September 16th, 2010 by Paralys
I have had a wordpress website now for some time and think its amazing first off.
My website is a gaming website for online gaming of all kinds, I wanted to install a high end discussion board/forum and after trying out a few ‘simple to install’ ones I wanted to get bbpress.
I have followed this guide: http://www.wpwebhost.com/make-bbpress-theme-match-with-wordpress-by-deep-integration/ …Step by step as my knowledge of coding isnt that great.
After hours of trying I finally got everything working!!
The problem I am facing is now getting it to ‘Fit’ to my current theme. Atm it just looks like alot of misplaced writing etc.
I think it may have something to do with the theme editing as i wasnt 100% sure what to put in there. I replaced bb_get_header(); ?> for get_header(); ?> <div id=”content class=”narrowcolumn” role=”main” and like wise for the footer but not certain if it is the right layout for my theme
my website is www.prime-gaming.com
link to the bbress www.prime-gaming.com/Forum
Thanks in advance
Published on September 16th, 2010 by alecasadei
Hi everyone,
I’ve been running my BBpress for a couple of years now and just recently, I got an error that doens’t allow me to do access it anymore.
Here is the url: http://www.iamforeverfit.com/forum
Can somebody help me? I have no clue what’s going on?
Thanks,
Ale
Published on September 16th, 2010 by jdeleon
Hi Guys
My bbpress install brings up the following error message now
—
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, cgiadmin@yourhostingaccount.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
—
Would anyone know how I would fix this? It was working fine only until a week or two ago when this error now appears.
Cheers
Published on September 15th, 2010 by kikko088
<table id=”latest”>
<tr>
<th>Forum</th>
<th>Discussioni</th>
<th>Messaggi</th>
</tr>
<?php
global $wpdb;
$query=”SELECT * FROM bb_forums WHERE topics!=0 ORDER BY forum_order ASC LIMIT 10″;
$results=$wpdb->get_results($query);
foreach ($results as $result) {
echo “<tr><td>forum_id.”‘>”.$result->forum_name.”</td>”;
echo “<td class=’num’>”.$result->forum_topics.”</td>”;
echo “<td class=’num’>”.$result->forum_posts.”</td></tr>”;
}
?>
</table>
why this code don’t display the number of discussions and posts?
kikko088