Search Results for 'code'
-
Search Results
-
I have an installation of bbpress 0.9 (installed independent from WordPress).
When I pull the rss feed, I get code that looks like this:
<item>
<title>Anonymous on "Hello"</title>
<link>http://forums.brynmawr.edu/topic.php?id=2#post-8</link>
<pubDate>Fri, 29 Aug 2008 21:45:22 +0000</pubDate>
<dc:creator>Anonymous</dc:creator>
<guid isPermaLink="false">8@http://forums.brynmawr.edu/</guid>
<description><p>test
</p></description>
</item>The <p> is a <p> tag that is entity-encoded (I presume so that <p> won’t be parsed as an XML tag by an XML parser).
This is causing an issue with the feed parser that I am using (lastRSS): the parser is passing the <description> contents through unchanged, and so I’m getting literal “<p>” and “<p/>” on the pages that use lastRSS.
I believe that the standard method of embedding HTML into an XML feed (or any XML document) is to use CDATA blocks:
<description><![CDATA[<p>test
</p>]]></description>and this is the way feeds from wordpress, blogger, etc are formatted. bbpress should really do the same thing so that feed parsers like lastRSS will pass through correct HTML (in this example, text wrapped by a paragraph tag, rather than text with character entities that cause the browser to display the literal characters)
Can the feed generator code be changed to use CDATA blocks?
Thank you.
I run multiple forums using a single database. I successfully upgraded my first forum. Now, I’m trying to upgrade my second. In my install of the upgrade for the second forum, at the second step, it flipped out of the install to my first forum. In bb-config, I changed this line to my database name for this forum.
$bb_table_prefix = 'clubs'; // Only letters, numbers and underscores please!
Then when I called the url for the second forum, the install re-occurred at the second step which I was able to continue successfully to the end.
When I called on the url for the second forum, it did appear. But when I try to login on the second forum, I get an error message “Could not determine site URI”. The url is suddenly my first forum “http://www.example.com/firstforum/bb-login.php”
What do I need to change so I can login to my second forum?
I upgraded from 8.3 to 9.0.2. The main forum pages are fine but I have style sheet problems when I go to a topic. My style sheet is three columns. In IE6, in a post, the main column is wrapping onto my left column, and obliterating most of my right column. I never had this problem with 8.3.
Firefox2 is readable. But there is a blank box with an “Add” button that is creating width problems. Otherwise the columns are sizing correctly.
Here is my code:
#main {
position: relative;
width: auto;
margin: 0px 0px 0px 0px;
color: #000000;
background: #ffffff;
padding: 10px;
z-index: 3;
}It appears that I need a special style now for the topics in my style sheet?
Topic: wiki bbpress? :)
Hi,
like phpBB, i think it is interesting to open a wiki (with dokuwiki?
)
why? because for example, i have many ideas of plugins, but the documentation is too small for i can understand how to do that
so, it is possible or not? :p
please please please :p
Hi,
with this plugin: http://bbpress.org/plugins/topic/live-comment-preview/
with the 1.0 alpha, the ajax effect doesn’t work, i have only the button
the author is here?
i think it is necessary to put a “last visit” field in the profile of developers here lol
Bye!
Topic: Is BBPress Any Good?
In vBulletin, if I want to pay $180, I could get the Porsche (reportedly) of message boards. In phpBB, if I want to grapple with a sizable infrastructure, I could get perhaps the most seasoned of the free forum systems.
What do I get with bbPress? Is it secure? Will it get spammed to death? Is it stable? Is it designed for personal sites or can businesses use it with confidence?
Here’s one very specific question: How do I add a link to bbPress to take people back to my WordPress home page?
BTW, the installation was a breeze.
Topic: Dreampush.com
Come check out my bbpress forum for lucid dreamers!
http://dreampush.com is the main site
http://dreampush.com/forums/ is the bbpress forum
Tell me what you think!
Topic: Design the bb_post_admin
Hi,
i would like to add icons at the function bb_post_admin in post;php
i see that is template-functions. but how to add this within edit the core files?
example, add icon at:
1401 function bb_get_post_edit_link( $post_id = 0 ) {
1402 $bb_post = bb_get_post( get_post_id( $post_id ) );
1403 if ( bb_current_user_can( 'edit_post', $bb_post->post_id ) ) {
1404 $uri = bb_get_uri('edit.php', array('id' => $bb_post->post_id));
1405 $r = "post_id ) ) . "'>". __('Edit') ."";
1406 return apply_filters('bb_get_post_edit_link', $r, get_post_id( $post_id ) );
1407 }
1408 }
in $r
thanks,
bye!