1. GSManager
    1. Funktionen
    2. Unterstützte Spiele
    3. Neuigkeiten
    4. Statistiken
    5. Serverliste
  2. Lexikon
  3. Filebase
  4. Entwicklung
  5. Forum
    1. Dashboard
    2. Unerledigte Themen
  6. Web-Interface
  7. Artikel
  8. Mitglieder
    1. Letzte Aktivitäten
    2. Benutzer online
    3. Team
    4. Mitgliedersuche
  • Anmelden
  • Registrieren
  • Suche
Dieses Thema
  • Alles
  • Dieses Thema
  • Dieses Forum
  • Artikel
  • Seiten
  • Dateien
  • Forum
  • Lexikon
  • Erweiterte Suche
  1. GSManager
  2. Forum
  3. Unterstützung
  4. Installation

bekomme imme fehler habe schon alles ausprobiert

  • cobolt
  • 24. Oktober 2008 um 05:29
  • Geschlossen
Das Projekt GSManager (vormals ManuAdminMod) wurde am 01.01.2020 eingestellt - diese Internetpräsenz bleibt verfügbar, die Software wird aber nicht länger gepflegt. Vielen Dank für eure Unterstützung in den mehr als zehn vergangenen Jahren!
1. offizieller Beitrag
  • cobolt
    Anfänger
    Punkte
    15
    Beiträge
    2
    • 24. Oktober 2008 um 05:29
    • #1
    Code
    [24.10.08 05:25:10] Notice: ---------------------- 
    [24.10.08 05:25:10] Notice: Mod is starting... 
    [24.10.08 05:25:10] Notice: ---------------------- 
    [24.10.08 05:25:10] Notice: !! Please wait until the mod is completely initialised 
    [24.10.08 05:25:10] Notice: Config files parsed 
    [24.10.08 05:25:11] Notice: RCON connection established 
    [24.10.08 05:25:11] PHP-Error: Notice in daemon.php:95 => Undefined index: sv_log_damage 
    [24.10.08 05:25:11] PHP-Error: Notice in daemon.php:96 => Undefined index: sv_log_damage 
    [24.10.08 05:25:11] !! Error: Dvar 'sv_log_damage' must be qual to 1, current: 
    10s to quit 
    Exit cause of a critical error 
    [24.10.08 05:25:21] PHP-Error: Notice in classes/q3query.class.php:85 => Undefined index: mod 
    
    
    
    
    Fatal error: Call to a member function getCV() on a non-object in /usr/local/games/cod4mod/adminmod/classes/q3query.class.php on line 85 
    Debian-40-etch-64-LAMP:/usr/local/games/cod4mod/adminmod#
    Alles anzeigen


    Benutze Debian lamp 64bit falls es weiter hilft


    Hier mein startscript

    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=/usr/local/games/cod4mod/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/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
  • sys
    Anfänger
    Punkte
    585
    Trophäen
    1
    Beiträge
    114
    • 24. Oktober 2008 um 13:37
    • #2
    Zitat

    [24.10.08 05:25:11] !! Error: Dvar 'sv_log_damage' must be qual to 1, current:


    Zitat

    von hier

    Folgende Dvars müssen auf deinem Gameserver entsprechend gesetzt sein:

    * set g_logsync 2
    * set logfile 1
    * set sv_log_damage 1

    einfach in die server.cfg schreiben, dann sollt's funktionieren. Und nächste mal bitte die Suchfunktion benutzen.

  • Dennis
    Administrator
    Reaktionen
    148
    Punkte
    37.933
    Trophäen
    7
    Artikel
    4
    Dateien
    2
    Beiträge
    7.453
    • 24. Oktober 2008 um 13:53
    • Offizieller Beitrag
    • #3

    Und in der Wiki schauen, und vorallem bisschen selbst nachdenken und die Fehlermeldungen lesen.

    • Nächster offizieller Beitrag
  • Dieses Thema enthält 19 weitere Beiträge, die nur für registrierte Benutzer sichtbar sind.
  1. Mitarbeiter
  2. Datenschutzerklärung
  3. Nutzungsbedingungen
  4. Impressum
  5. Kontakt
Community-Software: WoltLab Suite™