Forum Replies Created
-
In reply to: Help! 404 error, but page displaysIn reply to: Installation Constantly Breaks
Can you share the error with us?
The reason it won’t reinstall is because the installer sees tables in the database already. If you delete those, you can reinstall without a problem.
In reply to: removing raquo/or » from breadcrumbLook in topic.php and forum.php in your template files, line 3 in the version I checked. Find this:
<?php bb_forum_bread_crumb(); ?>
Make it look like this with your separator in place of
***
:<?php bb_forum_bread_crumb(array('separator' => ' *** ')); ?>
That will change the character for you.
I doubt it would be too hard to do programmatically. However, you’re going to need someone to help you with it locally. Once you figure out what fields need to be filled in, you just need to figure out where to get the data, then loop through it with PHP or your favorite language. While it can be done, I doubt you can find anyone who can explain how to in an Internet forum. It’s just work, but you need to figure out the pattern and them do it programmatically.
In reply to: Censored words?Why not make that user a bozo?
In reply to: WordPress IntegrationNot with the latest version of bbPress. bbSync used to do this for the older versions but it became problematic to use after a while.
In reply to: Coverter from WP-Forum to bbpresshttp://www.fahlstad.se/wp-plugins/wp-forum/
There are a few forum plugins for WordPress. bbPress is not one of them though.
No one has ever asked about migrating from wp-forum here as far as I know.
That means the path to your stylesheet is incorrect. Please post a link to your forum so someone can help you.
In reply to: RSS feed not working on bbpress.orgI have the same trouble. The feed is invalid. The
»
in the feed description is the problem. This came up here recently:https://bbpress.org/forums/topic/all-rss-feeds-broken#post-55730
In reply to: inove theme has a bad suspected linkWhere did you download the theme from?
In reply to: Invalid email addressWhat makes that code offending? I don’t follow.
If you take that out of the bb-config.php, can you register without the email validation problem?
In reply to: New Theme – Need Theme NameI am 99% certain all the good theme names are already taken, at least for WordPress. I say look out the window and find some inspiration and name the theme something not too literal.
BTW, the theme looks nice.
In reply to: hide subforms with crystal themeIf you don’t have time to wait around for someone to help you, you should consider hiring some help.
http://lists.automattic.com/mailman/listinfo/wp-pro
http://bbshowcase.org/forums/topic/bbpress-professionals-advertise-in-this-topic
How about this: http://labs.b5media.com/blog/creating-the-anypress-solution/
In reply to: Number shows on the top of headerI was never able to see it happen. You should probably validate the site and fix the errors. At the very least you will make it better, and you might see the problem in one of the files you edited.
In reply to: hide subforums on main page@pikatore, please start a new topic. This one is resolved and over a year old.
In reply to: Number shows on the top of headerSounds like you modified a file incorrectly. Without seeing your template files, it’s going to be hard to guess what you did wrong. You can try validating the XHTML of a page here and maybe it will point to a problem.
You can also use a text editor with syntax highlighting and you should be able to see the error, maybe an unclosed tag or something like that.
Finally, you can check the differences between the stock theme and your modified files and see if you can spot the difference.
In reply to: phpbb3 -> bbpress converter@willscootforfood – looks like the apostrophe (single quote) was not escaped before trying to insert. Can you explain what you’re trying to convert and what script you’re using? And what version of bbPress are you going to use?
In reply to: Changing Topic IDYou can change the autoincrement value for a field in phpMyAdmin. If you’re modifying the ID you will be using something like phpMyAdmin. I think there is a top menu item “Operations” then on the next page find the “table options” section and find the auto-increment value and just change it to whatever you want your next one to be.
For changing the existing topic_ids, I think there is also a reference to topic_id in the _posts table (if not, how would bbPress know what topic a post belonged to?) I think it also might be referenced for tags too. I didn’t check, but I think tags are attached to topics, so the tag would have to reference the topic id somehow as well.
This is all just thinking out loud. You should probably back up the database first then make your changes and see what does not work. Might want to recount afterward.
In reply to: Default Installation directoryYou can call that directory whatever you want. There should be no plugin that has the installation directory hard-coded. (I’ve never seen one in any case.) You can call it ‘discussions’ or ‘abcdefzyx’ or ‘forum’ or ‘forums’ and it should not matter.
In reply to: Error 500Please post a link to your site so we can gather more information.
In reply to: Bavatars doesn't work!Marius-, I think you should find someone locally who is competent enough to help you with this. Changing the folder permissions is not going to crash your server, your database or your forum. You need someone with enough confidence to help you with this locally.
In reply to: Bavatars doesn't work!Does this directory exist and is it writable (0755 permissions on the directory)
/home/michael/public_html/forum//avatars/c/c4/c4c/
Also, the double forward slash there doesn’t need to be there. This is not causing your problem, but it is unnecessary. Something has a leading slash or trailing slash that’s unnecessary.
In reply to: Add links back to wordpress siteJust edit the bbPress template file where you want the link to appear, with whatever text you want as the anchor.
If you mean links back to ALL the pages (like your WordPress page navigation shown on bbPress) please indicate that.
In reply to: Plugin for comment nesting?https://bbpress.org/plugins/topic/threaded-posts/
Not sure if that still works but that’s the only plugin I know of.
And threaded comments are built in to the latest version of WordPress, aren’t they? What does the plugin do?