Hallo, ich habe das Problem, das wenn man bei dem Control Panel auf "Server Starten" Drückt, er nicht startet...
Ich benutze das Control Panel für SAMP von Westie...
Hier mal der Start befehl von PHP
PHP
function StartProgram($directory, $command)
{
global $serverversion;
if($serverversion == "win") ServerCore::RunCommand("start /D \"".$directory."\" ".$command."");
else ServerCore::RunCommand("cd ".$directory." ; nohup ./".$command." &", "proc");
}
PHP
if($_POST['startup'])
{
if($m_pid) MiscCore::ErrorFunc("Sorry, you already have a process running.", true);
ServerCore::StartProgram(_DIRECTORY, SERVER_EXE);
MiscCore::SuccessFunc('The server has been successfully started. It may take a few seconds to fully start up.');
echo "<br /><br />";
$forceup = true;
}
Ich hoffe ihr könnt mir helfen... Fals ich noch weitere Code-Schnipsel Posten soll, bescheid sagen.
Euer ex0bie