Hallo
da ich ha ein cod5 server mit mam wunderbar zum laufen bekommen habe wollt ich dies mit cod4 machen . installation ging ohne probleme .
Linux Debian Lenny php5 installiert sowie mysql und sqlite
Nun ./startscript start ging ... nun bin ich auf den server ...kein manuadminmod läuft
habe :/startscript debug ausgeführt da hatte ich keine fehlermeldung
ZitatAlles anzeigen[19.12.09 12:06:58] Notice: ==========================================
[19.12.09 12:06:58] Notice: Manu-Admin-Mod v0.10.1 beta is starting...
[19.12.09 12:06:58] Notice: ==========================================
[19.12.09 12:06:58] Notice: !! Please wait until the mod is completely initialised
[19.12.09 12:06:58] Notice: Config loaded: config.cfg
[19.12.09 12:06:58] Notice: Config loaded: maps.cfg
[19.12.09 12:06:58] Notice: Config loaded: admins.cfg
[19.12.09 12:06:58] Notice: Config loaded: groups.cfg
[19.12.09 12:06:58] Notice: Language files loaded: de
[19.12.09 12:06:58] Notice: All config files were parsed
[19.12.09 12:06:58] Notice: RCON connection established (+++++++++++++++)
[19.12.09 12:06:59] Notice: Game detected: Call of Duty 4
[19.12.09 12:07:00] Notice: Dvar check successful
[19.12.09 12:07:00] Notice: Synced playerlist with 'status'
[19.12.09 12:07:01] Notice: Updated Dvar g_gametype
[19.12.09 12:07:02] Notice: Updated teamnames (sas vs. ussr)
[19.12.09 12:07:02] Notice: Sets Dvar _manuadminmod to '0.10.1 beta'
[19.12.09 12:07:02] Notice: == Loading plugins and commands ==
[19.12.09 12:07:02] Notice: - Loading logkickbans.php
[19.12.09 12:07:02] Notice: - Loading weaponrestrictions.php
[19.12.09 12:07:02] Notice: - Loading tcp_query.php
[19.12.09 12:07:03] Notice: - Loading punkbuster.php
[19.12.09 12:07:03] Notice: - Loading welcomemessages.php
[19.12.09 12:07:03] Notice: - Loading basiccommands.php
[19.12.09 12:07:03] Notice: - Loading spreemessages.php
[19.12.09 12:07:03] Notice: - Loading statistics.php
[19.12.09 12:07:03] Notice: - Loading warns.php
[19.12.09 12:07:03] Notice: - Loading banner.php
[19.12.09 12:07:03] Notice: - Loading badwords.php
[19.12.09 12:07:03] Notice: - Loading randommapcycle.php
[19.12.09 12:07:03] Notice: Randommapcycle: Setting nextmap to mp_backlot (koth)
[19.12.09 12:07:05] Notice: Set Dvar sv_maprotationcurrent to 'gametype koth map mp_backlot'
[19.12.09 12:07:05] Notice: - Loading antiteamkiller.php
[19.12.09 12:07:05] Notice: - Loading voting.php
[19.12.09 12:07:05] Notice: - Loading modstuff.php
[19.12.09 12:07:05] Notice: Heartbeat has been sent to serverlist at manuadminmod.de: Couldn't resolve hostname
[19.12.09 12:07:05] Notice: - Loading nameprotection.php
[19.12.09 12:07:05] Notice: - Loading funmessages.php
[19.12.09 12:07:05] Notice: - Loading pingkicker.php
[19.12.09 12:07:05] Notice: == Finished loading plugins and commands
[19.12.09 12:07:06] Notice: !! Finished initialisation
[19.12.09 12:07:06] Notice: === Start processing loglines... ===
[19.12.09 12:07:06] Notice: Banner message was sent: ^2This Server is running Manu-Admin-Mod ^1v0.10.1 beta
nun hab ich hier gegooglt im forum
hab diesen befehl eingegeben usr/bin/php5 -f daemon.php cfg
da erhalt ich diesen fehler !
ZitatManu-Admin-Mod v0.10.1 beta Copyright (C) 2008-2009 Manuel Kress
This program comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it under certain conditions.
Visit http://manuadminmod.de if you have any troubleError in command line parameters: Unrecognized part 'cfg'root@File-Server:/home/cod4/cod4/adminmod
kann mir jemand dabei helfen weiss echt im moment net weiter ??
Spoiler anzeigen
#!/bin/sh
# STARTSCRIPT by Hool and manu
# Much thanks to him
#
# If you have any problems, visit manuadminmod.de
# or contact manuel.strider@web.de
#
#============================
#
#=========
# CONFIG
#=========
#
# Name of process
# Unique for each mod installation
#=================================
NAME=mam
#Default: NAME=ManuAdminMod_1
#
# Basedir to adminmod installation:
#==================================
DIR=/home/cod4/cod4/adminmod
#Example: DIR=/var/games/cod4/adminmod
#
# Path to config directory
#=========================
CFGDIR=cfg
#Default: CFGDIR=config
#
# Path to log directory
#======================
LOGDIR=log
#Default: LOGDIR=log
#
# Additional parameters for the mod (e.g. -force)
#================================================
PARAMS=""
#Default: PARAMS=""
#
# Path to php-binary
# Normally only 'php'
#===================
PHP=php
Php=/usr/bin/php
#Example: PHP=/usr/local/bin/php
#
# Parameters for PHP (only for versed user)
#==========================================
PHPPARAMS="-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 $PHPPARAMS daemon.php -- -configdir "$CFGDIR" -logdir "$LOGDIR" $PARAMS
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
Spoiler anzeigen
debuglogfile
Logpos is: 1968
Line read: Finished reading
[spoiler]Modlog
0:00 [19.12.09 12:06:58] Notice: ==========================================
0:00 [19.12.09 12:06:58] Notice: Manu-Admin-Mod v0.10.1 beta is starting...
0:00 [19.12.09 12:06:58] Notice: ==========================================
0:00 [19.12.09 12:06:58] Notice: !! Please wait until the mod is completely initialised
0:00 [19.12.09 12:06:58] Notice: Config loaded: config.cfg
0:00 [19.12.09 12:06:58] Notice: Config loaded: maps.cfg
0:00 [19.12.09 12:06:58] Notice: Config loaded: admins.cfg
0:00 [19.12.09 12:06:58] Notice: Config loaded: groups.cfg
0:00 [19.12.09 12:06:58] Notice: Language files loaded: de
0:00 [19.12.09 12:06:58] Notice: All config files were parsed
0:00 [19.12.09 12:06:58] Notice: RCON connection established (88.134.158.95:20800)
0:00 [19.12.09 12:06:59] Notice: Game detected: Call of Duty 4
0:00 [19.12.09 12:07:00] Notice: Dvar check successful
0:00 [19.12.09 12:07:00] Notice: Synced playerlist with 'status'
0:00 [19.12.09 12:07:01] Notice: Updated Dvar g_gametype
0:00 [19.12.09 12:07:02] Notice: Updated teamnames (sas vs. ussr)
0:00 [19.12.09 12:07:02] Notice: Sets Dvar _manuadminmod to '0.10.1 beta'
0:00 [19.12.09 12:07:02] Notice: == Loading plugins and commands ==
0:00 [19.12.09 12:07:02] Notice: - Loading logkickbans.php
0:00 [19.12.09 12:07:02] Notice: - Loading weaponrestrictions.php
0:00 [19.12.09 12:07:02] Notice: - Loading tcp_query.php
0:00 [19.12.09 12:07:03] Notice: - Loading punkbuster.php
0:00 [19.12.09 12:07:03] Notice: - Loading welcomemessages.php
0:00 [19.12.09 12:07:03] Notice: - Loading basiccommands.php
0:00 [19.12.09 12:07:03] Notice: - Loading spreemessages.php
0:00 [19.12.09 12:07:03] Notice: - Loading statistics.php
0:00 [19.12.09 12:07:03] Notice: - Loading warns.php
0:00 [19.12.09 12:07:03] Notice: - Loading banner.php
0:00 [19.12.09 12:07:03] Notice: - Loading badwords.php
0:00 [19.12.09 12:07:03] Notice: - Loading randommapcycle.php
0:00 [19.12.09 12:07:03] Notice: Randommapcycle: Setting nextmap to mp_backlot (koth)
0:00 [19.12.09 12:07:05] Notice: Set Dvar sv_maprotationcurrent to 'gametype koth map mp_backlot'
0:00 [19.12.09 12:07:05] Notice: - Loading antiteamkiller.php
0:00 [19.12.09 12:07:05] Notice: - Loading voting.php
0:00 [19.12.09 12:07:05] Notice: - Loading modstuff.php
0:00 [19.12.09 12:07:05] Notice: Heartbeat has been sent to serverlist at manuadminmod.de: Couldn't resolve hostname
0:00 [19.12.09 12:07:05] Notice: - Loading nameprotection.php
0:00 [19.12.09 12:07:05] Notice: - Loading funmessages.php
0:00 [19.12.09 12:07:05] Notice: - Loading pingkicker.php
0:00 [19.12.09 12:07:05] Notice: == Finished loading plugins and commands
0:00 [19.12.09 12:07:06] Notice: !! Finished initialisation
0:00 [19.12.09 12:07:06] Notice: === Start processing loglines... ===
0:00 [19.12.09 12:07:06] Notice: Banner message was sent: ^2This Server is running Manu-Admin-Mod ^1v0.10.1 beta
0:00 [19.12.09 12:09:08] Notice: Banner message was sent: ^2Next map is: ^7Backlot (Hauptquartier)
gruss lemmi