Forum Replies Created
-
In reply to: 500 Error when bbPress enabled
ok – something must have changed on your site, as errors don’t just appear, and it is highly unlikely that bbpress just started erroring.
disabling and re-enabling plugins is one technique (and one I recommend often), but it si not just a plugin, but combinations and outside factors.
in your case I think you now have either one or two issues
firstly ZendGuard does not work with php7, so you need to either revert to 5.4 or more probably get rid of zend guard – do you know where and why it is there?
secondly are you using any caching plugin? – these often cause the “Error: Cookies are blocked or not supported by your browser. You must enable cookies to use WordPress.” issue
In reply to: 500 Error when bbPress enabledyou might want to read this
https://blog.zend.com/2016/10/10/zend-guard-and-php-7/#.W-s-L7uNxPY
and refer your hoster back to this
In reply to: 500 Error when bbPress enabledyes this is the place for help, but it is free hep for a free product, and it is fellow bbpress users like myself that try and help, so we do this in our free time.
I do not see how the error
[Tue Nov 13 10:30:27 2018] [error] [client 192.185.1.20] Failed loading /opt/php54/lib/php/extensions/no-debug-non-zts-20100525/ZendGuardLoader.so: /opt/php54/lib/php/extensions/no-debug-non-zts-20100525/ZendGuardLoader.so: undefined symbol: zval_used_for_init, referer: http://thecardinalnation.com/login/
you present is bbpress related – is this the only error that you had ?
In reply to: request help with issue.start with
In reply to: Forums not importing correct headerroute is not including a correct header/checking
please give examples or correct and not correct so that I can understand your question
In reply to: username reply threadset $id = the number of the user eg 6 and then use
bbp_get_reply_author ($id)In reply to: 100 is limit for email notificationsummm…. AsynCRONous bbPress Subscriptions changes from bbpress one email and bcc to send lots of single emails, so you have moved to the system that your server doesn’t like.
Email providers stopping lots of emails is why bbpress moved to a single email with bcc, although now many email providers are stopping that, so it’s really hard to know what to do.
code to send in sets would be complicated
In reply to: Formattting search resultsgenesis are paid themes, so suggest you raise this with them
In reply to: Deleting Post Versions🙂
In reply to: Noob ?: How to post from backendgreat – glad you are fixed !
In reply to: Formattting search resultsgreat – glad you are fixed
In reply to: Deleting Post Versionspersonally I wouldn’t bother for such a small number, but there are lots of plugins to do this.
Just go to the repository https://wordpress.org/plugins/ and type in ‘revision’
In reply to: Noob ?: How to post from backendso you have gone to
dashboard>topics>create new topic and filled in
Title (it won’t publish without one)
ContentDid you say what forum you wanted it published in (right hand side)
In reply to: some users get email notifications, others don’tEmails are notoriously difficult to fault find, as so much is beyond the website.
So start with
1. You should be aware that many spam filters strip messages that do not come from the correct address. So if your site is mysite.com and your email address in wordpress setting/general is fred @gmail.com then it is likely that messages will be dumped in transit. You need to set up email to come from your site eg fred @mysite.com, your hosting provider can help if needed.
2. Different email providers have different rules, so an email to fred @aol.com may be treated differently than fred @google.com if google and aol have different rules as the email passes through their servers, so some may get through and others not.
3. Just bbpress?
Then you need to see if this is wordpress wide or just bbpress.
Try https://wordpress.org/plugins/check-email/
4. Some people have fixed it with this plugin https://wordpress.org/plugins/asyncronous-bbpress-subscriptions/In reply to: Formating toolbar disappears for admin onlygreat – glad you are sorted
In reply to: Formating toolbar disappears for admin onlyI meant test with just bbpress, so eliminating toolkit, which you have done.
If it was working, and now is not, then something has changed with that account.
So first, I suggest you go though the settings for the working and not working user and check any differences
In reply to: phpBB import (again)@netweb – can you help here ?
In reply to: Formating toolbar disappears for admin onlyok, so does just bbpress (ie disable bbp toolkit) get the same response
In reply to: Frustrating Email Issuesoh, and take a look at this thread
In reply to: Frustrating Email Issuesbbpress just users wordpress login, so not really a bbpress issue.
I can only suggest you either post in the wordpress support forum, or the easy WP SMTP forum
not that I know – I cab only suggest as a test you remove your string modifier and see if that fixes.
amended the previous post to
_bbp_forum_slug
so in wp-options what is_bbp_forum_slug set to ?
If forum, then set it to chat
the slug is a setting held in the database, not in code or a file.
the single forum root slug is held in wp_options in the database, and is changed by the setting in
dashboard>settings>forums>single forum slug where you have a label of ‘discuusion’ and I even with buddypress have a description of ‘Forum’, so something is messing round with that and stopping you setting ‘forum’ I think.I don’t get ‘discussion’ as the single forum label when I use buddypress, so something else is setting that, hence my suggestions above.
so if you go to wp_options table and find _bbp_root_slug you can see what it is set to.
You could just go to wp_options table and find _bbp_root_slug and set it to ‘chat’
In reply to: What file does sub-forum layout on frontpageby code
//create vertical list subforum layout function custom_bbp_sub_forum_list() { $args['separator'] = ' '; return $args; } add_filter('bbp_after_list_forums_parse_args', 'custom_bbp_sub_forum_list' );or this plugin has it as a setting in
dashboard>settings>bbp style pack>Forum Display