herrschuessler
Forum Replies Created
-
The cause for this problem seems to be in not using strict object comparison in:
/wp-content/plugins/patchstack/includes/htaccess.php on line 39and/wp-content/plugins/patchstack/includes/activation.php on line 868if ( $old_value == $value ) {should probably be replaced withif ( $old_value === $value ) {to solve this, or, if strict comparison is not possible, some other way of comparing referenced objects should be used.- This reply was modified 1 year, 2 months ago by herrschuessler.
Forum: Plugins
In reply to: [ManageWP Worker] PHP 8.1 deprecated@sradovanovic We are running the current version, the errors still are:
strpos(): Passing null to parameter #1 ($haystack) of type string is deprecatedCall Stack:
wp-includes/functions.php:7053 strpos() wp-includes/functions.php:7053 wp_is_stream() wp-includes/functions.php:2158 wp_normalize_path() wp-includes/plugin.php:768 plugin_basename() wp-admin/includes/plugin.php:1405 add_submenu_page() wp-content/plugins/worker/src/MWP/WordPress/Context.php:765 MWP_WordPress_Context->addSubMenuPage() wp-content/plugins/worker/src/MWP/EventListener/PublicRequest/AddStatusPage.php:44 MWP_EventListener_PublicRequest_AddStatusPage->addStatusPage() wp-includes/class-wp-hook.php:308 do_action('admin_menu') wp-admin/includes/menu.php:155And
str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecatedCall Stack
wp-includes/functions.php:2165 str_replace() wp-includes/functions.php:2165 wp_normalize_path() wp-includes/plugin.php:768 plugin_basename() wp-admin/includes/plugin.php:1405 add_submenu_page() wp-content/plugins/worker/src/MWP/WordPress/Context.php:765 MWP_WordPress_Context->addSubMenuPage() wp-content/plugins/worker/src/MWP/EventListener/PublicRequest/AddStatusPage.php:44 MWP_EventListener_PublicRequest_AddStatusPage->addStatusPage() wp-includes/class-wp-hook.php:308 do_action('admin_menu') wp-admin/includes/menu.php:155Forum: Plugins
In reply to: [ManageWP Worker] PHP 8.1 deprecated@ddragovic @aleksandralazic The issue is still not resolved, none of the solutions mentioned in the various support threads regarding this topic work. Are you still working on this issue and can provide an estimate as to when the issue will be resolved?
Forum: Plugins
In reply to: [ManageWP Worker] PHP 8.1 deprecatedSame issue here on a lot of sites. Please provide a fix asap.
Same here…
@wayne42 Yes please!
Hi @pascalbajorat, disabling plugins didn’t help, and, as I said, it’s a fresh install, so even trying to save the default settings doesn’t work.
That explains it, thanks! I’ll try deactivating the form module and see if that helps.
Hi @hwk-fr, thanks for your thorough answer. As I’m not using local PHP, only local JSON, and the issue only exists when your plugin is active, I’m still no sure if it might not be related to ACFE – what do you think?
Forum: Plugins
In reply to: [Quiz Maker by AYS] How to make ALL correct answers mandatory to pass ?@ays-pro I understand now. Is there any way to just show a generic message, regardless wether the selected answers are correct, as soon as the user has selected the maximum amount of answers (i.e. the number of possible correct answers)?
Or are there any action hooks that fire in that event, so that I could extend your plugin to my needs?
Best Regards
- This reply was modified 5 years, 4 months ago by herrschuessler.
Forum: Plugins
In reply to: [Quiz Maker by AYS] How to make ALL correct answers mandatory to pass ?@ays-pro Thanks for your reply.
To clarify, I’ll describe the situation:
We have a checkbox question and have filled out the “Message for the wrong answer” and “Message for the right answer” fields, but those texts never show up after the user answers that questions. Now if I understand you correctly, those texts will only show up for raido type questions. Is there any way to add a text that shows up after the user ansers a checkbox type question?
Forum: Plugins
In reply to: [Quiz Maker by AYS] How to make ALL correct answers mandatory to pass ?Dear @ays-pro,
we’re also looking forward to this issue being fixed in the next release. We also noticed that currently after answering a checkbox question, the right/wrong texts that would show up immediately after answering a radio question are not showing. Will this also be adressed in the next release?
Best regards
Great, good to know! Thanks for your great work with this plugin!
Hi Konrad,
thanks for clearing that up! Do you have any plans on expanding the documentation of your project beyond the description in the plugin directory?
Best regards
Christoph@hwk-fr There’s a WP filter hook (
wp_dropdown_users_args) that allows overriding which user (roles) will show in the standard WP author field.ACFE does’nt take this hook into account when populating the ACFE author box. Would it be possible to take this into account?