phpmytourney fehler sagt er mir !!

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • phpmytourney fehler sagt er mir !!

    Hallo,

    In php bin ich ein noob ich versuche es mir grade selber bei zubringen.

    Ich brauche eure hilfe.

    Wenn ich das phpmytourney_v2_almost_finished script anpasse und benuzen möchte dann leuft das net so wie ich gerne möchte. vlt könnt ihr mir ja helfen.

    Ihr ist die seite mit dem fehler.

    Code:
    <?php
    //***************************************************************************
    // This program is free software; you can redistribute it and/or modify
    // it under the terms of the GNU General Public License as published by
    // the Free Software Foundation; either version 2 of the License, or
    // (at your option) any later version.
    // 
    // See : ./doc/GPL.txt or [url]http://www.gnu.org/licenses/licenses.html[/url]
    //***************************************************************************
    //***************************************************************************
    // This file is part of the phpmytourney project.
    // [url]http://phpmytourney.sourceforge.net[/url]
    // 
    // Created by  : Jérôme Poulin (Ganondorf)
    // Date        : 2003-06-07
    //
    // $Id: config.php,v 1.1 2003/06/07 18:03:25 ganondorf Exp $ 
    //
    //***************************************************************************
    
    //had to add this ugly shit for phpnuke ...
    //By the way, almost none of those variable actually need to be
    //global, I mean by that they are use only in 1 function but
    //since they are server dependent, I gather them here.
    global   $cfg_include_paths,$cfg_project_http,$cfg_project_path,
             $cfg_nuke_it,$cfg_db_host,$cfg_db_user,$cfg_db_pass,$cfg_db_dbnm,
             $cfg_db_dbasdfnm,$cfg_sql_layer_class,$cfg_sql_layer_file;
             
    
    //**********************************************************
    // Define the include directory
    // to browse for includes
    // Include the myFuncs file.
    // ABSOLUTE PATH ARE STRONGLY PREFERED 
    //**********************************************************
    $cfg_project_http    = "http://www.e-sek.org/phpmytourney_v2.0/sources/tourney/";
    $cfg_project_path    = '/daten/web/web75/html/phpmytourney_v2.0/sources/';    
                         
    //SQL stuff          
    $cfg_db_host         = "localhost";  //mysql db
    $cfg_db_user         = "**********";       //mysql user
    $cfg_db_pass         = "*******";       //mysql password
    $cfg_db_dbnm         = "***********";    //mysal database name
    
    //Using it in phpnuke ?
    $cfg_nuke_it         = false;    
    
    //Windows or unix/linux server (to know which slash to use)
    $cfg_server_windows  = false;
    
    //****************************
    //SHOULD NOT EDIT BELOW THIS.
    //****************************
    if($cfg_server_windows) $cfg_slash = '\\';
    else                    $cfg_slash = '/';
    $cfg_include_paths[0]   = $cfg_project_path;
    $cfg_include_paths[1]   = $cfg_project_path . 'lib' . $cfg_slash;
    $cfg_include_paths[]    = $cfg_project_path . 'lib' . $cfg_slash . 'form' . $cfg_slash;
    $cfg_include_paths[]    = $cfg_project_path . 'lib' . $cfg_slash . 'sql'  . $cfg_slash;
    $cfg_include_paths[]    = $cfg_project_path . 'lib' . $cfg_slash . 'table'  . $cfg_slash;
    $cfg_include_paths[]    = $cfg_project_path . 'tourney' . $cfg_slash;
    $cfg_include_paths[]    = $cfg_project_path . 'tourney' . $cfg_slash . 'include'  . $cfg_slash;
    $cfg_include_paths[]    = $cfg_project_path . 'tourney' . $cfg_slash . 'class'  . $cfg_slash;
    $cfg_include_paths[]    = $cfg_project_path  . 'languages' . $cfg_slash;
    include_once($cfg_include_paths[1] . 'myFuncs.php');
    
    ////////////////////////////////////////////////////////////
    //The Constants
    myInclude('constants.php');
    
    ////////////////////////////////////////////////////////////
    // Language file
    // For now only english, 
    myInclude('lang_english.php');
    
    ////////////////////////////////////////////////////////////
    // SQL stuff.
    // we just support mysql for now, and maybe for awhile 
    // (need another database support, ask us !)
    $cfg_sql_layer_class = 'MySql';           //Sql class name used 
    $cfg_sql_layer_file  = 'sql_mysql.php';   //Sql file used.
    ////////////////////////////////////////////////////////////
    
    //**********************************************************
    // Which trace should the myTrace function print ?
    // This should all be set to false in release version.
    //**********************************************************
    $cfg_release  = false;
    if(!$cfg_release)
    {
    	$cfg_use_trace['all'] 	= true;	//Display all trace ...
    
       //error_reporting(E_ALL);
    }
    ////////////////////////////////////////////////////////////
    
    
             
    /****************************************************************************
       This part shows the CVS log information (do not edit !)
       
       $Log: config.php,v $
       Revision 1.1  2003/06/07 18:03:25  ganondorf
       initial commit
    
       
    ****************************************************************************/
    ?>
    Wo könnte dort der fehler sein.

    Ich kann das script auch gerne weider geben bei der voraussetzung das mir geholfen werden kann.
    M F G
    N-e-o Genetix

  • #2
    hier
    Code:
    if($cfg_server_windows) $cfg_slash = '\\';
    ein \ innerhalb eines string escaped das folgende zeichen

    Kommentar


    • #3
      Sry jetzt komme ich durch ein nander was soll ich jetzt genau machen

      Sry bin es am lernen möchte auch mal ein pro werden
      M F G
      N-e-o Genetix

      Kommentar


      • #4
        Original geschrieben von 4011
        hier [...] ein \ innerhalb eines string escaped das folgende zeichen
        das ist das forum, was das fehlerhaft darstellt ..... wenn du einen quote machst, siehst du auch, dass es korrekt ist ...

        Original geschrieben von Neo Genetix
        Sry jetzt komme ich durch ein nander was soll ich jetzt genau machen
        erst einmal sagen, wo diese zeile 57 ist ...

        Original geschrieben von Neo Genetix
        Sry bin es am lernen möchte auch mal ein pro werden
        dann solltest du auch selber versuchen das problem zu finden.
        INFO: Erst suchen, dann posten![color=red] | [/color]MANUAL(s): PHP | MySQL | HTML/JS/CSS[color=red] | [/color]NICE: GNOME Do | TESTS: Gästebuch[color=red] | [/color]IM: Jabber.org |


        Kommentar


        • #5
          fang zb hiermit an:
          http://at.php.net/manual/de/language....syntax.single

          Kommentar


          • #6
            56 $cfg_include_paths[0] = $cfg_project_path;
            57$cfg_include_paths[1] = $cfg_project_path . 'lib' . $cfg_slash;
            58$cfg_include_paths[] = $cfg_project_path . 'lib' . $cfg_slash . 'form' . $cfg_slash;
            M F G
            N-e-o Genetix

            Kommentar

            Lädt...
            X