Jump to content

Nohau

Member
  • Content Count

    4
  • Joined

  • Last visited

  • Medals

Community Reputation

1 Neutral

About Nohau

  • Rank
    Rookie
  1. Nohau

    Out of memory hack?

    Had this happen to our server as well. Found someone sending code to the server that looked like the falling : if(isserver) vote 98*99 and it didn't show the rest but we banned the guy . Turn on publicvariables.txt as that is how they are sending it. Dwarden this was part of the crash info I sent you a few weeks back. What it does is causes the server to hange then it starts to just leak memory till it his roughly ~2.8 gigs which triggers the 32bit effect of binary just going OOM. Thanks, Nohau
  2. Nohau

    Arma2MySQL

    I am missing something like maybe a escape char or something when trying to accomplish a procedure I am getting the following : But in mysql this call works : Thanks, Nohau
  3. Nohau

    Arma2MySQL

    So there was no log files being generated at the time as well the Arma2Net explorer was working without any issues which I thought I was in the clear of it being blocked dlls .. But after causing my server to crash 4 times I started trying to dig deeper and found that all the arma2net and arma2netmysqlplugin(s) where being blocked even the database.txt file . Like stated the explorer worked fine but it was only in game where I seen the issue and the log files where not being generated the only thing I had to go off of was the event log error that generated. I do have it working now though. Thanks, Nohau
  4. Nohau

    Arma2MySQL

    So I hunted down the version of mysql connector required took a bit of Google searching but found it. But now whenever I execute the code it just crash's my the server. Not sure if this is related to the 2.3 version but don't know of what version fix's the dll dependency issues and where to place what dll's need to go into what folders if there is a dll dependancy issue within arma2net itself. This is what I am getting : Application: arma2oaserver.exe Framework Version: v4.0.30319 Description: The process was terminated due to an unhandled exception. Exception Info: System.IO.FileNotFoundException Stack: at <Module>.Arma2Net.Unmanaged.InvokeFunctionImpl(SByte*, Int32, SByte*) at <Module>.Arma2Net.Unmanaged.InvokeFunction(SByte*, Int32, SByte*) Code looks like the following : _queryvalue = format ["[%1,%2]", _uid, _variable_value]; "Arma2Net.Unmanaged" callExtension format ["Arma2NETMySQL ['arma2game', 'updateb', '%1']", _queryvalue]; I have also tried the following : _result = "Arma2Net.Unmanaged" callExtension format ["Arma2NETMySQL ['arma2game', 'updateb', '%1']", _queryvalue]; _result I can call the stored procedure from the mysql cli without issues so I know it isn't example : mysql> call updateb(1,300); Query OK, 1 row affected (0.00 sec) But I am not even getting that far as soon as the code is executed on the server side it causes a crash like above mentioned . Thanks, Nohau
×