FatalTerror Posted August 9, 2012 Author Share Posted August 9, 2012 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. Link to comment
KenXeiko Posted January 24, 2013 Share Posted January 24, 2013 Could someone provide a mirror link for the SDK (0.4)? I can't download it from the current link Link to comment
XFawkes Posted February 3, 2013 Share Posted February 3, 2013 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? Link to comment
Anderl Posted February 3, 2013 Share Posted February 3, 2013 You only need to get the image file content and send it as a string ( simply read the file ). Link to comment
XFawkes Posted February 6, 2013 Share Posted February 6, 2013 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 Link to comment
GTX Posted February 6, 2013 Share Posted February 6, 2013 Why don't you use fetchRemote? Link to comment
ExyTicTac Posted March 18, 2013 Share Posted March 18, 2013 Thanks for an outdated url, very... appreciated. Link to comment
Anderl Posted March 18, 2013 Share Posted March 18, 2013 Seriously, did you realize this is a year and 2 months old thread? Obviously, it's outdated already. Link to comment
FatalTerror Posted March 29, 2013 Author Share Posted March 29, 2013 No stress guys... http://code.opencoding.net/mta/mtaphpsdk_0.4.zip Link to comment
ViVa Posted July 28, 2016 Share Posted July 28, 2016 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. Link to comment
GTX Posted July 29, 2016 Share Posted July 29, 2016 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. Link to comment
ViVa Posted July 29, 2016 Share Posted July 29, 2016 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 ! Link to comment
ztajti Posted November 20, 2018 Share Posted November 20, 2018 (edited) hi. How I can start/stop/restart the server with PHPSDK? The server running in windows server. Thanx. Edited November 20, 2018 by ztajti Link to comment
Sarhan Posted June 12, 2019 Share Posted June 12, 2019 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.... Link to comment
Recommended Posts