Forum Replies Created
-
In reply to: Installation for Dummy
I’m sure your database settings are wrong (cpanel has added something your names).
Check cpanel for the complete name (database and user)
In reply to: Email address as user name?yes right, at the moment the login name is used on all places in the forum, in WP you have the option to choose what user information will show up on the blog pages.
BTW. using an email address as login is not smart, just imagine you will loose the email account and you can’t recover the password because teh mail is send to the old email address.
I wrote some authentication class and most of the users are happy with a separate login name. In bbpress it’s possible to use multiple login names with same email address, this is sometimes very helpful…
In reply to: difference between permalinksquery style = ?id=12
numeric = /12
slug = /some-topic-name
In reply to: New plugin: Auto Add FavoritesOK this feature is added, check my forum for further information (link behind my name to the left)
In reply to: Text became Jibrish after moving hostingTry to add some static text to see if this is only related to database content or not
In reply to: New plugin: Auto Add Favoritesthe last needs some more code during the registration process…
I think this feature is needed to makes this plugin complete
In reply to: New plugin: Auto Add FavoritesHi I changed this function:
function auto_add_favorit_profile() {
global $user_id;
if (bb_is_user_logged_in()) {
$checked = "";
$user = bb_get_user($user_id);
if (!empty($user->auto_add_favorit)) {
$checked = ' checked="checked"';
}
echo '
<fieldset>
<legend>Add my threads automatically to my favorites</legend>
<p>Check this option to add all your threads or threads where you have posted something to your favorite list.</p>
<table width="100%">
<tr>
<th width="21%" scope="row">Activate:</th>
<td width="79%">
<input name="edit_auto_add_favorit" id="edit_auto_add_favorit" type="checkbox" value="1"'.$checked.' />
</td>
</tr>
</table>
</fieldset>';
}
}please replace this function or download the updated version via the link above and tell me if it works (it works for me)
In reply to: EMAIL WON’T SEND, FROM ANYHTINGI think that some mail headers are misformed, check the pluggable.php file in the include directory and replace the
n
withrn
(not sure if this will helpIn reply to: Apostrophe not showing by itself but with beforeMartino, I think this is related to some magic_quotes configuration from your webhost.
first disable all plugins and do some test post (tell us if you get the backslashes after doing so)
In reply to: Redirecting ErrorIn reply to: EMAIL WON’T SEND, FROM ANYHTINGjust checked his response headers:
Connection: close
Date: Wed, 16 Jan 2008 12:47:21 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET, PHP/5.0.4
Content-Type: text/html
200 OKit’s a IIS webserver
In reply to: New plugin: Auto Add FavoritesHi Edwin,
you’re right I need to fix that with the profile ID.
the information mail you about your own post is done by the “Post Notification” plugin (there is no check against the current user).
In reply to: New plugin: Auto Add FavoritesHi, Thanks for your comments.
yes you’re right the plugin is made to update the current user (only)
I will check if this would be possible to do for other users to (keymaster only) … on the other site I’m asking me if this is really needed or do you update the setting for xxx users?
In reply to: Trouble with first time loginmaybe you can post the URL?
In reply to: Trouble with first time loginHi,
do you checked the setting in the config.php file?
it must be something like:
// The full URL of your bbPress install
$bb->uri = 'http://www.domain.com/forums/';maybe you can post some URL?
In reply to: Plugin request: Announcements forumso you guys need different access levels for different forums?
I think that should be possible to do in some plugin
In reply to: Plugin request: Announcements forumI use the “Privat forums” plugin and it works great, only members can access the boards.
Btw. I think anonymous posts are not good for a forum (spam)
In reply to: Add php in forum names & descriptionsI think you’re on the wrong way, you need all forums in different languages. Will say if you 5 forums and 3 languages you have a total of 15
In reply to: Display forum parts and add comment everywhereHi,
why do you need those comment together with the forum threads?
Are they accessible on both parts of your website? That each comment / thread from your site is also available on your forum…
In reply to: dutch translationThe dutch bbpress forum on wordpress is not very active
Providing complete translations for a software in this stadium is very difficult…Prutser (cool nick name) you are on the way to become the most important contributor for the dutch translations
In reply to: How to integrate Mandigo theme in bbPress?I mentioned the DP (Digital Point) forum
In reply to: How to integrate Mandigo theme in bbPress?Hi Filippo,
I don’t think that someone will convert a theme for free, check the DP forums, there are a lot of good WP theme coder (some of them could be able to do this job for ~50usd)
In reply to: some problem with code in postingsdeactivating the AI plugin is the solution here…
In reply to: Keep spiders out of forum categories?Hi just tried this code but therer is “is_forum_category()” function in my install (ver 0.83).
Is this a new one for the next version?
In reply to: some problem with code in postingsThanks for pointing me on this, I will check the code from this plugin.
btw. is there some plugin to use bb code instead of html elements?