[INACTIVE][ADMN/INFO] BukkitUpdater v0.2.7.57 - Shows outdated plugins and more [1060]

Discussion in 'Inactive/Unsupported Plugins' started by zauberstuhl y33, Jul 19, 2011.

  1. Offline

    zauberstuhl y33

    wassilij and BadgerLove like this.
  2. By the way, I got this when I reloaded BukkitUpdater after updating it via /u2d update:
    Code:
    2011-08-20 11:55:30 [WARNING] Unexpected exception while parsing console command
    org.bukkit.command.CommandException: Unhandled exception executing command 'u2d' in plugin BukkitUpdater v0.2.7
    	at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37)
    	at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:129)
    	at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:344)
    	at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:489)
    	at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:468)
    	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:363)
    	at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    Caused by: java.lang.NoClassDefFoundError: zauberstuhl/BukkitUpdater/Async/Reloader
    	at zauberstuhl.BukkitUpdater.BukkitUpdater.onCommand(BukkitUpdater.java:119)
    	at org.bukkit.command.PluginCommand.execute(PluginCommand.java:35)
    	... 6 more
    Caused by: java.lang.ClassNotFoundException: zauberstuhl.BukkitUpdater.Async.Reloader
    	at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    	at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:36)
    	at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:24)
    	at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    	at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
    	... 8 more
    
    Not sure if this was a one-off or not, but it was updating from 0.2.7 to 0.2.7.57

    Also, I'm not sure how to use the blacklist. I added 'Permissions' to the blacklist, but it still checks for Permissions when I use /u2d:
    Code:
    >u2d
    10:43:32 [INFO] BukkitUpdater version 0.2.7.57
    10:43:32 [INFO] Fetching information...
    10:43:36 [INFO] New Updates are available for:
    10:43:36 [INFO] Permissions (L) 3.1.6 > 2.7.7
    10:43:36 [INFO] There is/are 5 unspported plugin(s). For more info: /u2d unsupported
    >u2d ignore list
    10:48:25 [INFO] Searching ignored plugins...
    10:48:25 [INFO] Permissions
    
     
  3. Offline

    zauberstuhl y33

    that's a cool idea i added it as a request. ty

    yes i tested it and your right, i added now a function which disable the reload option for the plugin BukkitUpdater.
    You cannot reload the plugin on his own ;)

    Thanks there was a little bug in the regex-pattern, i fixed it.

    @Wiinick
    The (L) stands for "static Link" if there is no (L) behind the plugin use the webform:
    I will try to add a FAQ to the topic :)



    All the fixes are available with the newest build (testing-version...)
     
  4. Offline

    DV8FromTheWorld

    Is there any reason why plugins like World Edit, World Guard, CraftBook, Spout, iChat and Big Brother are not supported? I would think that these should being because these are used on most servers and have been requested on this forum multiple times. If you could add the support for these, it would be greatly appreciated.

    In addition support for these plugins would be nice also.

    - Silence http://forums.bukkit.org/threads/chat-silence-0-6-1-mute-silence-annoying-chatters-740.10962

    - FoundDiamonds http://forums.bukkit.org/threads/fu...for-finding-ores-anti-xray-mod-too-860.10205/

    - OpenInv http://forums.bukkit.org/threads/ad...es-inventory-as-a-chest-real-time-1000.15379/

    - MOTD http://forums.bukkit.org/threads/ge...ank-specific-motd-permissions-1000-1060.31255

    Found a bug with Weather Control. The latest update is 0.9.1 and it says that that latest update is 1.2.0 any idea why its doing this? View attachment 6126 and you misspelled "supported" in the fourth line BTW

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 17, 2016
  5. I can say that the Weather Control thing is probably more to do with Weather Control's developer than zauber. Had the same problem myself with SpawnBed, but that developer seems to have fixed it.
     
  6. Offline

    Jdbye

    Can you make this use something else than /u2d since CButD uses the same command? I'd like to use both at the same time since they both have some plugins the other doesn't. Though no plugin updater plugin as of now is very useful because none of them can update most of my plugins. I resorted to making a PHP script to parse plugins.bukkit.org for the latest version using regex, and it can successfully check for updates for 85% of my plugins (8 uncheckable out of 57), and the rest are either made by myself (so don't have a topic), are inactive (so aren't in the plugin list), or are RemoteToolkit (which has a completely different version format in the topic than in the plugin, so it's not viable to check for updates for it). The same code works to check all plugins for updates without requiring them to be added to a database or anything, the only problem is with plugins that have multiple parts, like Multiverse 2, Essentials and FalseBook (which I added checks for so it will ignore the separate parts and just search for the actual name)
    Updater plugins are a great idea, but some plugin authors refuse to support them, and even if they didn't it's just not possible to support the vast majority of plugins... And sometimes the permanent update links die and updates stop working for that plugin.

    I would love to see something that worked like my script using a central database which parsed plugins.bukkit.org every once in a while for new versions (of course it would not be able to auto download the files since it would be hard to detect the download links in the topic and sometimes they're not direct links, but it could at least notify you and save the topic links so you could download them manually, and it would work with the vast majority of plugins). This would also avoid putting too much strain on the bukkit webserver since having the plugin parse plugins.bukkit.org directly would cause a lot of extra traffic if the plugin got popular.
     
  7. Offline

    zauberstuhl y33

    thanks for the report i have a look at this :)

    @Jdbye
    How do you parse the JavaScript from the plugins.bukkit.org-page? Is it possible that you upload your php code on github or something like that? so that i can have a look at your script? thanks for your post.

    regards
     
  8. Offline

    ThexDLolNoob

    Hmmm... When I try to use this plugin, it just gets stuck at "fething information" when I use the /u2d command. Yesterday it worked fine.
     
  9. Offline

    DV8FromTheWorld

    Yea, Weather Control was not supported for a very long time, and it stayed at version 0.9 but someone forked it to make it work with 1060 and it is Weather Control 0.9.1, that is the one that everyone will be using because it is the one that will be supported. So if this plugin could support that plugin it would be nice.
     
  10. Offline

    Diagonalspoon

    Is the download link broken or is it just me?
     
  11. The whole zauberstuhl server seems to be offline right now but I'm sure he's doing his best to get it online again. :)
     
  12. Offline

    Buckethead

    can someone upload the jar or sumthin?
     
  13. Offline

    Jdbye

    I don't :p
    I make a request directly to plugins.bukkit.org/data.php which returns results in easy to parse JSON.
    Check your PM.
     
  14. Offline

    zauberstuhl y33

    @ThexDLolNoob @Diagonalspoon @V10lator @Buckethead

    Sorry about that my web-server is broken.. but i contact already the support. hopefully he is up today afternoon.

    cheers


    //EDIT: The webserver is back... jipii :S now all the links/functions should work correctly again.
    cheers
     
  15. Offline

    Ayaron

    Bit confused about this bit...

    "With this token you can add static plugin links on your own to the database.
    Have a look here..."

    What link am I meant to add to the database? The jar file? What if it's a zip and not a file? The forum page?

    And once I do, will the plugin show up as compatible?
     
  16. can you add this plugins :
    2011-08-24 18:25:31 [INFO] Annotate v1.2.4
    2011-08-24 18:25:31 [INFO] BetterShop v1.6.6.6
    2011-08-24 18:25:31 [INFO] bLift v1.1
    2011-08-24 18:25:31 [INFO] bLog v1.1.0
    2011-08-24 18:25:31 [INFO] ChopTree v1.23
    2011-08-24 18:25:31 [INFO] Lottery v0.5.5
    2011-08-24 18:25:31 [INFO] MagicCarpet v1.5.6
    2011-08-24 18:25:31 [INFO] MinecartManiaCore v1.2.8
    2011-08-24 18:25:31 [INFO] MinecartManiaSignCommands v1.2.8
    2011-08-24 18:25:31 [INFO] WirelessRedstone v1.2 BETA
    2011-08-24 18:25:31 [INFO] WorldEdit v4.6
    2011-08-24 18:25:31 [INFO] WorldGuard v5.2.2
    2011-08-24 18:25:31 [INFO] iChat v2.3.3-p3
     
  17. Offline

    DV8FromTheWorld

    You are suppose to add a static link to a .jar file to the database. A static link is one that will always have the recommended/updated version of the plugin to download. A static link is also a link that never changes. That is what you put as the link. If it is a zip file then it will not work. It must be a .jar file. By adding the link, it makes it so you can download the plugin and install/update the plugin in-game through the /u2d update <plugin> command. You can only do this with plugins that have a (L) behind their names when you do /u2d. So when you type /u2d, if it says "spawn X (L) 0.6 >0.5" that means that you have version 0.5 of the "spawn X" plugin and the newest version of the plugin is 0.6. Because there is a (L) that means you have added a static link to the database and then can preform the command "/u2d update spawnx" and it will download and update the plugin "spawn X" from version 0.5 to version 0.6. By adding the link you do not add compatibility for a plugin, that can only be done by the plugin developer. When you go to the database page, you will need your token to add links because the links you add will be specific for YOU. So you will enter your token in the "token" area, select the plugin you want to add a link for, and paste the link into the "link" area, and presto all done. If you get an error message, it is probably because either..
    A. you didnt post a link for a .jar file
    B. the link is invalid (possible miss-type?)
    C. the link is not a static link.
    Not all plugin developers support plugins like this that auto update so some plugins will not be compatible/supported. Also, some plugin developers dont have static links that will work properly with this plugin.

    Hope i have offered a bit of help for your problem. :)
     
  18. Offline

    B-Stylz

    Hi,
    first, thanks for the plugin, but when i type /usd it says "unknown command" (ingame and in console). What do i do wrong?
     
  19. It is /u2d not /usd!
     
  20. Offline

    B-Stylz

    omg, shame on me :rolleyes: thank you very much :)
     
  21. Offline

    Ayaron

    Thank you! That has unconfused me. :cool:
     
  22. can you add this plugins :
    2011-08-24 18:25:31 [INFO] Annotate v1.2.4
    2011-08-24 18:25:31 [INFO] BetterShop v1.6.6.6
    2011-08-24 18:25:31 [INFO] bLift v1.1
    2011-08-24 18:25:31 [INFO] bLog v1.1.0
    2011-08-24 18:25:31 [INFO] ChopTree v1.23
    2011-08-24 18:25:31 [INFO] Lottery v0.5.5
    2011-08-24 18:25:31 [INFO] MagicCarpet v1.5.6
    2011-08-24 18:25:31 [INFO] MinecartManiaCore v1.2.8
    2011-08-24 18:25:31 [INFO] MinecartManiaSignCommands v1.2.8
    2011-08-24 18:25:31 [INFO] WirelessRedstone v1.2 BETA
    2011-08-24 18:25:31 [INFO] WorldEdit v4.6
    2011-08-24 18:25:31 [INFO] WorldGuard v5.2.2
    2011-08-24 18:25:31 [INFO] iChat v2.3.3-p3​
     
  23. Offline

    squeezer

    got similar problem:
    [​IMG]

    e.g. i don't use permissions but permissionsbukkit
     
  24. Do you have by any chance the SuperPermsBridge installed? If so that's why, it cloaks itself as Perms 2.7.7 so any plugin using this permissions plugin will find it and can hook into it.
     
  25. Offline

    squeezer

    yes i'm using superpermbridge. now i understand.
    what about the versions (see picture)?
     
  26. Offline

    ThexDLolNoob

  27. Offline

    DV8FromTheWorld

    SuperPerms Bridge disguises itself as the plugin called "Permissions 2.x" which is in version 2.7.7 When the developer left Permission 2.x, a new person took over and started "Permission 3.x" which is currently in version 3.1.6
    This is why it is trying to update to 3.1.6 because they are both the same thing, just more updated, and SuperPerms bridge disguises its self as permissions 2.x and thats why it wants to update it.
     
  28. Offline

    squeezer

    i meant the other plugins, e.g. adminscanfly is already up2date and it wants to downgrade.
     
  29. Offline

    m00t

    'The Webform' link and 'supported plugins' link are broken - it says I am forbidden :(
    Forbidden

    You don't have permission to access /bukkit_updater/ on this server.
    Apache/2.2.16 (Debian) Server at mc.zauberstuhl.de Port 80
     
  30. Offline

    King_KYl3

    There is heaps suported it says how i make it suport them?.

    i mean heaps unsuported

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 17, 2016
  31. Offline

    Hamad

    i am confused, where can i get the token or something and static link :/
     

Share This Page