Forum Replies Created
-
In reply to: Error with strtotime() function
It’s just a warning. You should not display warnings to the browser on a production site.
Are you using PHP 5.3?
I think this is fixed in the trunk release… Can’t recall which ticket.
Additionally, login-less posting is already in the trunk version of bbPress. The next release will have that feature built in with no need for a plugin.
In reply to: What. The. Heck. Is. Going. On!This thread stopped being helpful long ago, so I am closing it.
In reply to: What. The. Heck. Is. Going. On!Pagal, please direct your energy toward something constructive. And refrain from personal attacks.
In reply to: What. The. Heck. Is. Going. On!pagal, I deleted that useless comment as well
In reply to: What. The. Heck. Is. Going. On!pagal, I deleted your post. Your other topic has been closed. Further comments along the same lines will be deleted.
In reply to: Cannot see custom themes ?So, if the theme is where you say it is, why doesn’t this come up?
http://blog.promomachine.com/bbpress/my-templates/promomachines/style.css
Also, this should work:
http://blog.promomachine.com/bbpress/my-templates/promomachines/screenshot.png
Both are not found. It doesn’t look like a permission issue. That would return a different error.
In reply to: Whoa! (bbPress.org 2.0 is live)Yes, if the updates work as designed. We always were running the trunk version, but for some reason, the updates didn’t always work. I’m not even sure when they run. But the new code appears here automatically.
In reply to: Cannot see custom themes ?I just used your header on a copy of the kakumei theme in my my-templates directory, and it was activated and shows up fine.
My guess is that it’s permissions (or maybe who owns the files.)
Can you post a file listing of the directory where bbPress is installed, showing permissions and ownership? Screenshot or actual file listing is OK. It’s generally from incorrect permissions.
In reply to: Cannot see custom themes ?Screenshot is fine, just leave it. I was only wondering if there would be one in the screenshot.
Yes, post a screenshot of the appearance panel. Sorry for the confusing terminology. I forget what it’s called in different versions.
Post a screenshot of the appearance panel please. Just wondering what it’s looking like.
Do you have two instances of bbPress installed, where you might be accessing the wrong one and thus not seeing your theme?
In reply to: Cannot see custom themes ?Post your style.css header here please. Actually, post it at pastebin.com and link it here. It will get garbled here.
Also, do you have a screenshot.png or screenshot.jpg in the theme folder?
Can you post a shot of the themes selection in your bb-admin?
In reply to: Cannot see custom themes ?Nothing else I can think of. Are you sure it’s not a folder inside a folder inside my-templates? It should be:
my-templates (755 permissions)
–template-folder (755 permissions)
—-style.css (644 permissions with a proper header)
There’s not much more to it.
In reply to: bbPress 1.1 – Maybe Soon!Rescued from Akismet
In reply to: Whoa! (bbPress.org 2.0 is live)Heh – the update finally took place automatically. We added that revision to the header a while back, but the code was not being updated here.
Also, We’re actually running 2442 here – the note I added to the version was the current revision. I should have jumped ahead one when I checked the code in. So, trunk and here are the same thing, despite the meta header.
In reply to: Spam Posts in Plugin ForumThanks for pointing that out. I never check there for spam. I have a log in here for moderating, and author permissions on the blog, but I don’t think I have any permissions there (I’m just a member there.)
Maybe someone will see the comments here.
In reply to: noob bb/wp installation issuesDeep integration is when you include wp-load.php in your bb-config.php, so that you have access to WordPress functions (like get_sidebar(), get_header()) in bbPress. It’s not recommended, and it’s not an official bbPress term by any means. There are just several different types of integration and calling this one “deep” helps keep things straight.
In reply to: Whoa! (bbPress.org 2.0 is live)There’s no such thing as bbPress 2. There is a new theme here which some people are calling bbpress.org 2 or bborg 2.
This site is running the 1.1-alpha trunk branch, not sure of the revision. It hasn’t been updated in a couple weeks.
In reply to: Trac Updates for 1.1“I believe we should focus on what needs to be done for 1.1, and not do additional coding.”
Agreed. Fix bugs, not new features.
In reply to: Using login_form from bbPress on a WordPress sitePagal, please describe the problem you’re having in a new topic. It’s not clear what is happening, when it’s happening or what you expect to happen instead. Please start a new topic with that information.
In reply to: Eliminate the freshness columnIt’s just a column in a table in the template file front-page.php. Just eliminate that column from the header row and the table body, similar to how “Voices” is commented out (or eliminated.)
In reply to: noob bb/wp installation issuesOh well again. Not sure why the white background appeared in the previous post. Maybe that was always there
In reply to: noob bb/wp installation issuesOh well
Trying
<?php
if (function_exists('phpinfo')) {
phpinfo();
}
?>
[code]
<?php
if (function_exists('phpinfo')) {
phpinfo();
}
?>
In reply to: noob bb/wp installation issuesWow, backticks in this post actually formatted the code sort of nicely (with a white box.)
TEST:
<?php
if (function_exists('phpinfo')) {
phpinfo();
}
?>In reply to: noob bb/wp installation issuesThrow the “folder” below WordPress.
You should put it inside a FOLDER in the root of your WordPress site. The name of that folder determines the URL where the forum will be accessible on the Internet.
So, if your WordPress site is at http://www.example.com/ , and you create a folder called bbpress in your WordPress root (and put all the bbPress files in there) then your bbPress forum will be accessible at http://www.example.com/bbpress/
If you don’t want bbpress in your url, call the folder where you put the files something else. For example, here it’s called “forums”. You can use forum, discussion, community, etc. That will be part of the URL where you access the forum.
/var/www/html/wordpress/wp-content/
/var/www/html/wordpress/wp-admin/
/var/www/html/wordpress/bbpress/That is where the folder will go; on the same level with wp-content and wp-admin. It is at the same level.
In reply to: Download locationYour best bet is to download it via subversion. Grab the trunk release revision r2434.
svn co -r2434 http://svn.automattic.com/bbpress/trunk ./forums
That will check out revision 2434 which is very stable, into a directory called forums on your server.