1. We have same issue on fakaheda.eu's hosting for our TEST SEVER:

    ./StartRustDedicated -batchmode -nographics +rcon.password kpck00nx +server.port 27261 -ip 82.208.17.22 +server.identity my_server_identity +rcon.port 28261 +rcon.web 1 +rcon.ip 82.208.17.22 +server.maxplayers 10 -config server/my_server_identity/cfg/server.cfg -datadir serverdata +fps.limit 100 +server.tickrate 30

    This issue in only on oxide 2.0.3467+ .

    Tried solution:
    • There's no "-load" already
    • Provided Oxide.Core.dll in #7 => Server's not working.

    FIX:
    • Download "CSharpCompiler.x86_x64" LINK and install it in RustDedicated with executable rights.

    Note: RustDedicated = folder with rust executables NOT RustDedicated_Data!

    @Wulf i can provide you FTP and administrator access to this server if you want to investigate it by yourself seems like its problem on oxide's side.
     
    Last edited by a moderator: Sep 28, 2017
  2. Wulf

    Wulf Community Admin

    If you see the "[Error] Failed to load plugin '1' (no source found)" message, the load command is being used somewhere with no argument, there's no other reason why you'd see it. Also, that DLL is not intended to be used anymore as it's quite outdated.
     
  3. Noted.

    --

    I want to make sure that we are talking about the same issue:
    problem with /reload <plugin> command which cause Failed to load plugin '<plugin>' (no source found) on oxide 2.0.3467+ .

    Where <plugin> is plugin name.

    --

    I can't seem to find anything what could cause any load (ex. server load for players, airdrop, etc..).

    [FakaHeda] Succesfully authorized (rw)!
    15:52:36 Saved 27,141 ents, serialization(0.00), write(0.05), disk(0.05) totalstall(0.19).
    15:52:36 Saving complete
    16:02:42 Saved 27,125 ents, serialization(0.05), write(0.05), disk(0.05) totalstall(0.19).
    16:02:42 Saving complete
    16:12:43 Saved 27,187 ents, serialization(0.00), write(0.05), disk(0.05) totalstall(0.24).
    16:12:43 Saving complete
    reload Vanish
    16:17:24 Failed to load plugin 'Vanish' (no source found)
    16:17:24
    16:17:53 [event] assets/prefabs/npc/cargo plane/cargo_plane.prefab

    The problem is on clear server with oxide 2.0.3494 with TankCommander.cs + Vanish.cs.

    --

    Any recommendation?
     
  4. Wulf

    Wulf Community Admin

    Not quite the same issue as this thread, this thread was regarding using the -load with in your startup with no argument. If you see that error, it means that no plugin could be found by that name when you try to use the reload command as shown in the log, or even with load or unload.
     
  5. Can i resolve this issue here or should i make another thread?

    --

    TankCommander.cs and Vanish.cs are installed in host/oxide/plugins.

    Plugins can be loaded and "reloaded" only when server is hard restarted.

    Where host is server.
     
  6. i have use lgsm linux to install rust then can't download oxide so i change to
    and it download then i run server again and put plugin into oxide file but no mod is running in my server
    and i try command oxide.reload Clans it's show "Failed to load plugin 'Clans' (no source found)" even i press it into plugin file already please help
     
  7. Wulf

    Wulf Community Admin

    Where are you installing the plugin and do you have +oxide.directory set?
     
  8. Wulf

    Wulf Community Admin

    If you don't have +oxide.directory set, then it should be under oxide/plugins in your server's root location.
     
  9. yes in oxide / plugin
    [DOUBLEPOST=1506615838][/DOUBLEPOST]it never happen like this before becasue i open server for almost year already
    [DOUBLEPOST=1506615854][/DOUBLEPOST]this time i setup new dedicated server
     
  10. Wulf

    Wulf Community Admin

    Could I see a screenshot of your oxide/plugins folder and your startup .bat or .sh please?
     
  11. Code:
    ## Server Start Settings | Start Parameters · GameServerManagers/LinuxGSM Wiki · GitHub
    # More settings available after install in serverfiles/server/rust-server/server.cfg
    ip="139.99.2.7"
    port="28015"
    rconport="28016"
    rconpassword="....."
    rconweb="1" # Value is: 1 for Facepunch's web panel; 0 for RCON tools like Rusty or Rustadmin
    servername="777 test 1"
    maxplayers="150"# Advanced Start Settings
    seed="1900" #  default random; range : 1 to 2147483647 ; used to change or reproduce a procedural map
    worldsize="3000" # default 3000; range : 1000 to 6000 ; map size in meters
    saveinterval="300" # Auto-save in seconds
    tickrate="30" # default 30; range : 15 to 100##################################
    ######## Default Settings ########
    ##################################
    # DO NOT EDIT WILL BE OVERWRITTEN!
    # Copy settings from here and use them in either
    # common.cfg - applies settings to every instance
    # [instance].cfg - applies settings to a specific instance#### Server Settings ###### Server Start Settings | Start Parameters · GameServerManagers/LinuxGSM Wiki · GitHub
    # More settings available after install in serverfiles/server/rust-server/server.cfg
    ip="139.99.2.7"
    port="28015"
    rconport="28016"
    rconpassword="....."
    rconweb="1" # Value is: 1 for Facepunch's web panel; 0 for RCON tools like Rusty or Rustadmin
    servername="777 test 1"
    maxplayers="150"# Advanced Start Settings
    seed="1900" #  default random; range : 1 to 2147483647 ; used to change or reproduce a procedural map
    worldsize="3000" # default 3000; range : 1000 to 6000 ; map size in meters
    saveinterval="300" # Auto-save in seconds
    tickrate="30" # default 30; range : 15 to 100## Server Start Command | Start Parameters · GameServerManagers/LinuxGSM Wiki · GitHub
    fn_parms(){
    parms="-batchmode +server.ip ${ip} +server.port ${port} +server.tickrate ${tickrate} +server.hostname \"${servername}\" +server.identity \"${servicename}\" ${conditionalseed} +server.maxplayers ${maxplayers} +server.worldsize ${worldsize} +server.saveinterval ${saveinterval} +rcon.web ${rconweb} +rcon.ip ${ip} +rcon.port ${rconport} +rcon.password \"${rconpassword}\" -logfile \"${gamelogdate}\""
    }# Specific to Rust
    if [ -n "${seed}" ]; then
        # If set, then add to start parms
        conditionalseed="+server.seed ${seed}"
    else
        # Keep randomness of the number if not set
        conditionalseed=""
    fi#### LinuxGSM Settings ###### Notification Alerts
    # (on|off)# More info | Alerts · GameServerManagers/LinuxGSM Wiki · GitHub
    postalert="off"
    postdays="7"
    posttarget="hastebin"# Discord Alerts | Discord · GameServerManagers/LinuxGSM Wiki · GitHub
    discordalert="off"
    discordwebhook="webhook"# Email Alerts | Email · GameServerManagers/LinuxGSM Wiki · GitHub
    emailalert="off"
    email="[email protected]"
    emailfrom=""# IFTTT Alerts | IFTTT · GameServerManagers/LinuxGSM Wiki · GitHub
    iftttalert="off"
    ifttttoken="accesstoken"
    iftttevent="linuxgsm_alert"# Mailgun Email Alerts | Mailgun · GameServerManagers/LinuxGSM Wiki · GitHub
    mailgunalert="off"
    mailguntoken="accesstoken"
    mailgundomain="example.com"
    mailgunemailfrom="[email protected]"
    mailgunemail="[email protected]"# Pushbullet Alerts | Pushbullet · GameServerManagers/LinuxGSM Wiki · GitHub
    pushbulletalert="off"
    pushbullettoken="accesstoken"
    channeltag=""# Pushover Alerts | Pushover · GameServerManagers/LinuxGSM Wiki · GitHub
    pushoveralert="off"
    pushovertoken="accesstoken"# Telegram Alerts | Telegram · GameServerManagers/LinuxGSM Wiki · GitHub
    telegramalert="off"
    telegramtoken="accesstoken"
    telegramchatid=""## Updating | Update · GameServerManagers/LinuxGSM Wiki · GitHub
    updateonstart="off"## Backup | Backup · GameServerManagers/LinuxGSM Wiki · GitHub
    maxbackups="4"
    maxbackupdays="30"
    stoponbackup="on"## Logging | Logging · GameServerManagers/LinuxGSM Wiki · GitHub
    consolelogging="on"
    logdays="7"#### LinuxGSM Advanced Settings ###### SteamCMD Settings
    # Server appid
    appid="258550"
    # Steam App Branch Select
    # Allows to opt into the various Steam app branches. Default branch is "".
    # Example: "-beta latest_experimental"
    branch=""## LinuxGSM Server Details
    # Do not edit
    gamename="Rust"
    engine="unity3d"#### Directories ####
    # Edit with care## Server Specific Directories
    systemdir="${serverfiles}"
    executabledir="${serverfiles}"
    executable="./RustDedicated"
    serveridentitydir="${systemdir}/server/${servicename}"
    servercfg="server.cfg"
    servercfgdefault="server.cfg"
    servercfgdir="${serveridentitydir}/cfg"
    servercfgfullpath="${servercfgdir}/${servercfg}"## Backup Directory
    backupdir="${rootdir}/backups"## Logging Directories
    logdir="${rootdir}/log"
    gamelogdir="${logdir}/server"
    lgsmlogdir="${logdir}/script"
    consolelogdir="${logdir}/console"
    lgsmlog="${lgsmlogdir}/${servicename}-script.log"
    consolelog="${consolelogdir}/${servicename}-console.log"
    alertlog="${lgsmlogdir}/${servicename}-alert.log"
    postdetailslog="${lgsmlogdir}/${servicename}-postdetails.log"## Logs Naming
    lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"
    consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log"
    gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%Y-%m-%d-%H:%M:%S').log"
     

    Attached Files:

    Last edited by a moderator: Sep 28, 2017
  12. That's what i meant by host/oxide/plugins.

    Sorry for missunderstanding. 5465f465dfh465fgd4h6.png
     
  13. Wulf

    Wulf Community Admin

    Plugin names are case-sensitive, so using "reload vanish" will not work if the filename is named "Vanish". Does it work with the proper casing?
     
  14. Same problem
    [DOUBLEPOST=1506617136][/DOUBLEPOST]Any recommendation?
     

    Attached Files:

  15. because actually i should see plugin when restart server but this is none please help update are coming
     
  16. Wulf

    Wulf Community Admin

    We're looking into it.
     
  17. it just happen when u are change download location of oxide
     
  18. Noted. Let me know if i can help. :)
     
  19. Mind loading the attached plugin to see if the directory it prints out matches the plugins directory.
     

    Attached Files:

  20. Console:
    reload FolderInfo.cs
    19:28:43 Failed to load plugin 'FolderInfo.cs' (no source found)
    [DOUBLEPOST=1506619792][/DOUBLEPOST]Installed in:
    oxide/plugins
    [DOUBLEPOST=1506619977][/DOUBLEPOST]Plugin loaded using hard-reset. Instruction?