Posted October 12, 201213 yr I am trying to set up a server for some friends and myself to play on, I run OSX1.7.4 and have had no issues with normal Forge setup for SSP 1.3.2, and no issues with normal 1.3.2 server setup. Where I run into problems when I attempt to add Forge to my server.jar it responds with Invalid or corrupt jarfile minecraft_server.jar in Terminal. I can't find anyone else with similar issues or a help thread for similar issues. Can anyone help? Thanks.
October 13, 201213 yr Author The problem is with how you install forge. How do you do it? I've tried two ways, the first being changing it from a .jar to a .zip. Then decompressing it with archive utility, adding the forge files, recompiling it back and changing back to a .jar. Which when I was doing it didn't seem silly but as I type this sounds very silly. The other way I tried was to rename the server jar to minecraft.jar and use Minecraft Jar tool to decompress add the files recompress and then rename back to server.jar (I use Minecraft Jar Tool to modify the SSP .jar with no problems so i figured this could work). Is there some alternative program to Minecraft Jar Tool I should use?
October 13, 201213 yr I'm having the exact same problem. Same version of OSX and Forge, same process, same error. Some on how to fix this help would be great.
October 13, 201213 yr Assuming your minecraft_server.jar is in /Users/yourusername/server/minecraft_server.jar, and forge is in /Users/yourusername/Downloads/minecraftforge.zip do this: Open terminal cd /Users/yourusername/server mkdir mctmp cp minecraft_server.jar mctmp cd mctmp unzip minecraft_server.jar cp /Users/yourusername/Downloads/minecraftforge.zip . unzip minecraftforge.zip (if it asks you to overwrite files, say 'yes to all') rm minecraftforge.zip minecraft_server.jar zip -r ../minecraft_server.jar . cd .. And then run the server as you would normally. I don't actually use a Mac (I use Linux), but that should work. The only bit I'm unsure about is the unzip bits. Protip: try and find answers yourself before asking on the forum. It's pretty likely that there is an answer. Was I helpful? Give me a thank you! http://bit.ly/HZ03zy[/img] Tired of waiting for mods to port to bukkit? use BukkitForge! (now with a working version of WorldEdit!)
October 13, 201213 yr Author Assuming your minecraft_server.jar is in /Users/yourusername/server/minecraft_server.jar, and forge is in /Users/yourusername/Downloads/minecraftforge.zip do this: Open terminal cd /Users/yourusername/server mkdir mctmp cp minecraft_server.jar mctmp cd mctmp unzip minecraft_server.jar cp /Users/yourusername/Downloads/minecraftforge.zip . unzip minecraftforge.zip (if it asks you to overwrite files, say 'yes to all') rm minecraftforge.zip minecraft_server.jar zip -r ../minecraft_server.jar . cd .. And then run the server as you would normally. I don't actually use a Mac (I use Linux), but that should work. The only bit I'm unsure about is the unzip bits. I tried this just a few minutes ago, and it went smoothly until it came time to repackage the Forgified MC_server.jar. I can't seem to compress the mctmp back into the MC_server.jar. I tried a few times now with some mixed results, once or twice it would return with the "Invalid or Corrupt" line from before. However it did come back with 2012-10-13 12:16:49 [iNFO] [ForgeModLoader] Forge Mod Loader version missing.missing.missing.missing for Minecraft client:missing, server:missing loading 2012-10-13 12:16:49 [iNFO] [ForgeModLoader] Downloading file http://files.minecraftforge.net/fmllibs/argo-2.25.jar 2012-10-13 12:16:50 [iNFO] [ForgeModLoader] Download complete 2012-10-13 12:16:50 [iNFO] [ForgeModLoader] Downloading file http://files.minecraftforge.net/fmllibs/guava-12.0.1.jar 2012-10-13 12:16:51 [iNFO] [ForgeModLoader] Download complete 2012-10-13 12:16:51 [iNFO] [ForgeModLoader] Downloading file http://files.minecraftforge.net/fmllibs/asm-all-4.0.jar 2012-10-13 12:16:52 [iNFO] [ForgeModLoader] Download complete 2012-10-13 12:16:52 [sEVERE] [ForgeModLoader] This version of FML is built for Minecraft missing, we have detected Minecraft 1.3.2 in your minecraft jar file 2012-10-13 12:16:52 [iNFO] [sTDOUT] A CRITICAL PROBLEM OCCURED INITIALIZING MINECRAFT - LIKELY YOU HAVE AN INCORRECT VERSION FOR THIS FML 2012-10-13 12:16:52 [iNFO] [sTDERR] Exception in thread "main" java.lang.RuntimeException: java.lang.RuntimeException: java.lang.reflect.InvocationTargetException 2012-10-13 12:16:52 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.setupHome(FMLRelauncher.java:175) 2012-10-13 12:16:52 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.relaunchServer(FMLRelauncher.java:133) 2012-10-13 12:16:52 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.handleServerRelaunch(FMLRelauncher.java:33) 2012-10-13 12:16:52 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.main(MinecraftServer.java:1319) 2012-10-13 12:16:52 [iNFO] [sTDERR] Caused by: java.lang.RuntimeException: java.lang.reflect.InvocationTargetException 2012-10-13 12:16:52 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchLibraryManager.handleLaunch(RelaunchLibraryManager.java:253) 2012-10-13 12:16:52 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.setupHome(FMLRelauncher.java:155) 2012-10-13 12:16:52 [iNFO] [sTDERR] ... 3 more 2012-10-13 12:16:52 [iNFO] [sTDERR] Caused by: java.lang.reflect.InvocationTargetException 2012-10-13 12:16:52 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2012-10-13 12:16:52 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) 2012-10-13 12:16:52 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) 2012-10-13 12:16:52 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Method.java:597) 2012-10-13 12:16:52 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchLibraryManager.handleLaunch(RelaunchLibraryManager.java:245) 2012-10-13 12:16:52 [iNFO] [sTDERR] ... 4 more 2012-10-13 12:16:52 [iNFO] [sTDERR] Caused by: cpw.mods.fml.common.LoaderException 2012-10-13 12:16:52 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.<init>(Loader.java:169) 2012-10-13 12:16:52 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.instance(Loader.java:144) 2012-10-13 12:16:52 [iNFO] [sTDERR] ... 9 more so I guess that is a small step forward, right?
October 14, 201213 yr Hmm I have never gotten this before until today when I tried to set up a #303 server. I used the same method I have always used and now it's giving me a problem. The same problem is happening with a #251 server as well. I'm going to look into this a bit more.
October 14, 201213 yr Assuming your minecraft_server.jar is in /Users/yourusername/server/minecraft_server.jar, and forge is in /Users/yourusername/Downloads/minecraftforge.zip do this: Open terminal cd /Users/yourusername/server mkdir mctmp cp minecraft_server.jar mctmp cd mctmp unzip minecraft_server.jar cp /Users/yourusername/Downloads/minecraftforge.zip . unzip minecraftforge.zip (if it asks you to overwrite files, say 'yes to all') rm minecraftforge.zip minecraft_server.jar zip -r ../minecraft_server.jar . cd .. And then run the server as you would normally. I don't actually use a Mac (I use Linux), but that should work. The only bit I'm unsure about is the unzip bits. I tried this just a few minutes ago, and it went smoothly until it came time to repackage the Forgified MC_server.jar. I can't seem to compress the mctmp back into the MC_server.jar. I tried a few times now with some mixed results, once or twice it would return with the "Invalid or Corrupt" line from before. However it did come back with 2012-10-13 12:16:49 [iNFO] [ForgeModLoader] Forge Mod Loader version missing.missing.missing.missing for Minecraft client:missing, server:missing loading 2012-10-13 12:16:49 [iNFO] [ForgeModLoader] Downloading file http://files.minecraftforge.net/fmllibs/argo-2.25.jar 2012-10-13 12:16:50 [iNFO] [ForgeModLoader] Download complete 2012-10-13 12:16:50 [iNFO] [ForgeModLoader] Downloading file http://files.minecraftforge.net/fmllibs/guava-12.0.1.jar 2012-10-13 12:16:51 [iNFO] [ForgeModLoader] Download complete 2012-10-13 12:16:51 [iNFO] [ForgeModLoader] Downloading file http://files.minecraftforge.net/fmllibs/asm-all-4.0.jar 2012-10-13 12:16:52 [iNFO] [ForgeModLoader] Download complete 2012-10-13 12:16:52 [sEVERE] [ForgeModLoader] This version of FML is built for Minecraft missing, we have detected Minecraft 1.3.2 in your minecraft jar file 2012-10-13 12:16:52 [iNFO] [sTDOUT] A CRITICAL PROBLEM OCCURED INITIALIZING MINECRAFT - LIKELY YOU HAVE AN INCORRECT VERSION FOR THIS FML 2012-10-13 12:16:52 [iNFO] [sTDERR] Exception in thread "main" java.lang.RuntimeException: java.lang.RuntimeException: java.lang.reflect.InvocationTargetException 2012-10-13 12:16:52 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.setupHome(FMLRelauncher.java:175) 2012-10-13 12:16:52 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.relaunchServer(FMLRelauncher.java:133) 2012-10-13 12:16:52 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.handleServerRelaunch(FMLRelauncher.java:33) 2012-10-13 12:16:52 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.main(MinecraftServer.java:1319) 2012-10-13 12:16:52 [iNFO] [sTDERR] Caused by: java.lang.RuntimeException: java.lang.reflect.InvocationTargetException 2012-10-13 12:16:52 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchLibraryManager.handleLaunch(RelaunchLibraryManager.java:253) 2012-10-13 12:16:52 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.setupHome(FMLRelauncher.java:155) 2012-10-13 12:16:52 [iNFO] [sTDERR] ... 3 more 2012-10-13 12:16:52 [iNFO] [sTDERR] Caused by: java.lang.reflect.InvocationTargetException 2012-10-13 12:16:52 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2012-10-13 12:16:52 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) 2012-10-13 12:16:52 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) 2012-10-13 12:16:52 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Method.java:597) 2012-10-13 12:16:52 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchLibraryManager.handleLaunch(RelaunchLibraryManager.java:245) 2012-10-13 12:16:52 [iNFO] [sTDERR] ... 4 more 2012-10-13 12:16:52 [iNFO] [sTDERR] Caused by: cpw.mods.fml.common.LoaderException 2012-10-13 12:16:52 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.<init>(Loader.java:169) 2012-10-13 12:16:52 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.instance(Loader.java:144) 2012-10-13 12:16:52 [iNFO] [sTDERR] ... 9 more so I guess that is a small step forward, right? Lol yeah this time it looks like your FML is corrupted somehow - it's not getting any version numbers, so it's looking for minecraft version 'missing', but finds version '1.3.2', and then blows up. So try redownloading forge? Try using the latest recommended, and the latest latest... Protip: try and find answers yourself before asking on the forum. It's pretty likely that there is an answer. Was I helpful? Give me a thank you! http://bit.ly/HZ03zy[/img] Tired of waiting for mods to port to bukkit? use BukkitForge! (now with a working version of WorldEdit!)
October 15, 201213 yr Author Lol yeah this time it looks like your FML is corrupted somehow - it's not getting any version numbers, so it's looking for minecraft version 'missing', but finds version '1.3.2', and then blows up. So try redownloading forge? Try using the latest recommended, and the latest latest... So I asked my buddies to prepare the .jar on their side for me to use on the OSX side, and there were no issues using that.
October 17, 201213 yr The issue is that the stock archiving utility on Mac OS X 10.7.4 (and later or below) are only capable of handling .zip(as to my knowledge as a mac user) so you would have to go onto the App Store and download The Unarchiver, it is free and best of all supports unarchiving .jar files.
October 20, 201213 yr a jar file __IS__ a zip file. Protip: try and find answers yourself before asking on the forum. It's pretty likely that there is an answer. Was I helpful? Give me a thank you! http://bit.ly/HZ03zy[/img] Tired of waiting for mods to port to bukkit? use BukkitForge! (now with a working version of WorldEdit!)
October 20, 201213 yr a jar file __IS__ a zip file. Unfortunately MacOS doesn't think so. Read the EAQ before posting! OR ELSE! This isn't building better software, its trying to grab a place in the commit list of a highly visible github project. www.forgeessentials.com Don't PM me, I don't check this account unless I have to.
October 25, 201213 yr The matter is that the goods archiving advantageousness on Mac OS X 10. 7. 4 (and later or below) are barely adequate of handling. Zip (as to my enlightenment just as a Mac user) so you would gain to journey onto the App deposit and download, it is unpaid and first-rate of the totality of supports anarchizing. Jar files. Printing on to canvas Canvas photos online
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.