What do you fear ? You fear that people send programs on the servers that will cause damage to the server, to Aternos, to its users or that will allow (for exemple) the user to violate the time limit or the witing queue right ?
Posts by paulolol
The Aternos forums are now deprecated
Learn more about this change here.
For help regarding Aternos, we recommend you to visit our support center.
-
-
Hi,
I was fancying a way to get the last entered command in the console by pressing the up arrow so I wrote this piece of code in accordance with the actual ending script of "console.php". I think you'll understand where you should put it :
Code
Display Morevar lastCom; $('#c-input').keyup(function(e) { if (e.keyCode == 13) { val = $('#c-input').val(); $.post('/ajax.php?ajx=command', {cmd: val, u: 'username'}); $('#c-input').val(''); lastCom = val; setTimeout("getlog()", 500); } else if (e.keyCode == 38) { // KeyCode 38 = Up arrow $('#c-input').val(lastCom); } else if (e.keyCode == 40) { //KeyCode 40 = Down arrow $('#c-input').val(''); } });I tried to do that with a string array to go back further in the command history (by registering each command in an array and setting the value of c-input as array[the number of times the user pressed the up arrow]) but I didn't succeed...
I hope you'll accept my code,
Regards,
Paul -
Sure you can, but ok, no matter
Thanx for the time you past to answer me
Good luck again,
Paul -
Ok, then I hope you'll be able to solve those security issues. Thanx for you answers.
Good luck,
Paul -
Ok, and sorry for the bad post section, was my German so bad ?
Ok, then can you upgrade the http://aternos.org/files/ to allow us to upload, edit or delete some files, instead of only viewing and adding plugins ?
-
I'd like a way to connect with FTP to my server, so that I could edit the server files from my computer. Can you please try to add it to Aternos ?
Thanx,
Paul