kostenloser Webspace werbefrei: lima-city


Problem mit include()

lima-cityForumProgrammiersprachenPHP, MySQL & .htaccess

  1. Autor dieses Themas

    j****p

    Hallo,

    ich habe folgendes Problem: Ich möchte eine PHP-Datei includen (ja, die Datei existiert auch!), aber das Script versucht '1' zu includen. Folgende Fehlermeldung mit PHP 5 auf meinem Rechner (localhost):

    Warning: include(1): failed to open stream: No such file or directory in /srv/www/htdocs/infofux/anzeige.php on line 13 Warning: include(): Failed opening '1' for inclusion (include_path='.:/usr/share/php5:/usr/share/php5/PEAR') in /srv/www/htdocs/infofux/anzeige.php on line 13

    Mit PHP 4.nochwas :
    Warning: main(1) [function.main]: failed to open stream: No such file or directory in /usr/export/www/vhosts/funnetwork/hosting/jojomp/phpuebungen/infofux/anzeige.php on line 13

    Warning: main() [function.include]: Failed opening '1' for inclusion (include_path='.:') in /usr/export/www/vhosts/funnetwork/hosting/jojomp/phpuebungen/infofux/anzeige.php on line 13

    Und der Quellcode bis Zeile 13:
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta content="text/html; charset=ISO-8859-1"
    http-equiv="content-type">
    <title>I&#183;N&#183;F&#183;O&#183;F&#183;U&#183;X:: Anzeige</title>
    <style type="text/css">
    td { width: 50px; height: 50px; }
    </style>
    </head>
    <body style="background-color: rgb(204, 204, 204); color: #000" alink="#ee0000" link="#0000ee" vlink="#551a8b">
    <h1 style="text-align: center;">I&#183;N&#183;F&#183;O&#183;F&#183;U&#183;X:: Anzeige</h1>
    <?php include('spielstand.php') OR die('Konnte Spielstand nicht laden!'); ?>


    Ich kann mir den Fehler nicht erklären...ist ja nicht das erste mal, das ich was include. Kann mir da jemand helfen?

    Gruß jojomp

    Beitrag geaendert: 2.4.2007 16:02:39 von jojomp
  2. Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!

    lima-city: Gratis werbefreier Webspace für deine eigene Homepage

  3. e**6

    require_once('spielstand.php'); # require nehmen. Dann bricht das Sript ab, wenn die Datei nicht existiert.


    Beitrag geaendert: 2.4.2007 16:16:28 von ef06
  4. Autor dieses Themas

    j****p

    Warning: require_once(1): failed to open stream: No such file or directory in /srv/www/htdocs/infofux/anzeige.php on line 13 Fatal error: require_once(): Failed opening required '1' (include_path='.:/usr/share/php5:/usr/share/php5/PEAR') in /srv/www/htdocs/infofux/anzeige.php on line 13

    Ok, jetzt bricht das Script ab. Ist eigentlich auch klar, dass er die Datei nicht findet, weil er versucht, die Ziffer 1 zu includen...

    Gruß jojomp
  5. e**6


    Warning: require_once(1): failed to open stream: No such file or directory in /srv/www/htdocs/infofux/anzeige.php on line 13 Fatal error: require_once(): Failed opening required '1' (include_path='.:/usr/share/php5:/usr/share/php5/PEAR') in /srv/www/htdocs/infofux/anzeige.php on line 13

    Ok, jetzt bricht das Script ab. Ist eigentlich auch klar, dass er die Datei nicht findet, weil er versucht, die Ziffer 1 zu includen...

    Gruß jojomp


    existier die Datei auch in dem Pfad?
    Ansonsten habe ich da auch keinen Tip mehr?
    Irgend etwas in der php.ini geändert? Include_Path?
  6. Poste mal den PHP Quellcode dazu ...
  7. Autor dieses Themas

    j****p

    Ok, hier mal der Quellcode:

    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
      <meta content="text/html; charset=ISO-8859-1"
     http-equiv="content-type">
      <title>I&#183;N&#183;F&#183;O&#183;F&#183;U&#183;X:: Anzeige</title>
      <style type="text/css">
    td { width: 50px; height: 50px; }
      </style>
    </head>
    <body style="background-color: rgb(204, 204, 204); color: #000" alink="#ee0000" link="#0000ee" vlink="#551a8b">
    <h1 style="text-align: center;">I&#183;N&#183;F&#183;O&#183;F&#183;U&#183;X:: Anzeige</h1>
    <?php require_once('spielstand.php') OR die('Konnte Spielstand nicht laden!'); ?>
    <table align="center" style="text-align: center;">
    <tr>
    <td><span style="color: blue;"><? echo $paarung['Spieler_1']['Name']?></span></td>
    <td><span style="color: red;">vs</span></td>
    <td><span style="color: green;"><? echo $paarung['Spieler_2']['Name']?></span></td>
    </tr>
    <tr>
    <td><span style="color: blue;"><? echo $paarung['Spieler_1']['Wort']?></span></td>
    <td></td>
    <td><span style="color: green;"><? echo $paarung['Spieler_2']['Wort']?></span></td>
    </tr>
    </table>
    <br>
    <table align="center" style="text-align: center; " border="1" cellpadding="0" cellspacing="0">
      <tbody>
    	<tr>
    <?php
    
    	/*$spielstand = array(
    		"f_00" => "A",
    		"f_01" => "B",
    		"f_02" => "C",
    		"f_03" => "D",
    		"f_04" => "E",
    		"f_05" => "F",
    		"f_06" => "G",
    		"f_10" => "H",
    		"f_11" => "I",
    		"f_12" => "J",
    		"f_13" => "K",
    		"f_14" => "L",
    		"f_15" => "M",
    		"f_16" => "N",
    		"f_20" => "O",
    		"f_21" => "P",
    		"f_22" => "Q",
    		"f_23" => "R",
    		"f_24" => "S",
    		"f_25" => "T",
    		"f_26" => "U",
    		"f_30" => "V",
    		"f_31" => "t",
    		"f_32" => "t",
    		"f_33" => "t",
    		"f_34" => "t",
    		"f_35" => "t",
    		"f_36" => "t",
    		"f_40" => "t",
    		"f_41" => "t",
    		"f_42" => "t",
    		"f_43" => "t",
    		"f_44" => "t",
    		"f_45" => "t",
    		"f_46" => "t",
    		"f_50" => "t",
    		"f_51" => "t",
    		"f_52" => "t",
    		"f_53" => "t",
    		"f_54" => "t",
    		"f_55" => "t",
    		"f_56" => "t",
    		"f_60" => "t",
    		"f_61" => "t",
    		"f_62" => "t",
    		"f_63" => "t",
    		"f_64" => "t",
    		"f_65" => "t",
    		"f_66" => "t",
    		"f_70" => "t",
    		"f_71" => "t",
    		"f_72" => "t",
    		"f_73" => "t",
    		"f_74" => "t",
    		"f_75" => "t",
    		"f_76" => "t"
    				);*/
    	$spalten = 7;
    	$spalten_aktuell = 0;
    	$reihen  = 7;
    	$reihen_aktuell = 1;
    	while($spalten_aktuell < $spalten) {
    	$id = "f_".$reihen_aktuell.$spalten_aktuell;
    	 echo "<td id=\"$id\">".$spielstand["$id"]."</td>";
    	 $spalten_aktuell++;
    	 if($spalten_aktuell == 7 && $reihen_aktuell < 7) { echo "</tr>\n<tr>"; $spalten_aktuell = 0; $reihen_aktuell++; }
    	}
    ?>
    	</tr>
        <!--<tr>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
          <td></td>
        </tr>-->
      </tbody>
    </table>
    <br><p align="center">&copy; 2007 by Johannes Prechtl</p>
    </body>
    </html>
  8. e**6

    Nimm mal Zeile 13--> OR die('Konnte Spielstand nicht laden!') weg dann sollte es funzen

    Beitrag geaendert: 2.4.2007 17:03:31 von ef06
  9. Autor dieses Themas

    j****p

    Stimmt, das wars. Funzt jetzt einwandfrei! Vielen Dank:thumb:

    Gruß jojomp
  10. Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!

    lima-city: Gratis werbefreier Webspace für deine eigene Homepage

Dir gefällt dieses Thema?

Über lima-city

Login zum Webhosting ohne Werbung!