codebycarter
Forum Replies Created
-
Hey jsager,
You’re able to change guest permissions for each forum and sub forum, have you tried that? If it doesn’t save your changes make sure you refresh your roles by going to WPBB -> Tools -> Refresh Roles (this basically updates your database with your current roles so any time you make changes to your roles: renames, new ones, removed ones just refresh them).
Thanks!
Forum: Plugins
In reply to: [WP Bulletin Board] Forum not showing upAre you using LAMP by any chance?
Is there a file named wpbb-template.php in your current theme folder?
You could also add this line to the wp-bulletin-board/wp-bb.php file:
error_reporting(E_ALL);To display any error / warnings you may be receiving.
If you’re still having trouble please send me an email (me at codebycarter.com) with a link to your website (if poss) and a temporary admin account login (if poss) to take a look myself.
Thanks
Forum: Plugins
In reply to: [WP Bulletin Board] FacebookAppId keeps changingThat’s correct. The App ID should be numeric and as far as I’m aware hasn’t changed. Does your App ID just contain numeric characters?
Also make sure you’ve enabled facebook support first then try again. Are you also running the latest version of WPBB, v1.0.4?
Thanks
Forum: Plugins
In reply to: [WP Bulletin Board] Delete of Forum Makes Error Messages on SiteThose warnings are generated by the capsman plugin, not WPBB 🙂 I’d recommend asking the capsman plugin author for help with that or checking you have met any requirements needed to run that plugin etc.
Forum: Plugins
In reply to: [WP Bulletin Board] how to add text above the forum boxHey,
Yep it’s just after line 109 in wp-bulletin-board/php/wpbb-index.php e.g. just after line 109 but before 110/111 you could do this:
<p class="wpbb-centered">My content here </p>Then to add a Login and Register link to those links add these two lines after line 115 if you made the above edit or 114 otherwise:
| <a href='<?php echo wp_login_url(); ?>'><?php _e('Login', 'wp-bb'); ?></a> | <a href='<?php echo site_url('wp-login.php?action=register'); ?>'><?php _e('Register', 'wp-bb'); ?></a>That should do it. Please let me know if you need any further help with this. Thanks!
Forum: Plugins
In reply to: [WP Bulletin Board] Call to undefined function absnt()Hey,
If you could open wp-bulletin-board/php/wpbb-edit-topic.php at line 302 and change:
$post_author = absnt($_POST['wpbbpostauthor']);To:
$post_author = absint($_POST['wpbbpostauthor']);Just a typo, will be fixed in the next version, thanks!
Also on a side note i have been having problems with usernames when someone makes a post it (not all the time) changes after some time to say guest instead of the user that posted it.
That could be happening because of that typo where its not assigning a correct value for the post author when editing a topic but do let me know if you encounter this again.
Thanks
Forum: Plugins
In reply to: [WP Bulletin Board] Unable to create category, forum etc on a fresh installThanks yes just realised it was in my spam folder. Couldn’t access your website, obviously have to wait until you turn the server online. Are you running LAMP or WAMP by any chance? Should work fine on WAMP although not tested by myself I assume a lot of would be using that. I’ve heard from somebody that they had trouble with the plugin on LAMP and since moving it worked fine.
Forum: Plugins
In reply to: [WP Bulletin Board] Database problemhkullas got it working after switching from LAMP which was probably causing the problem. Will be looking into this. Will mark this as read but any one can reply here if they have anything to add.
Thanks
Forum: Plugins
In reply to: [WP Bulletin Board] Unable to create category, forum etc on a fresh installHi Prototype2459,
Currently looking into this issue. If you would also be willing to email me a temporary admin account login (me at codebycarter.com) I’d be able to look into this for you or apply the fix if I find the problem on the other persons site if and when I have access.
Thanks
Forum: Plugins
In reply to: [WP Bulletin Board] Quick Reply BackgroundResolved via email, just a theme issue.
Forum: Plugins
In reply to: [WP Bulletin Board] Unable to create category, forum etc on a fresh installSounds like you may be having the same problem as this person here:
http://wordpress.org/support/topic/database-problem-29?replies=2Are you using WPBB 1.0.4? WordPress 3.4.2? Plugins you have activated alongside WPBB? The easiest thing to do would be to send me an email if you can and create a temporary admin account for me to look into this issue (email is me at codebycarter.com).
Thanks
Forum: Plugins
In reply to: [WP Bulletin Board] Database problemThat’s the first I’ve heard of this, very strange.
You’re definitely using WordPress version 3.4.2? What plugins are you running alongside WPBB? Did you deactivate and then delete WPBB and then install and activate? Could you post a link to your wordpress site here or via email? (me at codebycarter.com)
Thanks
Forum: Plugins
In reply to: [WP Bulletin Board] Facebook Registration ErrorAh that was probably it then, sorry about that. Will add something in the next version since it wasn’t clear that that is required.
Thanks!
Hey gleb,
You’ll need to rename your .mo in wp-bulletin-board/languages to:
wp-bb-ru_RU.moOh and also make sure that you change WP_LANG in wp-config.php to your preferred language. For russian translations it should be:
define('WPLANG', 'ru_RU');Looks like some strings still need to be translated. If you ever finish it and would like to release it for other russian users please let me know and I’ll add it to the script and credit you for the work.
Thanks!
Forum: Plugins
In reply to: [WP Bulletin Board] WPBB removes Adrotate buttonHey,
Yes it seems the adrotate’s plugin sets its menus pages position to the same as WPBB’s.
In wp-bulletin-board/wp-bb.php around line 350 find:
add_menu_page('WPBB Overview', 'WPBB', 'manage_options', 'wpbb_admin', 'wpbb_admin_display', '', 26);Change to:
add_menu_page('WPBB Overview', 'WPBB', 'manage_options', 'wpbb_admin', 'wpbb_admin_display', '', 27);Note it’s just the last value we’re changing. You may want / need to change this to suit your needs / any conflicts with other plugins.
Thanks!