Gary Pendergast
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Automatic Updates] web site stuck in maintenance modeDo you have anything in your web server error logs related to WordPress? It sounds like the plugin upgrade is being killed part-way through for some reason.
Forum: Plugins
In reply to: [Advanced Automatic Updates] Disabling automatic updates via wp-config.phpI like this idea! I’ve just added the AUTOMATIC_UPDATER_DISABLED wp-config option, it’ll be available in the next release.
Forum: Plugins
In reply to: [Advanced Automatic Updates] Call to undefined function plugin_basename()Great to hear!
Forum: Plugins
In reply to: [Advanced Automatic Updates] Call to undefined function plugin_basename()A few thoughts:
* On the settings page, do you have all the options checked to keep WordPress, your themes and plugins up to date? (Only the WordPress core option is checked by default.)
* Do you have the Better WP Security plugin installed? If so, you will need to stop it from hiding updates.
* When you normally click the Update button, does everything update automatically? Do you need to type in FTP login details?Forum: Plugins
In reply to: [Advanced Automatic Updates] Call to undefined function plugin_basename()Automatic Updater is not meant to be accessed directly, it’s a plugin for WordPress.
In wp-admin, go to Settings -> Automatic Updater to configure it.
Forum: Plugins
In reply to: [Advanced Automatic Updates] Add changelog link to update emailThanks for the feedback!
The email already includes a link to the plugin page for each updated plugin, so you can click on that, then go to the Changelog page.
The problem with providing a changelog link for every plugin is that not all plugins use the Changelog section, or they sometime maintain their changelog offsite.
Forum: Plugins
In reply to: [Advanced Automatic Updates] iThemes Tailored LoginYou’ll need to contact iThemes, I’m unable to debug this issue due to not having access to the Tailored Login source.
Feel free to pass on my email address to the iTheme’s crew, gary@pento.net.
There shouldn’t be a problem with any of the cache plugins, Automatic Updater just uses the core update functions.
There may be an incompatibility with Better WP Security, which blocks some update information. In Security -> Tweaks -> Dashboard Tweaks, could you please check that all of the update notifications boxes are unchecked?
Forum: Plugins
In reply to: [Advanced Automatic Updates] Semi-OTIf the one click updates don’t work, unfortunately Automatic Updater won’t work, either.
Have you had any luck getting it working? Tried checking your server setup against the Codex recommendations?
http://codex.wordpress.org/Updating_WordPress#Automatic_UpdateForum: Plugins
In reply to: [Advanced Automatic Updates] Cannot redeclare class Plugin_UpgraderI think I’ve fixed this, I’ll be releasing a new version shortly with the fix in it – could you test that the error stops after upgrading?
Forum: Plugins
In reply to: [Advanced Automatic Updates] not working?This is a bit tricky to diagnose without having a reliable way to reproduce it.
To start with, could you try disabling all your plugins except Automatic Updater, and seeing if it’s able to install updates then?
Forum: Plugins
In reply to: [Advanced Automatic Updates] Does not work on windows serverDid you have any luck figuring out what was preventing the updates?
Forum: Plugins
In reply to: [Advanced Automatic Updates] File/Folder permissions required?Can you click the Update button in WordPress normally and it just updates? If so, you have the correct permissions!
If not, check out the Codex here:
http://codex.wordpress.org/Updating_WordPress#Automatic_UpdateForum: Plugins
In reply to: [Advanced Automatic Updates] How to trigger a backup?I don’t know how to trigger a backup for this plugin, but your code will look something like this:
add_action( 'auto_updater_before_update', 'the_backup_function' );You’ll need to ask the backup plugin authors what function to replace
the_backup_functionwith.This code can be placed anywhere, though I naturally recommend you don’t put it somewhere it could be overwritten by an update. 🙂
Forum: Plugins
In reply to: [Advanced Automatic Updates] Checkbox doesn't stay checked.Thanks for the bug report! I’ve committed a fix, it’ll be out in the next release.