Search Results for 'bbpress'
-
AuthorSearch Results
-
February 16, 2011 at 12:36 pm #96045
In reply to: bb Mystique Theme v1.0
Ramiuz
ParticipantI certainly could use a sidebar in my BBPress. If I was able to install WordPress widgets in it.
So without all this, it´s mostly the header thats new..?
February 16, 2011 at 12:36 pm #101145In reply to: bb Mystique Theme v1.0
Ramiuz
ParticipantI certainly could use a sidebar in my BBPress. If I was able to install WordPress widgets in it.
So without all this, it´s mostly the header thats new..?
February 16, 2011 at 11:36 am #99386iftomkins
ParticipantThanks, Zaerl. I followed your advice and modified the error reporting. I just replaced
error_reporting( E_ALL ^ E_NOTICE );
with
error_reporting(0);
I know this could cause some headaches later on, but I’m not sure exactly how to make it specific, and in what way to modify the reporting. It definitely works, though!
February 16, 2011 at 11:36 am #104486iftomkins
ParticipantThanks, Zaerl. I followed your advice and modified the error reporting. I just replaced
error_reporting( E_ALL ^ E_NOTICE );
with
error_reporting(0);
I know this could cause some headaches later on, but I’m not sure exactly how to make it specific, and in what way to modify the reporting. It definitely works, though!
February 16, 2011 at 9:36 am #99385zaerl
ParticipantActually speaking PHP core function parse_url does generate a E_WARNING when the URL cannot be parsed. This happens if the server is running PHP < 5.3.3.
You really should turn off error reporting modifying bb-load.php line 25 (the error_reporting( E_ALL ^ E_NOTICE ); line).
After a quick (very quick) look at bbPress code it seems that they are using urlencode in urlencode_deep. I think that the right approach for the “re” GET variable is to use rawurlencode like it happens with “_wp_http_referer”.
February 16, 2011 at 9:36 am #104485zaerl
ParticipantActually speaking PHP core function parse_url does generate a E_WARNING when the URL cannot be parsed. This happens if the server is running PHP < 5.3.3.
You really should turn off error reporting modifying bb-load.php line 25 (the error_reporting( E_ALL ^ E_NOTICE ); line).
After a quick (very quick) look at bbPress code it seems that they are using urlencode in urlencode_deep. I think that the right approach for the “re” GET variable is to use rawurlencode like it happens with “_wp_http_referer”.
February 16, 2011 at 9:35 am #94964In reply to: bbPress 2.0 – Updates
ch8rt
MemberSo far I’ve had no issues just adding the contents of functions.php, all the new template files and the tag to my existing theme.
February 16, 2011 at 9:15 am #94963In reply to: bbPress 2.0 – Updates
miruru
MemberQuick question, will the bbpress plugin come with a generic theme rather than using the twentyten theme? I’m asking this because my site is not based on the twentyten theme and having a generic theme with only the relevant code would be great.
Thank you again for all your hard work on this.
February 16, 2011 at 8:23 am #99363Gautam Gupta
ParticipantFebruary 16, 2011 at 8:23 am #104463Gautam Gupta
ParticipantFebruary 16, 2011 at 5:57 am #96044In reply to: bb Mystique Theme v1.0
Gautam Gupta
Participant@Aungand@AdrienkbWill have a look into those issues.
@RamiuzNo demo yet, you can view the screenshot instead. You have to edit the options in
functions.php(there aren’t many) and a sidebar is actually not needed in bbPress, so I removed it.
February 16, 2011 at 5:57 am #101144In reply to: bb Mystique Theme v1.0
Gautam Gupta
Participant@Aungand@AdrienkbWill have a look into those issues.
@RamiuzNo demo yet, you can view the screenshot instead. You have to edit the options in
functions.php(there aren’t many) and a sidebar is actually not needed in bbPress, so I removed it.
February 16, 2011 at 4:28 am #99362intimez
ParticipantGreat job Gautam Gupta!!!! Keep it up!!!
February 16, 2011 at 4:28 am #104462intimez
ParticipantGreat job Gautam Gupta!!!! Keep it up!!!
February 16, 2011 at 3:56 am #99391In reply to: Buddypress forums to bbPress plugin
LPH2005
MemberThank you Rich. Yes, I expected that the conversion would be the last part of the coding. My questions really boil down to a curiosity if someone even started to look at this topic.
February 16, 2011 at 3:56 am #104491In reply to: Buddypress forums to bbPress plugin
LPH2005
MemberThank you Rich. Yes, I expected that the conversion would be the last part of the coding. My questions really boil down to a curiosity if someone even started to look at this topic.
February 15, 2011 at 10:29 pm #99361Anonymous User 5853594
InactiveGreat job Gautam!
February 15, 2011 at 10:29 pm #104461Anonymous User 5853594
InactiveGreat job Gautam!
February 15, 2011 at 8:29 pm #99390In reply to: Buddypress forums to bbPress plugin
Rich Pedley
Memberconvertors will be one of the last things to be done, once formats and data strucrure are finalised etc.
February 15, 2011 at 8:29 pm #104490In reply to: Buddypress forums to bbPress plugin
Rich Pedley
Memberconvertors will be one of the last things to be done, once formats and data strucrure are finalised etc.
February 15, 2011 at 8:28 pm #99360Rich Pedley
MemberWell deserved, congrats.
February 15, 2011 at 8:28 pm #104460Rich Pedley
MemberWell deserved, congrats.
February 15, 2011 at 8:21 pm #99379xlrdxrevengex
MemberNo one huh?
February 15, 2011 at 8:21 pm #104479xlrdxrevengex
MemberNo one huh?
February 15, 2011 at 8:07 pm #99316In reply to: Overriding Buddypress search with bbpress search?
markduffy78
MemberHere is the SQL
SELECT
post.post_id,
post.topic_id,
topic.topic_title,
post.post_text
FROM bb_posts post
LEFT JOIN bb_topics topic
ON topic.topic_id = post.topic_id
WHERE topic_title LIKE ‘%searchterms%’ OR post_text LIKE ‘%searchterms%’;
-
AuthorSearch Results