habe eben neue Serverfiles eingefügt; sprich: mysql Ordner + game Ordner.
Bekomme beim Starten aber die Fehler:
./auth not found
./game not found.
Ja, er findet die game & auth nicht, aber es ist alle sim richtigen Verzeichnis..
Muss ich eine Verknüpfung oder so erstellen?
Wenn ja, wie weiß ich wo eine Verknüpfung hin muss.??
Hier die sh start.sh
PHP Code:
#!/bin/sh
echo -e "\033[31m
Wie viele Channel ? \n
möchtest du starten?. \n
1 - 1 CH\n
2 - 2 CH\033[0m"
read chs
case $chs in
1*)
echo -e "\033[31m Database start ..\033[0m"
cd ./g1/db/
./db &
sleep 2
clear
echo -e "\033[31m \n Girisler Aciliyor ..\033[0m"
cd ../auth
./auth &
sleep 2
clear
echo -e "\033[31m \n 1.Kanal Aciliyor ..\033[0m"
cd ../../channel1/
./game &
sleep 2
echo -e "\033[31m \n Maplar Aciliyor ..\033[0m"
cd ../game99/
./game &
sleep 2
clear
cd /usr/game/g1/auth && sh auth.sh &
sleep 6
clear
;;
2*)
echo -e "\033[31m Database Acýlýyor ..\033[0m"
cd ./g1/db/
./db &
sleep 2
clear
echo -e "\033[31m \n Girisler Aciliyor ..\033[0m"
cd ../auth
./auth &
sleep 2
clear
echo -e "\033[31m \n 1.Kanal Aciliyor ..\033[0m"
cd ../../channel1/
./game &
sleep 2
clear
echo -e "\033[31m \n 2.Kanal Aciliyor ..\033[0m"
cd ../channel2/
./game &
sleep 2
echo -e "\033[31m \n Maplar Aciliyor ..\033[0m"
cd ../game99/
./game &
sleep 2
clear
cd /usr/game/g1/auth && sh auth.sh &
sleep 6
clear





