***** The system cannot find the path specified *****

Discussion in 'Bukkit Help' started by RADWANK, Aug 27, 2012.

Thread Status:
Not open for further replies.
  1. Offline

    RADWANK

    hi all

    how can i fix this problem ???
    OS : Win 7 (64 pit )
    Ram : 16 Gb
    Java : 7 update 6
    CraftBukkit : 1.3.1
    [​IMG]

    upp

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

    manolitico

    change in the .bat jre6 for jre7
     
  3. assuming your start.bat looks like:
    Code:
    @ECHO OFF
    SET BINDIR=%~dp0
    CD /D "%BINDIR%"
    :start
    cls
    "C:\Program Files\Java\jre7\bin\java.exe" -Xms256M -Xmx768M -jar craftbukkit-1.3.1-R2.0.jar
    pause
    goto start
    or
    Code:
    @ECHO OFF
    SET BINDIR=%~dp0
    CD /D "%BINDIR%"
    :start
    cls
    "C:\Program Files (x86)\Java\jre7\bin\java.exe" -Xms256M -Xmx768M -jar craftbukkit-1.3.1-R2.0.jar
    pause
    goto start
    check to make sure that there is something there and also make sure the path is in quotes as above.
     
  4. Offline

    Omnitv

  5. Offline

    RADWANK

    .....................................................................................................................
    OS : Win 7 (64 pit )
    Ram : 16 Gb
    Java : 7 update 6
    CraftBukkit : 1.3.1

    upp

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

    CRAZYxMUNK3Y

    Copy/Paste from my post on Troubleshooting: Common Problems with Solutions


    This is normally fixed by changing the location of where the CraftBukkit jar is in the bat file

    Most craftbukkit files come as craftbukkit-<version>-R<version>.jar, this HAS to the same in the bat file unless you changed otherwise.
    Examples of a bat file (With Bukkit jar named as 'craftbukkit.jar')

    @Echo off
    "C:\Program Files (x86)\Java\jre6\bin\java.exe" -Xms1024M -Xmx1024M -jar craftbukkit.jar
    pause

    Rundown:
    @Echo off - Hides unwated lines from CMD
    "C:\Program Files (x86)\Java\jre6\bin\java.exe" - your Java.exe location
    -Xms1024M and Xmx1024M - Amount of RAM you want to run the server on in MB
    -jar - Just CMD to run a .jar file
    craftbukkit.jar - The name which you have given your bukkit file - default is: craftbukkit-1.0.1-R1.jar
    pause - Leaves CMD window open to allow for commands

    So, if you are running Java6 (32 bit) on a 64bit machine it would look like this (with default jar location)

    How it would look (With default naming) on x86 or x64 machines.

    x86(32 Bit)
    @Echo off
    "C:\Program Files (x86)\Java\jre6\bin\java.exe" -Xms1024M -Xmx1024M -jar craftbukkit-1.2.5-R4.jar
    pause

    x64(64 Bit)
    @Echo off
    "C:\Program Files\Java\jre6\bin\java.exe" -Xms1024M -Xmx1024M -jar craftbukkit-1.2.5-R4.jar
    pause
     
  7. Offline

    RADWANK

Thread Status:
Not open for further replies.

Share This Page