Forum Replies Created
-
In reply to: Install glitch: “Username not found.”
Have you had any luck with this Kessel? Did it let you install? Do you have a URL we can take a look at?
Trent
In reply to: Chinese Tag Test (Works!)It worked! I am renaming this topic.
Trent
In reply to: How to get to admin page?When the install is live on the internet, it seems to be easier to fix. The fact that this install of your is on a localhost can arrive as so many different problems. Check out the following posts:
https://bbpress.org/forums/topic/821?replies=5#post-5025
https://bbpress.org/forums/topic/820?replies=3#post-5018
https://bbpress.org/forums/topic/795?replies=21#post-4852
https://bbpress.org/forums/topic/701?replies=7#post-4362
https://bbpress.org/forums/topic/730?replies=9#post-4424
Are you testing? Is that why you are installing on your own computer? Do you have a host to test this out on?
Trent
In reply to: User ID = 999999999?I wish I could help you on that one…..you don’t remember what you changed? Do you have a backup?
Trent
In reply to: How to limit latest discussion topics?This is a setting in your config.php, but if you are interested in limiting discussion based on time, check out this plugin:
https://bbpress.org/plugins/topic/21?replies=1
Otherwise:
// The number of topics that show on each page.
$bb->page_topics = 30;Trent
In reply to: How to get to admin page?That seems to be the easiest to integrate the 2 together, but not necessary.
Trent
In reply to: User ID = 999999999?When you are integrated with bbPress, it uses the wp_user table for users. It shouldn’t have done anything to your WP install just integrating with bbPress. That is strange. I don’t think I have ever seen this one. Even with both integration plugins, registering in either program I can’t replicate this. Anyone else seeing this as well?
Trent
In reply to: how to integrate bbpress0.8.1 to WPMU 1.1.1?This thread has the most recent WPMU stuff that I know of.
https://bbpress.org/forums/topic/835?replies=7
Trent
As long as your wordpress default user role is subscriber, it should be working…hmm. If not, maybe post a comment on that plugin in the bbpress.org/plugins/ repository. I am pretty sure it should work that way.
Trent
In reply to: Profile Page and PermalinksIn reply to: Profile Page and PermalinksI can’t seem to find it right at the moment, but Null had a post about this…..let me keep looking.
Trent
In reply to: How to get to admin page?As long as you have the correct database information, try my changes.
Trent
In reply to: How to get to admin page?Your wordpress address at the bottom is http:/localhost and wouldn’t it be http://localhost/wordpress/ ? What is the url that you can access wordpress at? I am assuming that it is what I said with http://localhost/wordpress/. If that is the case, these would be the changes:
$bb->wp_home = 'http://localhost/wordpress';
$bb->wp_siteurl = 'http://localhost/wordpress';As well, if that is the actual URL that you use for wordpress, then these:
$bb->domain = 'http://localhost/wordpress';
$bb->path = '/bbpress/';Then, you have another problem and need to change to this:
$bb->akismet_key = 'false';
Try that and report back.
Trent
In reply to: Adding a plugin admin page into the admin menuHave you looked at the way the admin pages create the main menu options? That would be the only way off the top of my head that you could figure it out right now.
Trent
In reply to: FavouritesI don’t think the way the default system calls the favorites changing will happen anytime soon, but a plugin would definetely work to pull that information from the database in the way you want…..just need a plugin author to take this on!
Trent
In reply to: get_forum_link modificationIn reply to: Statistics in the sidebarIt would require a quick plugin. There is already a plugin to have the recent discussions in bbPress in wordpress, but it would be just another simple plugin using the calls made in statistics.php into a wordpress plugin.
Trent
In reply to: phpBB -> bbPress and WordPress togetherSorry to get back to you late here. I would imagine that importing from phpBB into bbPress will associate the users into bb_users. Being integrated, bbPress uses wp_users. That might cause some problems. Maybe you can edit the phpBB => bbPress importer to put the users into wp_users versus bb_users. That being said, *****BACKUP EVERYTHING FIRST******
You might want to install a test install on your server and try it there first as I am not sure what the consequences of doing it would be. Nothing too painful, but it might make you have to make a few changes to make sure the posts get associated with the right authors! One way to find out! Good luck!
Trent
In reply to: How are permalinks created?Can’t remember the exact emails, but there has been talk in the bbDev Mail List. Maybe do a little searching in there as mdawaffe and SamBauers have been discussing it!
Trent
In reply to: Profile Page and PermalinksWill this work?
<?php echo "<a href="".get_user_profile_link($member->ID)."">".$member->user_login."</a>"; ?>
Trent
In reply to: How to get to admin page?If you installed it correctly, it should show your forum at the location that you setup for the forum. The admin path would be /bb-admin/
Trent
In reply to: Profile Page and PermalinksFor the permalinks, put the following in your .htaccess file in your root and then turn mod_rewrite on in your config.php:
Options +MultiViews
What exactly do you want for the last poster versus the author? Explain to me like I am 5 years old because sometimes I act like it
Trent
In reply to: Titles for topic replies?Sounds good! When you get this fixed up, create a new entry with a title like “Plugin: Topic Reply Titles” or something like that so that people know where to find it and maybe think about going over to the ‘Extend” tab and adding it to the plugin repository!
Trent
In reply to: Website IntegrationYou can set the bbPress cookies to whatever you want to integrate with your site’s cookies. It is a matter of defining them in your config.php and can be found at:
https://bbpress.org/documentation/integration-with-wordpress/
Trent
In reply to: Problem with the Support Forum pluginThat is where I am confused as well. I don’t think that I have ever seen the icons Mike! Without the icons, does it appear to be working? As well, Aditya will be in the forum early next week again!
Trent