Filip Ilić
Forum Replies Created
-
Forum: Plugins
In reply to: [AAA Option Optimizer] Start Migration??Hello @nwjeff ,
I am sorry to hear that you have issues with the migration.Clicking on the ‘Start Migration’ button should trigger migration immediately, there should be progress bar visible which updates as migration progresses.
Could you please make sure to clear all browser caches and then check the browser console for any JavaScript errors that appear when the migration is triggered?
Looking forward hearing from you.
Best,
FilipForum: Plugins
In reply to: [AAA Option Optimizer] Allowed memory size..Hello!
How are you increasing the PHP memory limit?
I am asking since 536870912 bytes is approximately 530 mbs, which means that memory limit needs to be increased in an alternative way.Also, can you confirm that you’re using the latest version of the plugin (v1.4.0)?
Looking forward hearing from you.
Forum: Plugins
In reply to: [AAA Option Optimizer] Unable to see bulk actions in new plugin installThank you for the feedback.
I replicated the issue, the problem occurs because the Events Calendar uses the same JavaScript library that Option Optimizer uses for displaying options in the table format.
I have created a Pull Request which fixes this issue, it’s a relatively simple fix and you can apply if by making these changes in the src/class-admin-page.php file
Of course the fix will be included in the next plugin release.
Thank you once again for reporting the issue.
Forum: Plugins
In reply to: [AAA Option Optimizer] Unable to see bulk actions in new plugin installHello @jarledb ,
Does other plugin features work properly on the site on which you are experiencing the problem?
Can you open the browser console and check if there are any JavaScript errors there?
Looking forward hearing from you!Thanks for your reply, I am glad to hear that everything works now!
If you experience any further issues don’t hesitate to open a support thread.Hello @jazzs3quence ,
Thank you for opening a support thread.
This looks like 2 separate issues, the first one is a bug our WP CLI list command. I have opened a Pull Request for it, if needed you can apply the fix or replace the content of entire classes/wp-cli/class-task-command.php file.The other issue is that you’re not getting the tasks displayed in the widgets, did they use to show?
Are there any JS errors in the browser console?
If there is no error, can you check the value ofprplSuggestedTask.tasks.pendingTasksJS variable in the browser console?
That variable is the source from which tasks are read on page load, so my guess is that it’s either empty for some reason (in which case I would ask you to check PHP error log) or there is a JS error which prevents widgets from displaying tasks.
Best,
FilipHello @mtg169 ,
AAA Option Optimizer detects which option is used by hooking into
allfilter, like you said, but it checks for hook names which have aoption_prefix. This is done because filter with the same prefix is fired from the get_option function, which is used to fetch options from the database. So whenever an option is fetched plugin marks it as being used.Some options might be missed, but as far as I know plugins rarely remove this hook so it is not likely to be bypassed. Other possibility is that options are used in some special case, for example during an import, data migration or in some background task (which might be run once a week / month).
If it is clear that plugin to which option belongs to is still active I would advise turning off the autoload, instead of deleting the option.
Performing search through the codebase is also not perfect as some options might be in the codebase although they are not used. Also it is resource intensive, needs to be done on every plugin / theme update and also file permissions might be an issue.
Forum: Fixing WordPress
In reply to: Edit seconds of a post published dateThanks once again for the reply, I’ll try to find a solution during the next week and if I find somenthing interesting I’ll post it here 😉
Forum: Fixing WordPress
In reply to: Edit seconds of a post published dateI am comfortable with editing php files, but I wouldn’t like to edit wordpress core files if I don’t have to.
Is there a way of adding another field for seconds next to minutes field (using some piece of code from functions.php)? Because there is a hidden field “<input id=”ss” type=”hidden” value=”00″ name=”ss”>” which looks like a field that holds value for seconds.
If there is no other way, it’s also possible to add a form field to a new panel in ‘edit post’ page (already I have a ‘debug’ panel which holds some information for easier fixing of mistakes made by importer). I’m just not sure how to change post timestamp (seconds ‘part’ to be exact) when saving post using that field.
Forum: Fixing WordPress
In reply to: Edit seconds of a post published dateThanks for the reply 🙂
I have access to the database and I know how to make a change with phpMyAmin, but I’m trying to make it possible to make change from ‘edit post’ page because many people, who are going to edit posts, don’t know how to use phpMyAdmin.
The full story is a little bit complicated, i’m importing ten of thounsands posts into wordpress with a 1min time interval between posts. Because importer makes some mistakes (rarely but it does) I need to make it possible to insert a new post between two which are already inserted.
Forum: Fixing WordPress
In reply to: Upload quotaI’m nearly done with this… Can someone tell me where (or how) on the write post page is ‘navigate away’ check being done? I can’t find it…
Filip