29.03.2019, 15:00
I think this is your problem. Because the HTTP function in samp doesn't follow redirects and you probably redirect all http requests over https with some file like .htaccess(if you use apache). Try to stop the redirect only for this url.
StackOverflow: https://stackoverflow.com/a/7073258
StackOverflow: https://stackoverflow.com/a/7073258
Quote:
Originally Posted by Eddy Freddy @ StackOverflow
RewriteEngine On
RewriteCond %{SERVER_PORT} 80 RewriteCond %{REQUEST_URI} !^/yournonhttpsdirectory/ RewriteRule ^(.*)$ https://www.domain.xyz/$1 [R,L] |