Hello there!

I'm trying to make a GET request to a URL from a .gsc file in Call of Duty 1.1 server.
From what I know, there are no commands which are directly intended for that use, so I tried with fopen.
However, I'm getting the error said in the title when executing the fopen function - Error: signal: 0xb {11}

Developer mode is on, that's the only output that shows.

Here's the piece of code that does the request.

Code:
abc = fopen("http://mywebsite.com/getrequest.php", "r");
fclose(abc);
I tried using the same code in PHP and it worked without issue.

Any ideas what's wrong, or what other function can I use?

Thanks, regards.