Hallo Leute Ich brauche ganz dringent Hilfe. Bei mir startet der mod überhaupt nicht. und Ich habe auch überhaupt kein Plan warum bzw auch kein Plan von dem ganzen. Ich habe das ganze forum schon durch gelesen und das hilft mir leider auch nicht, hier ist meine Startscript datei
Code
#! /bin/sh
# STARTSCRIPT by Hool and manu
# Many thanks to him :)
#
# If you have any problems, visit manuadminmod.de
# or contact [email]manuel.strider@web.de[/email]
#
#============================
#
#=========
# CONFIG
#=========
#
# Name of process
#================
NAME=ManuAdminMod
#Default: NAME=ManuAdminMod
#
# Basedir to adminmod installation:
#==================================
DIR=/home/k686/cod_4/adminmod
#Example: DIR=/var/games/cod4/adminmod
#
# Path to config directory
#=========================
CFGDIR=config
#Default: CFGDIR=cfg
#
# Path to log directory
#======================
LOGDIR=log
#Default: LOGDIR=log
#
# Path to php-binary
#===================
PHP=/usr/local/bin/php
#Example: PHP=/usr/local/bin/php
#
# Parameters for PHP (only for versed user)
#==========================================
PARAMS="-f"
#Default: PARAMS="-f"
#
#==================================
# DO NOT EDIT STH BELOW THIS LINE
#==================================
# -------------------------------------------------------------------
case "$1" in
start)
if [[ `screen -ls |grep $NAME` ]]
then
echo "Error: $NAME is already running, use '$0 stop' to stop it"
else
cd $DIR
screen -dmS $NAME $PHP $PARAMS daemon.php "$CFGDIR" "$LOGDIR"
echo "$NAME was started. If you have problems try '$0 debug'"
fi
;;
stop)
if [[ `screen -ls |grep $NAME` ]]
then
kill `screen -ls |grep $NAME |awk -F . '{print $1}'|awk '{print $1}'`
echo "$NAME was stopped"
else
echo "Error: $NAME isn't currently running"
fi
;;
status)
if [[ `screen -ls |grep $NAME` ]]
then
echo "$NAME is currently running"
else
echo "$NAME is NOT running"
fi
;;
debug)
if [[ `screen -ls |grep $NAME` ]]
then
echo "Error: $NAME is running, use '$0 stop' to stop it"
else
cd $DIR
$PHP $PARAMS daemon.php "$CFGDIR" "$LOGDIR"
fi
;;
show)
tail -f "$LOGDIR/mod.log"
;;
*)
echo "Usage: $0 {start|stop|status|debug|show}"
exit 1
;;
esac
exit 0
Alles anzeigen
und hier kommt das was Putty mir sagt wenn ich ./startscript start eingebe
****:~/cod_4/adminmod$ ./startscript start
-sh: ./startscript: /bin/sh^M: bad interpreter: No such file or directory
Da ich wie gesagt überhaupt kein plan habe hoffe ich ihr könnt mir eine Anleitung für Doofe geben
THX