08.05.2015, 11:34
@Puppy:
After that, the returning callback is printing (printing code added by me, the default one from the include is not showing anything, szData[ ] is simply empty, or something like that) "53261, 301" (the first is the index, 0xD00D, and the second one is response code, 301), the server hangs (nothing can be written in console) when the function ends and then after few seconds of waiting it simply crashes.
I tried to debug the crash with Microsoft Visual Studio 2013 Professional - Debugger:
(I don't know if it helps at all, I don't really know how to use it, but it was an option to debug that crash)
There are no crashdetect debugs when it crashes.
pawn Код:
#define MAILER_URL "site.com/Folder/mailsender.php" // site.com redirects to forum.site.com, and site.com/Forum/ is not existing.
#include "mailer" // Mailer by Slice
public OnFilterScriptInit( )
{
SendMail( "<my email>", "<sender email>", "<sender email name>", "Crash", "Crash message" );
return 1;
}
I tried to debug the crash with Microsoft Visual Studio 2013 Professional - Debugger:
Quote:
Unhandled exception at 0x222F3538 in samp-server.exe: 0xC00001A5: An invalid exception handler routine has been detected (parameters: 0x00000003). |
There are no crashdetect debugs when it crashes.