Forum Replies Created
-
In reply to: Different Backgrounds
This would be pretty easy to do within a theme.
In reply to: require_once problemsThis would probably work:
require_once(BBPATH . ‘../wp-blog-header.php’);
There may be some trickery you could do using iFrames to get the two different domains sending cookies at the same time on login. It wouldn’t be pretty though, and you would have to really test your code for vulnerabilities.
If you can wait a couple of days, WordPress/bbPress integration is a lot easier with a combination of WordPress version 2.5 and bbPress version 0.9
In reply to: here’s a trick to fix Kakumei author info overflowActually, this was fixed and tested when Gravatars was implemented in core. I’ve further refined the fixes today and tested across numerous browsers.
Maybe your CSS was cached? Another reason to be running with a CSS version in the stylesheet link uri perhaps?
In reply to: cannot access pig2twig.co.uk website – help!Looks like we have a small group of pig2twig [?] forum users (not admins) seeking support here.
We cannot help you if you are a user, you need to contact the administrator of that forum (which is not anyone here).
Thanks.
In reply to: bbPress 0.9 release date@ _ck_
I’ve added information about the new conventions for storing active plugins and the active theme to the notes.
In reply to: bbPress 0.9 release datePlugin developers read this!
https://bbpress.org/blog/2008/03/bbpress-09-notes-for-plugin-developers/
In reply to: bbPress 0.9 release date@ SteveAgl
Potentially there are strings still going into the release now. We will be sure to release a .pot file soon after the release is available.
In reply to: bbPress 0.9 release dateAlso, the cookies have changed structure.
I’ll have to re-check the password hashing plugin too.
We’ll do our best to make sure it is simple enough to integrate with older WordPress installs too.
In reply to: Diacritic letters i username? Like GöranThat plugin is old and won’t work with 0.8.4 (and maybe not with 0.8.3.1)
Once 0.8.4 is released this should work as a plugin for both WordPress and bbPress:
<?php
/*
Plugin Name: Lax user names
Plugin URI:
Description: Makes all user name sanitisation non-strict
Author: Sam Bauers
Version: 0.0.1
Author URI: http://unlettered.org/
*/
function i18n_sanitize_user($username, $raw_username = false, $strict = false) {
if ($strict) {
return sanitize_user($raw_username);
} else {
return $username;
}
}
add_filter('sanitize_user', 'i18n_sanitize_user');
?>In reply to: problem getting ‘support forum’ plug-in to workIt probably has to do with your older version of bbPress, but I’d like to fix the problem on your version anyway.
Can you fid out what the error is in your PHP error log and post it here?
I’ll fix it and release a new version for you to try.
In reply to: Is anyone else having weird cookie issues here?I can confirm that the cookie format has changed. But I’m not sure when it happened. Clearing your cookies and then logging in again will fix this.
The maximum length these cookies will last is 2 weeks. This is set in the cookie contents, not just on the cookie expiry time.
If you *really* want to extend the cookie expiration then you can edit the contents of your cookie as well, the contents look something like this…
example%7C1204120812%7Cbdef31425bdedbed67251652
…or this…
example|1204120812|bdef31425bdedbed67251652
…depending on your browser.
If you set a distant expiry time on the cookie and also edit the second chunk of the cookie (which is an epoch time) to some high number you can get a fairly persistent cookie.
In reply to: Thanks chrishajer and _ck_I meant “guys” in it’s androgynous sense of course.
This might be something that a third-party would like to do, but I don’t think we will do it here. Certainly it would be welcomed, and actually you would probably do a decent job of it _ck_.
In reply to: Copyright QuestionSessionX, what is the issue with bbpress.de, as far as I can tell the forums are still active? There is nothing stopping you using a domain name with bbPress in it, but it would be nice if you clarified your “unofficial” position and provided links back to here.
In reply to: Installation Error MessageAkismet key gone.
In reply to: Installation Error MessageYour WordPress table prefix needs to be different to your bbPress table prefix.
In reply to: Proposed method for file attachments and uploadsWe almost certainly won’t write this into core, but if someone wants to write this and they are missing the necessary filters/actions in core to do it we can easily add those for them.
In reply to: Now that interface is dead…We’re in the process of writing out Prototype. Can you give us some links to the discussions you mentioned about packed JS.
In reply to: Plugin: Avatar UploadThat should be fixed now.
In reply to: Install4free.bbpress.org?Unfortunately there are cookie and password hash incompatibilities between 1075 and the current release of WordPress. Otherwise we probably would release it.
In reply to: TalkPressAlso, BackPress may or may-not be incorporated into WordPress. bbPress is a testing ground for the concept. If it doesn’t get incorporated into WordPress it doesn’t really matter, hopefully we’ll at least have a better structured core in bbPress as a result.
In reply to: TalkPressI don’t think the concept of upgrading plugins to met the new requirements of a version is unheard of or that big a deal.
Most deprecated functions will probably be maintained via the deprecated.php include file, but we are actually considering clearing out most of that deprecated.php include when 1.0 is released.
We have generally searched the current plugin repository for each of the few functions we have dropped so far during the BackPress migration. If we don’t find it we have been reasonably confident that dropping the function won’t cause any problems.
We will attempt to work with the current plugin devs to get their plugins up to scratch when the time comes.
In reply to: bbPress Session Variable NamesIf your site is at:
And bbPress is at:
http://www.example.com/forums/
Then you will need to add this line to your config.php file…
$bb->cookiepath = ‘/’;
That way your code in the base directory that is trying to read the cookies will be able to do so.