One Click Updater Plugin 2.0

This version of the WordPress plugin has a lot of new features, and, quite probably, a lot of new bugs, too. In fact, it’s so experimental it even glows in the dark :P

The plugin, which I’ve alternatively called “One Click Updater” and “Single Click Updater” in the past (no doubt to confuse everyone, including me), is now way more than a “plugin updater” plugin. Version 2.0 deals with plugin/theme installation, allows you to determine if and when WordPress checks for updates, and more. It was designed with WP 2.5 in mind, but most of the functions will still work in WP 2.3.

At the moment, the new version is only available from the WordPress.org plugin database.

New Features

  • Displays the number of active plugins and available upgrades right below the “Plugin Management” headline in the “Plugins” tab.
  • An “Upgrade All” option right next to the above (only in WP 2.5). It does exactly what you’d expect – download and install all of the available plugin updates.
  • Plugin and theme installation. I’m encroaching on the OneClick’s territory here… oh well, I haven’t seen a new version of that for a while. You can install a plugin/theme by providing an URL of a .zip file, or uploading the archive file yourself (see Plugins -> Install a Plugin and Themes/Design -> Install a Theme). The installer uses direct filesystem access (for now), so you’ll need proper file permissions for this to work. Eventually, I’ll add support for the new filesystem classes introduced in WP 2.5.
  • Autodetection! The plugin can parse a ZIP file and determine if it’s a plugin or a theme. Some salient data (such as name and version) is also extracted. You can see this in action by going to any of the installer pages (see above) and selecting “Detect automatically” from the “Type” dropdown.
  • Configure how often WordPress checks for plugin updates and new WordPress versions. You can also turn them off (not recommended) and select which “module” to use for plugin upgrades – this plugin, or the built-in updater in WP 2.5. All this is available for the small price of in the Plugins -> Upgrade Settings page.
  • Security. Most functions now use the WordPress nonce mechanism to prevent possible exploits (by the way, the abovementioned OneClick plugin is vulnerable).
  • Compatible with the OneClick Firefox Extension (unfortunately autodetection doesn’t work with this, yet).

Other Changes

  • The new interface is built for WP 2.5 and might not look as good on WP 2.3.x.
  • There are major changes to the internal handling of installation and upgrades – most of the relevant code has been rewritten from scratch. I think it is more elegant now, but new code = new bugs. Beware.
  • The “debug mode” flag is finally available on the “Upgrade Settings” page. Previously you had to change the plugin file itself to get any kind of execution log.
  • Multiple algorithm fallbacks for downloading files – the plugin can use either cURL, fopen() or sockets (via Snoopy) to download something. I only wish I could make filesystem access so robust as well.
  • Better error reporting (I think).
  • Unlike the built-in updater, this plugin calls both the deactivation and activation hooks for every plugin it upgrades.
  • Again, unlike in the WP 2.5 plugin updater, it doesn’t extract the whole archive to memory. I’ve made it extract and analyze archives file-by-file to avoid exceeding PHP memory limits. The limits can be very low on some shared hosting servers and might cause the built-in updater to crash if it encounters a very large ZIP file.
  • Some code (notably the directory creation routine) has been “borrowed” from WP 2.5.

In The Future There Will Be Robots

Or, in other words, where am I going with this plugin? Seeing as WP 2.5 already includes a plugin updater, which will undoubtedly get improved in the next version of WP, it might seem that the One Click Updater is becoming obsolete. After all, it’s a near certainty that WordPress will eventually also include it’s own plugin/theme installer and whatnot.

Does that mean I should just stop developing this plugin? Sure, it might work better than the core updater of WP 2.5 (for some people), but that likely won’t last.

The answer is – I don’t have the slightest idea :P I like my plugins, but I don’t want to “fight” WordPress. What do you think?

Share :
  • Reddit
  • del.icio.us
  • Digg
  • StumbleUpon
  • DZone
  • Ping.fm
  • Sphinn
Related posts :

61 Responses to “One Click Updater Plugin 2.0”

  1. [...] Single Click Plugin Updater WordPress Plugin This plugin extends the plugin update notification feature introduced in WordPress 2.3 by adding an “update automatically” link to update notifications. When you click the link, the new version of the corresponding plugin is downloaded and installed automatically. It also lets you know which plugins have update notifications enabled. Update 06.04.2008 : Version 2.0.1 with much more features is out. More info here. [...]

  2. 2
    frasten says:

    Hi, thank for your fantastic plugin.
    It used to work till version 2, here is the complete log from an example update:


    Checking to see if /var/www/MYSITE/wp-content/plugins/ is writable.
    Okay.
    Nonce verification passed.
    About to upgrade 1 plugins.
    Upgrading 'acronyms/acronyms.php', download URL is 'http://downloads.wordpress.org/plugin/acronyms.1.5.1.zip'.
    The plugin that needs to be upgraded is not active. Good.
    Downloading 'http://downloads.wordpress.org/plugin/acronyms.1.5.1.zip'...
    Downloaded 8156 bytes.
    Will save the new version archive (zip) to a temporary file ''.
    Warning: couldn't create a temporary file at ''.
    Using alternate temporary file '/var/www/MYSITE/wp-content/plugins/one-click-plugin-updater/PLGxPISOQ'.
    About to extract '/var/www/MYSITE/wp-content/plugins/one-click-plugin-updater/PLGxPISOQ'.
    Extracting files from /var/www/MYSITE/wp-content/plugins/one-click-plugin-updater/PLGxPISOQ...
    So far, the type is set to 'plugin'.
    gzopen() found, will use PclZip.
    Starting extraction.
    Can't create directory /!
    Main loop finished.

    Hope this can help to trace the problem. :-)

  3. 3
    White Shadow says:

    I’ll look into it.

  4. 4
    TheGiant says:

    Cool plugin, I like the install feature, but it doesn’t work for me.

    Fatal error: Call to undefined function: file_put_contents()

    Is what I get when I try to install a plugin

  5. 5
    White Shadow says:

    Looks like you have PHP 4. I don’t really plan to make this plugin support old versions of PHP – if it works, good, if not – oh well.

    That said, I’ll fix this error (in 2.0.3), but there’s no guarantee something else won’t break. Try and see.

  6. 6
    Anirudh says:

    White Shadow,

    I’ve made a lot of changes to oneclick, the current version is pretty obsolete. The major function is upload, verify and auto activate (meaning you upload a zip, it detects wether it’s a theme or a plugin, and automatically activates)

    Most of the backend work is done and is extremely stable. I’m very very busy with my academics and cannot continue work on it. If you’re interested in merging code and taking over the project, email me at the comment address.

    I will redirect my traffic to you and set it to auto upgrade, so your plugin will be installed in nearly 30000 blogs worldwide, and also change the wordpress.org trunk edition.

  7. 7
    White Shadow says:

    Wow, well, I don’t know what to say.
    I’ll send an email.

  8. 8
    frasten says:

    Hi, after the upgrade to v2.0.4, the error still remains, however it’s a little different (it’s trying to write in /var/, instead of /):


    Checking to see if /var/www/MYSITE/wp-content/plugins/ is writable.
    Okay.
    Nonce verification passed.
    About to upgrade 1 plugins.
    Upgrading 'all-in-one-seo-pack/all_in_one_seo_pack.php', download URL is 'http://downloads.wordpress.org/plugin/all-in-one-seo-pack.zip'.
    The plugin that needs to be upgraded is not active. Good.
    Downloading 'http://downloads.wordpress.org/plugin/all-in-one-seo-pack.zip'...
    Downloaded 123430 bytes.
    Will save the new version archive (zip) to a temporary file ''.
    Warning: couldn't create a temporary file at ''.
    Using alternate temporary file '/var/www/MYSITE/wp-content/plugins/one-click-plugin-updater/PLGemkIRR'.
    About to extract '/var/www/MYSITE/wp-content/plugins/one-click-plugin-updater/PLGemkIRR'.
    Extracting files from /var/www/MYSITE/wp-content/plugins/one-click-plugin-updater/PLGemkIRR...
    So far, the type is set to 'plugin'.
    gzopen() found, will use PclZip.
    Starting extraction to folder '/var/www/MYSITE/wp-content/plugins/'.
    Creating directory '/var/'
    Can't create directory '/var/!'
    Main loop finished.

    Thank you! :-)

  9. I’m getting the following errors, any ideas?
    This happens, whether I have it set to wp2.5 core,

    Downloading update from http://downloads.wordpress.org/plugin/kb-linker.zip

    Unpacking the update

    Could not create directory

    The other error I get, when not in wp2.5 core mode..is:

    Warning: mkdir() [function.mkdir]: open_basedir restriction in effect. File(/home/) is not within the allowed path(s): (/home/patrickc/:/usr/lib/php:/usr/local/lib/php:/tmp) in /home/patrickc/public_html/theresabloginmysoup.com/wp-content/plugins/one-click-plugin-updater/oneclick-plugin-updater.php on line 669
    Can’t create directory ‘/home/!’
    Main loop finished.

    Can’t create directory ‘/home/’.

    The full installation log is below :
    Checking to see if /home/patrickc/public_html/theresabloginmysoup.com/wp-content/plugins/ is writable.
    Okay.
    Error reporting set to E_ALL.
    Nonce verification passed.
    About to upgrade 1 plugins.
    Upgrading ‘blogrush-click-maximizer/blogrush-click-maximizer.php’, download URL is ‘http://downloads.wordpress.org/plugin/blogrush-click-maximizer.zip’.
    The plugin that needs to be upgraded is not active. Good.
    Downloading ‘http://downloads.wordpress.org/plugin/blogrush-click-maximizer.zip’…
    Downloaded 9055 bytes.
    Will save the new version archive (zip) to a temporary file ‘/tmp/PLGYicSSO’.
    About to extract ‘/tmp/PLGYicSSO’.
    Extracting files from /tmp/PLGYicSSO…
    So far, the type is set to ‘plugin’.
    Need to load PclZip.
    gzopen() found, will use PclZip.
    Starting extraction to folder ‘/home/patrickc/public_html/theresabloginmysoup.com/wp-content/plugins/’.
    Creating directory ‘/home/’
    Can’t create directory ‘/home/!’
    Main loop finished.

  10. 10
    White Shadow says:

    As I see it, the problem is that the plugin tries to verify that the /home/ directory exists, and the system function is_dir() returns FALSE for some weird reason. So the plugin tries to create the directory and fails.

    I can’t solve this until I find out why the is_dir() function doesn’t work as expected.

  11. 11
    Christopher says:

    An excellent update to an already great plugin. Many thanks.

    Have just noticed though that some links (after installing plugin or theme) do not take into account wordpress not being installed in root – though other links do!
    Log links work, link to plugins does not.
    Kind regards
    C

  12. 12
    White Shadow says:

    Ah, I think I know why that happens. I’ll fix it soon. Thanks for the comment :)

  13. 13
    Leo says:

    Hi,

    Me again… Huh…

    I’m having a small issue here…

    I have a blog in Chinese which uses a localized mo file. When l18n is enabled, I can’t seem to be able to find the Delete link in the Plugins page. When it’s disabled, the Delete links show normally.

    Could you please spend some time seeing into that?

    Thanks in advance! ^_^

    Regards

  14. 14
    White Shadow says:

    Hmm, I think I know where the problem is. I’ll see if I can fix it.

  15. 15
    Leo says:

    Really fast reply…

    Thanks! :)

  16. 16
    Leo says:

    It works fine now…

    Thanks for your quick fix!

    :)

  17. 17
    Leo says:

    BTW:

    IMHO, I think you may want to add i18n support to your excellent plugins. It’s a pity that these neat things are only linguistically available to English users. I’d love to have them translated into Chinese. But I’m unable to do so without your help.

    :)

  18. 18
    White Shadow says:

    I don’t know much about internationalization. We’ll see about that.

  19. 19
    ovidiu says:

    unfortunately, since one of the last plugin updates, I can’t set the right file permissions in the plugins options page anymore. I used to set it to 775 but now the plugins does not longer save that value. I click on save, it saves and reloads the page and it still shows 755 :-(
    I can’t use the plugin like this, do you have any advice for debugging?

  20. 20
    White Shadow says:

    @ovidiu – Hmm, you are right. Weird that I missed this. I’ll fix it right away.

  21. Hi,

    I was using the previous developer’s plugin (now I’m confused by the names, frankly, so I can’t tell you what it was called) and now I’m using yours, I guess.

    What’s the deal with the yellow band by some of the plugins on the main plugin page? I can’t find any documentation to explain that to me.

    Also, it seems that the out of date plugins aren’t showing up as having an update available now.

    I can’t see an “upgrade all” anywhere, but perhaps I’ve missed it. (Although, it’s not showing anything that needs updating anyway, but I know of two plugins that definitely aren’t the current version, so clearly this isn’t functioning properly.)

    I am using WP 2.6.

    Thanks for your help.

  22. 22
    White Shadow says:

    Those yellow bands are supposed to highlight plugins that have update notifications enabled. You can turn them off in Plugins/Upgrade Settings if you want.

    You may need to refresh the page (to clear the cache) and make sure you have JS enabled if some things don’t show up. Also, it may take a few hours before update notifications appear – WP checks for them periodically (the default is 12 hours). If updates don’t show up after that let me know which plugins are having this problem and I’ll see what I can do.

  23. 23
    pearl says:

    Hi
    I had the Firefox set up to upgrade on automatically… and with the most recent version FF 3.0.1, your plugin doesn’t seem to work. I use the plugin before FF upgrade, and everything seemed to be working fine! Im sure you have seen this and I was wondering when will you be able to fix this issue..

    thanks for all the hard work! we appreciate it very much.

    regards
    Perarl

  24. 24
    White Shadow says:

    I just tested the essential functions (upgrade one plugin & “Upgrade All”) in FF 3.0.1 and they worked fine. What, exactly, is the problem in your case?

  25. 25
    Jonathan says:

    Hi White Shadow.
    Thanks heaps for your great work on this plugin. Really nice, and greatly appreciated by me. The two most tedious and annoying things I didn’t like about WP were super easy and automated (or semi-automated) pluging/theme installing and updating… and then automatic wordpress upgrading (which is sorted out with the Automatic Upgrade plugin). So thanks heaps… I love being able to just click on plugins on some other site and the tell FF to install it on my blog (okay… it works on many instances, but not with those plugin sources that don’t provide a direct link but instead a code driven link).

    ONE IMPROVEMENT / FEATURE REQUEST
    I maintain many blogs. It would be great if the Firefox Extension provided for a means to set up as many blog links as one wants. So that I can then tell Oneclick which blog to install the plugin/theme on.

    Keep up the great work buddy.

    Jonathan

  26. 26
    White Shadow says:

    Thanks :)

    Support for multiple blogs has been requested before; I’ll add it … eventually.

  27. 27
    cekay says:

    Man, what have you done with that fabulous one-click plugin ?
    Nothing works as it did the old way, with what I was so happy and surprised that someone got an easy app for wordpress that works like a charm.
    I’m a little disappointed here, cause this is not marked as a beta or something, but the users have to find out itself. :(
    So, whats not working ?
    Nothing …
    First it’s really annoying that you need to log in on firefox to get the new extension, al uck i’m already registered. For all the others I can recommend the “bug me not” plugin.
    Second I see a big yello warning that plugins are ready to update – even those who are disabled – I try to update … it takes a while and I get a lots of errors.
    Error says, no permission to write … I had no problems with the old version, the owner of all files is set to the same owner that can upload files via ftp. Here is no option for that in one-click
    Third: I try to install a plugin the same way as I appregiated and loved it in the old version, simple rightclick, now I choose install on your blog and accept the warning (yeah i know i can disable that in options) but then i get this error:
    Can’t create file ’scrobbles.php’ in ‘/www/htdocs/XXXXXXXX/wp-content/plugins/’
    I can aonly repeat: I didn’t change anythign to the system and it worked with the older one-click… Why doesn’t it suddenly don’t anymore …
    and why is this buggy version recommended to install inside wordpress ..
    oh boy …

  28. 28
    cekay says:

    Ok, so i switched to wordpress core option. Same result. Here is an example log:

    Plugin directory is ‘/www/htdocs/w0098a5f/wp-content/plugins/’
    Checking to see if /www/htdocs/w0098a5f/wp-content/plugins/ is writable.
    Okay.
    Nonce verification passed.
    About to upgrade 10 plugins.
    Upgrading ‘drain-hole/drain-hole.php’, download URL is ‘http://downloads.wordpress.org/plugin/drain-hole.zip’.
    The plugin that needs to be upgraded is not active. Good.
    Downloading ‘http://downloads.wordpress.org/plugin/drain-hole.zip’…
    Downloaded 447606 bytes.
    Will save the new version archive (zip) to a temporary file ‘/tmp/PLG8tIxco’.
    About to extract ‘/tmp/PLG8tIxco’.
    Extracting files from /tmp/PLG8tIxco…
    So far, the type is set to ‘plugin’.
    Need to load PclZip.
    gzopen() found, will use PclZip.
    Starting extraction to folder ‘/www/htdocs/w0098a5f/wp-content/plugins/’.
    Extracting drain-hole/admin.css
    Can’t create file drain-hole/admin.css in /www/htdocs/w0098a5f/wp-content/plugins/!

  29. 29
    White Shadow says:

    You can still download the “old” OneClick and use that, even though it’s no longer maintained by the original author.

    It’s interesting to note that only people updating from OneClick to this plugin seem to have the problem you describe. So far I haven’t been able to find the cause. Maybe we’d get more useful information if you turn on “Debug mode” in the options page. Maybe not. Ahh, this isn’t easy you know :P

    As for you overall concerns – to each his own. Personally I think this plugin is better than the old OneClick, and OneClick’s author agreed with me (or he wouldn’t have transerred the plugin to my control, obviously). As I mentioned before, if you disagree you can still use the old OneClick plugin and keep it at 0.9.8.

  30. 30
    sherm cohen says:

    After installing our upgrade I can no longer reply to comments. I get: Fatal error: Call to undefined function get_plugins() in /home/admin/public_html/bloggggg/wp-content/plugins/one-click-plugin-updater/oneclick-plugin-updater.php on line 654

  31. 31
    White Shadow says:

    1) What version of WordPress do you have?
    2) Where are you getting this error : when replying through the admin dashboard, or directly on a post?

  32. 32
    sherm cohen says:

    Originally Posted By White Shadow1) What version of WordPress do you have?
    2) Where are you getting this error : when replying through the admin dashboard, or directly on a post?

    Hey, Shadow…I am using WordPress 2.6, and the error comes when replying through the admin dashboard. Thanks.

  33. 33
    White Shadow says:

    @sherm cohen – I think this means you are using a plugin to reply to comments. Most likely the problem is caused by some kind of plugin incompatibility. If you tell me what plugin you’re using I might be able to modify my plugin to work with it, but no promises.

  34. 34
    cekay says:

    So, here we go with debug enabled. It looks like the plugin uses routines that are not used as the earlier version. Or did I miss to set up something manual in a file ?
    Here is what I want to install with a right click in firefox on the download button:
    http://wordpress.org/extend/plugins/sitemap-generator/

    The error was: The plugin was already installed in the same directory (but wasnt activated), so maybe there should be a collision detection in the plugin. But anyway I wonder why it can’t overwrite. When I deleted the directory via ftp and did this one click thingy again, it worked like a charm and asked me if I want to activate it.

    Result:
    Downloading ‘http://downloads.wordpress.org/plugin/sitemap-generator.zip’…
    Downloaded 48288 bytes.
    Will save the new version archive (zip) to a temporary file ‘/tmp/PLGVtGfXW’.
    About to extract ‘/tmp/PLGVtGfXW’.
    Extracting files from /tmp/PLGVtGfXW…
    So far, the type is set to ‘autodetect’.
    Need to load PclZip.
    gzopen() found, will use PclZip.
    Starting autodetection.
    Checking sitemap-generator/sitemap-generator.php
    Found a plugin header! The plugin is : Dagon Design Sitemap Generator
    Starting extraction to folder ‘/www/htdocs/XXXX/wp-content/plugins/’.
    Extracting sitemap-generator/readme.txt

    Warning: file_put_contents(/www/htdocs/XXXX/wp-content/plugins/sitemap-generator/readme.txt) [function.file-put-contents]: failed to open stream: Permission denied in /www/htdocs/XXXX/wp-content/plugins/one-click-plugin-updater/oneclick-plugin-updater.php on line 1047
    Can’t create file sitemap-generator/readme.txt in /www/htdocs/w0098a5f/wp-content/plugins/!

  35. 35
    White Shadow says:

    @cekay – It should normally be able to overwrite existing files. Maybe you have some kind of suPHP/Suhosin on your server and the updater and the target file/directory have different owner/group? That’s probably the last non-arcane guess I have.

  36. 36
    Chris Masse says:

    Hi there,
    Problem when trying to update this pludin:
    -
    Fatal error: Call to a member function dprint() on a non-object in xxxx.org/wp-content/plugins/one-click-plugin-updater/do_update.php on line 49

  37. 37
    White Shadow says:

    @Chris Masse – Did you upgrade it alone or with “Upgrade All”? The upgrade should work on it’s own, but not when upgraded together with other plugins – that’s a known issue and I’ll eventually fix it.

  38. 38
    Lizz says:

    I have 5 wordpress websites. They all give this error when clicking on ‘Upgrade All’ after the notice, ‘XX active plugins, X upgrades available’

    Server error!The server encountered an internal error and was unable to complete your request.
    Error message:
    Premature end of script headers: do_update.php
    If you think this is a server error, please contact the webmaster.
    Error 500

  39. 39
    Lizz says:

    If I try to update only one plugin through the ‘upgrade automatically’ link, I receive the following error:

    Your attempt to activate this plugin: “” has failed.
    Please try again

    BTW: Wordpress version is 2.6.1, and One Click Updater version is 2.4.3 for these last 2 comments. Thanks.

  40. 40
    White Shadow says:

    @Lizz – Ah, the infamous “Error 500″. It basically says “something went wrong!” and there’s no easy way to tell what that “something” was.

    See if there are any error_log, php_error_log or similar files in the plugin folder or your WP root directory, maybe those will contain some clues. Otherwise I simply have nothing to go on.

  41. [...] 2、OneClick Plugin Updater OneClick 是一个WordPress Plugin + Firefox Extension 的组合,能让我们一键快速上传安装插件或者模板,除了可从硬盘的ZIP压缩文件安装任何插件或主题外,还能从任一网址下载ZIP压缩文件来安装插件或主题而无需下载到本地。 [...]

  42. [...] OneClick Plugin Updater OneClick is a Wordpress Plugin+Firefox Extension combo which will change the way you look at [...]

  43. [...] OneClick Plugin Updater OneClick is a Wordpress Plugin+Firefox Extension combo which will change the way you look at [...]

  44. 44
    Sergey says:

    Hi!

    I use One Click Updater Plugin 2.4.4, and lov it. Very like install from url plugins/themes.

    But — it dont work :) — every time after i press «install», i redirect to login form. And after this nothing help :(

    Whats wrong?

    I use WP 2.7

    Thank You in any case!

  45. 45
    White Shadow says:

    Hmm, I’ve used it with WP 2.7 with no problems, so it’s probably not version incompatibility… Try clearing your cookies and reloading the page, perhaps that would help. Have you changed anything else in your blog’s configuration except updating to WP 2.7?

  46. [...] 2、OneClick Plugin Updater OneClick 是一个WordPress Plugin + Firefox Extension 的组合,能让我们一键快速上传安装插件或者模板,除了可从硬盘的ZIP压缩文件安装任何插件或主题外,还能从任一网址下载ZIP压缩文件来安装插件或主题而无需下载到本地。 [...]

  47. [...] This plugin extends the plugin update notification established on the basis of WordPress 2.3, using an “update automatically” Link Update Notification. If you click on the link, the new version of the plugin downloaded and installed automatically.It also lets you know which plugins have update notifications enabled. Update 06.04.2008 : Version 2.0.1 with much more features is out. More info here. [...]

  48. 48
    ryan says:

    tell me how to delete my themes, i cant find the delete button or tab :(

  49. 49
    White Shadow says:

    @ryan – The “Delete” links should appear on the Themes page, in the top-right corner of each theme screenshot. The placement is slightly off in WP 2.7, but they should still be there.

  50. 50
    ryan says:

    i find it, thanks

  51. 51
    ryan says:

    I find the delete link when accessing my dashboard with opera mini, but there is no delete link if using desktop browser,, this should be fixed

  52. 52
    White Shadow says:

    @ryan – I presume you are using a different browser on your desktop? The links work in my Opera 9.62.

  53. I guess the only problem I have is when I click the 2.7.1 is available! Please Upgrade Now and when I click I get “You do not have sufficient permissions to update plugins for this blog” I made sure my admin thingy wasn’t fitzed. Tried both of my machines.

    Worked great on 2 other updates. SO not sure if anything else is not working till it lets me do the UG.

    Thanks for your help.

  54. 54
    White Shadow says:

    That 2.7.1 thing is a WordPress core upgrade (not a plugin thing), so it’s not handled by this plugin. If you’re having a problem with the 2.7.1 upgrade… well, some other plugin might be causing it, like the “WordPress Automatic Upgrade” one.

  55. [...] OneClick Plugin Updater [...]

  56. 56
    Top says:

    This plugin working fine for from last two months but no when I install mini stat wordpress theme it unble to update stats new version, ho do i fix it?

  57. 57
    White Shadow says:

    Hmm? This plugin doesn’t have a feature for upgrading themes.

  58. 58
    rezaprof says:

    why when i click upgrade automatically or upgrade all, i got message error

    Not Found

    Sorry, but you are looking for something that isn’t here.

    how do i to fix it?
    im currently using WP 2.7.1

    Thanks for your help :)

  59. 59
    White Shadow says:

    Maybe the plugin isn’t installed correctly. One common mistake is putting the .php files directly into the “plugins” directory. They need to be in their own sub-directory, like “/wp-content/plugins/one-click-updater/”.

  60. [...] OneClick Plugin Updater OneClick is a Wordpress Plugin+Firefox Extension combo which will change the way you look at [...]

  61. [...] 2、OneClick Plugin Updater OneClick 是一个WordPress Plugin + Firefox Extension 的组合,能让我们一键快速上传安装插件或者模板,除了可从硬盘的ZIP压缩文件安装任何插件或主题外,还能从任一网址下载ZIP压缩文件来安装插件或主题而无需下载到本地。 [...]

Leave a Reply