1. GSManager
    1. Features
    2. Supported Games
    3. News
    4. Statistics
    5. Server list
  2. Lexicon
  3. Filebase
  4. Development
  5. Forum
    1. Dashboard
    2. Unresolved Threads
  6. Web-Interface
  7. Articles
  8. Members
    1. Recent Activities
    2. Users Online
    3. Team
    4. Search Members
  • Login
  • Register
  • Search
This Thread
  • Everywhere
  • This Thread
  • This Forum
  • Articles
  • Pages
  • Files
  • Forum
  • Lexikon
  • More Options
  1. GSManager
  2. Forum
  3. Support
  4. Installation

Problem mit Starten des Adminmods

  • Hidden
  • July 18, 2012 at 5:37 PM
The project GSManager (formerly ManuAdminMod) was discontinued on 01.01.2020 - this internet presence stays available, but the software is no longer maintained. Thanks for your support over the more than 10 past years!
  • Hidden
    Intermediate
    Reactions Received
    12
    Points
    1,047
    Trophies
    2
    Posts
    194
    • July 18, 2012 at 5:37 PM
    • #1

    Hi alle zusammen
    als ich heute versucht habe auf unseren Servern den MAM zu installieren klappte das alles soweit auch ganz gut. Als ich allerdings ./startscript start und daraufhin ./startscript debug eingegeben hatte kam folgende Fehlermeldung: Could not open input file: daemon.php .Die Rechte sind alle gesetzt. zu Testzwecken standen sie sogar auf 777.
    Hier mein startscript

    Display Spoiler

    #!/bin/bash

    # 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=ManuAdminMod_1
    #Default: NAME=ManuAdminMod_1
    #
    # Basedir to adminmod installation:
    #==================================
    DIR=/home/gameserver/promod/adminmod
    #Example: DIR=/var/games/cod4/adminmod
    #
    # Path to config directory
    #=========================
    CFGDIR=config
    #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
    #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
    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 $PHPPARAMS daemon.php -- -configdir "$CFGDIR" -logdir "$LOGDIR" $PARAMS
    fi
    ;;
    show)
    tail -f "$LOGDIR/mod.log"
    ;;
    *)
    echo "Usage: $0 {start|stop|status|debug|show}"
    exit 1
    ;;
    esac

    exit 0

    Hoffe ihr könnt mir helfen :)

  • Icetea
    Beginner
    Points
    520
    Posts
    99
    • July 18, 2012 at 5:44 PM
    • #2

    Ist denn der Pfad richtig gesetzt?
    DIR=/home/gameserver/promod/adminmod

  • Hidden
    Intermediate
    Reactions Received
    12
    Points
    1,047
    Trophies
    2
    Posts
    194
    • July 18, 2012 at 6:01 PM
    • #3

    Hey habe grade meinen Fehler gefunden der Pfad war tatsächlich falsch habe einen "Doppelornder" gehabt (adminmod/adminmod). Trotz meines Fehlers danke für Hilfe :)

  1. Staff
  2. Privacy Policy
  3. Terms of Service
  4. Legal Notice
  5. Contact
Powered by WoltLab Suite™