1. i understand i am just using the varibles that my game server is using.
     
  2. Wulf

    Wulf Community Admin

    I'd suggest contacting your host then to make sure they have the latest of everything.
     
  3. oh i put a ticket out to then and have been updating it, but still no responce from them :(
     
  4. If I'm not mistaken, you mentioned in another post that your GSP is gameservers.com? In my control panel it gives me the option to update oxide to build 58 but I think we should be on build 59 now. Once you've updated oxide to the right version you should be fine, everything is working perfectly for me.

    If you want to get a faster reply, I find that asking for mod installation has, by far, the quickest response times. If they're showing build 59 of oxide on the CP then I have no clue what your problem is.
     
  5. my server is up and i can connect to it but my rcon manager is still getting spammed with that server network error. I believe Renab ran into this problem yesterday. I remember him saying something about getting an error message spammed 50 times/sec. I wonder how he fixed his issue. I still havent loaded the oxide framework or plugins yet.
    [DOUBLEPOST=1419102723][/DOUBLEPOST]they are showing build 58 on the CP for me as well and I currently have the server vanilla.
     
  6. i fixed this issue by removing the debug code from the rust source file.
    so i guess there was still the bug, but it didn't show. (so it didn't send me 50messages/sec)
    never had problems on my server since.
     
  7. In gameserver the new update for oxide is build 71, it's possible?
     
  8. yes it's the correct last version.
     
  9. Please fix oxide bug when too many webrequests will cause oxide to stop sending.
     
  10. If it was only that simple :(
     
  11. Provide me with a plugin that can replicate the problem in under 5 mins and I'll look into it.
     
  12. how about in 10 sec?
    basically if you get 1 none responsive request, all the request after that won't work.

    Code:
    PLUGIN.Name = "spam"
    PLUGIN.Title = "spam"
    PLUGIN.Version = V(0, 0, 1)
    PLUGIN.Description = "Spam the webrequest"
    PLUGIN.Author = "Reneb"
    PLUGIN.HasConfig = falsefunction PLUGIN:Init()
       
    endfunction PLUGIN:OnServerInitialized()
        CurrentRequest = 0 
        thetimer = timer.Repeat(1,0,function() self:SendRandomRequest() end)
        thetimer2 = timer.Once(10, function() print("NOW BLOCKING ALL WEBREQUEST WITH THIS") webrequests.EnqueueGet("https://www.gfdgfds.com/#q="..tostring(math.random(100)), function(code, response) end, self.Object) end)
    end
    function PLUGIN:Unload()
        thetimer:Destroy()
        if(thetimer2) then thetimer2:Destroy() end
    end
    function PLUGIN:SendRandomRequest()
        CurrentRequest = CurrentRequest + 1
        print("Current Request: " .. CurrentRequest .. " - QueueLength: " .. tostring(webrequests.GetQueueLength()))
        webrequests.EnqueueGet("https://www.google.com/#q="..tostring(math.random(100)), function(code, response) end, self.Object)
    end
    
     
  13. Thanks, I'll look into it when I get off work.
    [DOUBLEPOST=1419998566,1419966847][/DOUBLEPOST]Got a fix just need to commit it.
    [DOUBLEPOST=1419999808][/DOUBLEPOST]
    https://github.com/OxideMod/Oxide/pull/25
     
  14. Love you hatemail ^^
     
  15. New rust server update out today..
     
  16. Rust refreshed. We are waiting for an update.
     
  17. Wulf

    Wulf Community Admin

  18. Wulf

    Wulf Community Admin

    Rule of thumb is to not update until a new update is available for the mod you are using. ;)