atitan
Forum Replies Created
-
Forum: Plugins
In reply to: [Math Quiz] Invalid problem. Please go back and try another one.I started wondering if your database user had enough privilege to create table?
Forum: Plugins
In reply to: [Math Quiz] Invalid problem. Please go back and try another one.Sorry, I tried it on my website, but everything works, including recreating the table.
Maybe there’s some conflict with other plugins.
Forum: Plugins
In reply to: [Math Quiz] Invalid problem. Please go back and try another one.Disable plugin and delete plugin setting from database, and re-enable it to see if table was created.
DELETE FROM wp_blog_options WHERE option_name = 'math-quiz-setting';
Forum: Plugins
In reply to: [Math Quiz] Invalid problem. Please go back and try another one.“Invalid problem” means something wrong with the problem storage.
Check if “math_quiz_problems” table exists in your database, and see if new problems getting added to database when you visit “/index.php?math_quiz_ajax=get_problem”
Forum: Plugins
In reply to: [Math Quiz] Support for wp v5.2.2Hi
I’ve updated the tested version to 5.2.
Forum: Plugins
In reply to: [Math Quiz] Refresh button not workingVisit “https://{your site}/index.php?math_quiz_ajax=get_problem” to see if the problem changes upon refreshing.
The refresh button fetches content from the url above, and then insert into webpage using Javascript.
You’ll get the same problem if the content is cached. That looks like the button isn’t working.
Forum: Plugins
In reply to: [Math Quiz] Refresh button not workingHello,
First check out your browser’s JavaScript console by pressing F12 to see if there is any red warning.
That would be big help for debugging.
Forum: Plugins
In reply to: [Math Quiz] Cannot login as admin Invalid problemSorry for the late response.
To manually disable it, just delete the plugin folder located under /wp-content/plugins/.
Forum: Plugins
In reply to: [Math Quiz] It is not working?Besides, you can download previous version and manually upload to WordPress server if old version worked for you.
Forum: Plugins
In reply to: [Math Quiz] It is not working?Check out your php errorlog to see if something went wrong.
I think it’s something about the database.
Forum: Plugins
In reply to: [Math Quiz] It is not working?Can you try out the new version 2.0.0?
Alright, I’ve released version 2.0.0 which does not rely on php session anymore.
I’ve made a new unreleased version in trunk. Can you test it?
OK, I’m able to simulate the problem you have.
The conclusion now is:
1. the plugin cannot send session cookie on your website.
2. there’s something wrong with PHP’s session_id() to restore session without using cookie.I’ll investigate and see if there’s a solution to this.
I had designed a method to work with cookie-less client.
But in your case, it seems answers are not stored in session properly.Maybe there’s something wrong with PHP session.