Jump to content

[TUT] PHP SDK


FatalTerror

Do you like this tutorial ?  

115 members have voted

  1. 1. Do you like this tutorial ?

    • Yes
      102
    • No
      13


Recommended Posts

Posted
Nice tuto , it is very useful c:, but when I done the first example appear Hello Mr.Padawan this is right ? or I done something bad in this ?

Yea, you are right :)

With this example, you learn how transfer informations Site > Server.

You say to the server to get the name of your cat, the site get & return it to the server.

Paid developer. Twitter: @willia_am -

http://www.williamdasilva.fr
  • 5 months later...
Posted

Could someone provide a mirror link for the SDK (0.4)?

I can't download it from the current link :roll:

Multi Theft Auto: San Andreas - DM/DD Race Server

350x20.png

Multi Theft Auto: San Andreas - Freeroam Server (WIP)

350x20.png

Wolfenstein: Enemy Territory Server

350x20.png

Mafia II Multiplayer Server

350x20.png

More Insane-Players Server

  • 2 weeks later...
Posted

I need your help about PHP_SDK plugin.

I know how to return strings through php, so I just ask:

How can I return an image to the MTA? doReturn - returns nil all the time

I tried converting image to a string , but dxCreateTexture don't treat that string as a pixels.

Maybe do you know how to convert it so MTA will understand the code?

Also tied sending an image to a server [ftp] but my php server do not allow ftp connections.

Any clues?

European Pro Gamers Member

LUA Programmer

Posted

You only need to get the image file content and send it as a string ( simply read the file ).

"[...] If you don’t love it, if you’re not having fun doing it, you don’t really love it, you’re going to give up." - Steve Jobs, 2007

Posted

I tried fread and file_get_contents and It seems that this is working, because when I am outputing the string version of an image I see a code in the browser, but when I am trying to send it to MTA, MTA outputs nil all the time.

<?php 
 include( "mta_sdk.php" ); 
 $input = mta::getInput(); 
 $player = $input[0]; 
 $url = $input[1]; 
  
  $str = file_get_contents($url); 
  
  mta::doReturn($player,$str); 
?> 

  
function imageURL(thePlayer,cmd,url) 
    callRemote ( "http://mywebsite.com/image.php", mail_return, thePlayer, url) 
end 
addCommandHandler("url",imageURL) 
  
function mail_return(player,str) 
    outputConsole(player) -- returns me as an element 
    outputConsole(str) -- returns always 'nil' 
end 
  

European Pro Gamers Member

LUA Programmer

Posted

Why don't you use fetchRemote?

Do you require a paid scripter? Contact me! (Unavailable) Currently I am experienced in Lua, PHP, HTML, CSS, SQL and JS.

Developer and owner of

https://projectbea.st - Project Beast
  • 1 month later...
Posted

Seriously, did you realize this is a year and 2 months old thread? Obviously, it's outdated already.

"[...] If you don’t love it, if you’re not having fun doing it, you don’t really love it, you’re going to give up." - Steve Jobs, 2007

  • 2 weeks later...
  • 3 years later...
Posted

Hm, someone can help me ?

What I should type here :

public $http_username = '';

public $http_password = '';

Also If you will record a video tutorial it will be great.

Posted

With HTTP username and password you can call functions in MTA server via PHP. That needs an account on MTA server which must have special privileges. It is all explained on wiki. You don't need to fill those variables, but if you want to call function on server, you can just put username and password as arguments of SDK call function.

Do you require a paid scripter? Contact me! (Unavailable) Currently I am experienced in Lua, PHP, HTML, CSS, SQL and JS.

Developer and owner of

https://projectbea.st - Project Beast
Posted
With HTTP username and password you can call functions in MTA server via PHP. That needs an account on MTA server which must have special privileges. It is all explained on wiki. You don't need to fill those variables, but if you want to call function on server, you can just put username and password as arguments of SDK call function.

Thanks so much ! :)

  • 2 years later...
Posted (edited)

hi. How I can start/stop/restart the server with PHPSDK? The server running in windows server. Thanx.

Edited by ztajti
  • 6 months later...
Posted
On 20/11/2018 at 14:56, ztajti said:

hi. How I can start/stop/restart the server with PHPSDK? The server running in windows server. Thanx.

You can use Open Game Panel ,  And run your server on it, and use API....

Discord ✨ Sarhan ✨ #5990

Instagram : Sarhan_Host

Twitter : Sarhan_Host

Facebook : SarhanHost

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...