Umstellung auf anderen Webspace und php

Nauti

Grünschnabel
Guten Tag zusammen,
ich habe ein Problem mit der Umstellung meiner Website auf einen anderen Webspace.
Ich möchte gern aus einer csv Datei Daten auslesen und diese dann in Tabellenform auf meiner Website wiedergeben.
So weit, so gut, das hat auf meinem alten Webspace auch alle reibungslos funktioniert. Dann habe ich die Daten 1:1 übernommen und nun funktioniert es nicht mehr.

Kann mir jemand helfen?

PHP:
<?php echo '<table border="1">';
$zeilen = file ("wetterpool.csv");
foreach($zeilen AS $zeile)
{
echo "<tr>";
echo "<th>Datum und Uhrzeit</th>";
echo "<th>Temperatur</th>";
echo "<th>Luftfeuchtigkeit</th>";
echo "<th>Windgeschwindigkeit</th>";
echo "<th>Windrichtung in Grad</th>";
echo "<tr>";
echo '<tr>';
$teile = str_getcsv($zeile, ';', '"');
echo '<td>' . $teile[0] . ' ' . $teile[1] . '</td>';
echo '<td>' . $teile[2] . ' ' . $teile[3] . '</td>';
echo '<td>' . $teile[4] . ' ' . $teile[5] . '</td>';
echo '<td>' . $teile[6] . ' ' . $teile[7] . '</td>';
echo '<td>' . $teile[8] . ' ' . $teile[9] . '</td>';
echo '</tr>';
echo "<tr>";
echo "<th>Heute Regen</th>";
echo "<th>Heute Temperatur Maiximum</th>";
echo "<th>Heute Temperatur Miniumum</th>";
echo "<th>Heute Luftfeuchtigkeit Maiximum</th>";
echo "<th>Heute Luftfeuchtigkeit Minimum</th>";
echo "<th>Heute Windgeschwindigkeit Maximum</th>";
echo "<tr>";
echo '</tr>';
echo '<td>' . $teile[10] . ' ' . $teile[11] . '</td>';
echo '<td>' . $teile[14] . ' ' . $teile[15] . '</td>';
echo '<td>' . $teile[16] . ' ' . $teile[17] . '</td>';
echo '<td>' . $teile[18] . ' ' . $teile[19] . '</td>';
echo '<td>' . $teile[20] . ' ' . $teile[21] . '</td>';
echo '<td>' . $teile[22] . ' ' . $teile[23] . '</td>';
echo '</tr>';
echo "<tr>";
echo "<th>Gestern Regen</th>";
echo "<th>Gestern Temperatur Maiximum</th>";
echo "<th>Gestern Temperatur Miniumum</th>";
echo "<th>Gestern Luftfeuchtigkeit Maiximum</th>";
echo "<th>Gestern Luftfeuchtigkeit Minimum</th>";
echo "<th>Gestern Windgeschwindigkeit Maximum</th>";
echo "</tr>";
echo '</tr>';
echo '<td>' . $teile[12] . ' ' . $teile[13] . '</td>';
echo '<td>' . $teile[24] . ' ' . $teile[25] . '</td>';
echo '<td>' . $teile[26] . ' ' . $teile[27] . '</td>';
echo '<td>' . $teile[28] . ' ' . $teile[29] . '</td>';
echo '<td>' . $teile[30] . ' ' . $teile[31] . '</td>';
echo '<td>' . $teile[32] . ' ' . $teile[33] . '</td>';
echo '<td>' . $teile[34] . ' ' . $teile[35] . '</td>';
echo '</tr>';
}
echo '</table>';

Auf der neuen Website wird statt der Tabelle immer nur
Code:
'; $zeilen = file ("wetterpool.csv"); foreach($zeilen AS $zeile) { echo ""; echo "Datum und Uhrzeit"; echo "Temperatur"; echo "Luftfeuchtigkeit"; echo "Windgeschwindigkeit"; echo "Windrichtung in Grad"; echo ""; echo ''; $teile = str_getcsv($zeile, ';', '"'); echo '' . $teile[0] . ' ' . $teile[1] . ''; echo '' . $teile[2] . ' ' . $teile[3] . ''; echo '' . $teile[4] . ' ' . $teile[5] . ''; echo '' . $teile[6] . ' ' . $teile[7] . ''; echo '' . $teile[8] . ' ' . $teile[9] . ''; echo ''; echo ""; echo "Heute Regen"; echo "Heute Temperatur Maiximum"; echo "Heute Temperatur Miniumum"; echo "Heute Luftfeuchtigkeit Maiximum"; echo "Heute Luftfeuchtigkeit Minimum"; echo "Heute Windgeschwindigkeit Maximum"; echo ""; echo ''; echo '' . $teile[10] . ' ' . $teile[11] . ''; echo '' . $teile[14] . ' ' . $teile[15] . ''; echo '' . $teile[16] . ' ' . $teile[17] . ''; echo '' . $teile[18] . ' ' . $teile[19] . ''; echo '' . $teile[20] . ' ' . $teile[21] . ''; echo '' . $teile[22] . ' ' . $teile[23] . ''; echo ''; echo ""; echo "Gestern Regen"; echo "Gestern Temperatur Maiximum"; echo "Gestern Temperatur Miniumum"; echo "Gestern Luftfeuchtigkeit Maiximum"; echo "Gestern Luftfeuchtigkeit Minimum"; echo "Gestern Windgeschwindigkeit Maximum"; echo ""; echo ''; echo '' . $teile[12] . ' ' . $teile[13] . ''; echo '' . $teile[24] . ' ' . $teile[25] . ''; echo '' . $teile[26] . ' ' . $teile[27] . ''; echo '' . $teile[28] . ' ' . $teile[29] . ''; echo '' . $teile[30] . ' ' . $teile[31] . ''; echo '' . $teile[32] . ' ' . $teile[33] . ''; echo '' . $teile[34] . ' ' . $teile[35] . ''; echo ''; } echo ''; ?>
angezeigt.
 
Hi und Willkommen bei tutorials.de,

mach mal eine weitere, von dem unabhängige PHP-Datei mit:
PHP:
<?php
    phpinfo();
?>
Was gibt die beim Aufrufen aus?
Was steht im gesendeten Quelltext (je nach Browser
zB. Rechte Maustaste -> Seitenquelltext anzeigen)?

Was steht übrigens bei der ursprünglichen Seite im Quelltext?
Sieht man dort irgendwelche PHP-Fehlermeldungen?
Sieht man den Anfang des PHP-Codes (der ja nicht mit ausgegeben wird)?
 
Hallo und danke für deine Hilfe. Hier mal deine Fragen aufgeschlüsselt:



mach mal eine weitere, von dem unabhängige PHP-Datei mit:
PHP:
<?php
    phpinfo();
?>
Was gibt die beim Aufrufen aus?


Beim Aufrufen gibt er gar nix aus.

Was steht im gesendeten Quelltext (je nach Browser
zB. Rechte Maustaste -> Seitenquelltext anzeigen)?


HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

  <meta name="keywords" content="Wetter, Gemeinde Gleichen, Kerstlingerode, Homematic, OC3, Temperatur, Luftfeuchtigkeit, Windgeschwindigkeit, Windrichtung" />

  <meta name="description" content="Auf dieser Seite werden die Wetterdaten unserer Wetterstation dargestellt. Diese befindet sich in der Ortschaft Kerstlingerdoe in der Gemeinde Gleichen" />

  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  <title>Messwerte</title>


  <link href="css" rel="stylesheet" type="text/css" />

  <link href="style.css" rel="stylesheet" type="text/css" media="screen" />

  <script type="text/javascript" src="jquery-1.6.2.min.js"></script>
  <script type="text/javascript" src="jquery.poptrox-0.1.js"></script>
</head>


<body style="color: rgb(0, 0, 0);" alink="#ee0000" link="#0000ee" vlink="#551a8b">

<div id="header" class="container">
<div style="text-align: center;">
<div style="text-align: center;">
<div id="menu">
<ul style="margin-left: 324px; width: 648px;">

  <li style="width: 179px;" class="current_page_item"><a href="index.html">Homepage</a></li>

  <li style="background-color: rgb(220, 72, 62); width: 180px;"><a href="file:///C:/Dokumente%20und%20Einstellungen/Florian/Desktop/inwild/Daten.html">messwerte</a></li>

  <li style="background-color: transparent; width: 180px;"><a href="Archiv.html">Archiv</a></li>

  <li style="background-color: transparent; margin-left: 2px; width: 180px;"><a href="Standort.html">standort</a></li>

  <li style="background-color: transparent; width: 180px;"><a href="Technik.html">technik</a></li>

  <li style="background-color: transparent; width: 180px;"><a href="Kontakt.html">kontakt</a></li>

  <li style="color: rgb(255, 0, 0); background-color: transparent;"><a href="Links.html">Links und diverses</a></li>

</ul>

</div>

</div>

</div>

<div style="font-family: Tahoma;" class="caption container" id="logo">
<div style="text-align: center;"><big><big><big><big>Das
Wetter in Gleichen</big></big></big></big></div>

</div>

</div>

<br />

<div id="wrapper">
<div style="text-align: left;"></div>

<div id="splash">
<div style="text-align: center;"></div>

<p style="text-align: center;"><span><span style="color: rgb(0, 0, 0);"></span></span>
&nbsp; &nbsp; &nbsp;Messwerte</p>

<div style="text-align: center; margin-left: 0px; width: 1045px;">
<div style="margin-left: 9px; width: 1036px; text-align: center;">
<div style="text-align: center;"><?php phpinfo();?>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp; &nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp; </div>

Die Aufzeichnung dieser Wetterdaten ist ein privates Projekt. Daher
wird f&uuml;r die Richtigkeit dieser Daten keine Haftung
&uuml;bernommen!<big><br />

<br />

&nbsp;Windrichtung</big>
</div>

<table style="width: 258px; height: 172px; text-align: left; margin-left: auto; margin-right: auto;" bordercolorlight="#99CCFF" bordercolordark="#6699FF" border="1">

  <tbody>

    <tr>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="24%"><font color="#000000" face="Arial" size="1"><b>Nord</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>0
&deg;</b></font></td>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>S&uuml;ds&uuml;dwest</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>202.5
&deg;</b></font></td>

    </tr>

    <tr>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="24%"><font color="#000000" face="Arial" size="1"><b>Nordnordost</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>22.5
&deg;</b></font></td>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>S&uuml;dwest</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>225
&deg;</b></font></td>

    </tr>

    <tr>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="24%"><font color="#000000" face="Arial" size="1"><b>Nordost</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>45
&deg;</b></font></td>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>Wests&uuml;dwest</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>247.5
&deg;</b></font></td>

    </tr>

    <tr>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="24%"><font color="#000000" face="Arial" size="1"><b>Ostnordost</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>67.5
&deg;</b></font></td>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>West</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>270
&deg;</b></font></td>

    </tr>

    <tr>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="24%"><font color="#000000" face="Arial" size="1"><b>Ost</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>90
&deg;</b></font></td>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>Westnordwest</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>292.5
&deg;&nbsp;</b></font></td>

    </tr>

    <tr>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="24%"><font color="#000000" face="Arial" size="1"><b>Osts&uuml;dost</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>112.5
&deg;</b></font></td>

      <td style="background-color: rgb(255, 102, 102); text-align: center;" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>Nordwest</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>315
&deg;</b></font></td>

    </tr>

    <tr>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="24%"><font color="#000000" face="Arial" size="1"><b>S&uuml;ds&uuml;dost</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>157.5
&deg;</b></font></td>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>Nordnordwest</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>337.5
&deg;</b></font></td>

    </tr>

    <tr>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="24%"><font color="#000000" face="Arial" size="1"><b>S&uuml;d</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>180
&deg;</b></font></td>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>Nord</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>360
= 0 &deg;</b></font></td>

    </tr>

  </tbody>
</table>

<big><br />

<br />

<a href="Archiv.html">Hier k&ouml;nnen
Sie
sich die
Archivdaten der letzten Monate
ansehen.</a> <br />

Diese Daten werden viertelst&uuml;ndlich
aufgezeichnet.</big><br />

<br />

<object =""><object data="WarnModulDWD.swf" type="application/x-shockwave-flash" height="400" width="350"><param name="movie" value="./DWD/WarnModulDWD.swf?HOME=./DWD" /><para name="quality" value="high"><param name="scale" value="exactfit" /><param name="menu" value="true" /><!-- Alternate content --></para>
<h4>F&uuml;r den Inhalt dieser Seite ist der Adobe Flash
Player erforderlich.</h4>

<p><a href="http://www.adobe.com/go/getflashplayer"><img src="get_flash_player.gif" alt="Adobe Flash Player herunterladen" height="33" width="112" /></a></p>

<!-- End alternate content -->
</object><!-- END FLASH OBJECT --><br />

<br />

</object><big><a href="Archiv.html"><br />

</a></big>
<div id="poptrox"></div>

<script type="text/javascript">
$('#gallery').poptrox(); </script>
</div>

</div>

</div>

<div id="footer">
<p>Copyright &copy; 2013 http://gleichen-wetter.de. All
rights reserved. Design by <a href="http://www.freecsstemplates.org/">FCT</a>.</p>

</div>

<!-- end #footer -->
</body>
</html>

Was steht übrigens bei der ursprünglichen Seite im Quelltext?

HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

  <meta name="keywords" content="Wetter, Gemeinde Gleichen, Kerstlingerode, Homematic, OC3, Temperatur, Luftfeuchtigkeit, Windgeschwindigkeit, Windrichtung" />

  <meta name="description" content="Auf dieser Seite werden die Wetterdaten unserer Wetterstation dargestellt. Diese befindet sich in der Ortschaft Kerstlingerdoe in der Gemeinde Gleichen" />

  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  <title>Messwerte</title>


  <link href="http://fonts.googleapis.com/css?family=Abel" rel="stylesheet" type="text/css" />

  <link href="style.css" rel="stylesheet" type="text/css" media="screen" />

  <script type="text/javascript" src="jquery-1.6.2.min.js"></script>
  <script type="text/javascript" src="jquery.poptrox-0.1.js"></script>
</head>


<body style="color: rgb(0, 0, 0);" alink="#ee0000" link="#0000ee" vlink="#551a8b"><script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-16106315-4']);
  _gaq.push(['_setDomainName', '.funpic.de']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript';
ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' :
'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
  })();

</script><!-- START --><noscript><div style="display:none">&nbsp;</div></noscript><script type="text/javascript" src="http://media.funpic.de/layer.php?bid=5833267250"></script><a href='http://funpic.de/troubleacoustic.php'><!-- measure-due 1368546393--></a><!-- End -->

<div id="header" class="container">
<div style="text-align: center;">
<div style="text-align: center;">
<div id="menu">
<ul style="margin-left: 324px; width: 648px;">

  <li style="width: 179px;" class="current_page_item"><a href="index.html">Homepage</a></li>

  <li style="background-color: rgb(220, 72, 62); width: 180px;"><a href="file:///C:/Dokumente%20und%20Einstellungen/Florian/Desktop/inwild/Daten.html">messwerte</a></li>

  <li style="background-color: transparent; width: 180px;"><a href="Archiv.html">Archiv</a></li>

  <li style="background-color: transparent; margin-left: 2px; width: 180px;"><a href="Standort.html">standort</a></li>

  <li style="background-color: transparent; width: 180px;"><a href="Technik.html">technik</a></li>

  <li style="background-color: transparent; width: 180px;"><a href="Kontakt.html">kontakt</a></li>

  <li style="color: rgb(255, 0, 0); background-color: transparent;"><a href="Links.html">Links und diverses</a></li>

</ul>

</div>

</div>

</div>

<div style="font-family: Tahoma;" class="caption container" id="logo">
<div style="text-align: center;"><big><big><big><big>Das
Wetter in Gleichen</big></big></big></big></div>

</div>

</div>

<br />

<div id="wrapper">
<div style="text-align: left;"></div>

<div id="splash">
<div style="text-align: center;"></div>

<p style="text-align: center;"><span><span style="color: rgb(0, 0, 0);"></span></span>
&nbsp; &nbsp; &nbsp;Messwerte</p>

<div style="text-align: center; margin-left: 0px; width: 1045px;">
<div style="margin-left: 9px; width: 1036px; text-align: center;">
<div style="text-align: center;">
<table border="1"><tr><th>Datum und Uhrzeit</th><th>Temperatur</th><th>Luftfeuchtigkeit</th><th>Windgeschwindigkeit</th><th>Windrichtung in Grad</th><tr><tr><td>14.05.2013 17:30</td><td>14,300000 C</td><td>69 %</td><td>6.700000 km/h</td><td>170 </td></tr><tr><th>Heute Regen</th><th>Heute Temperatur Maiximum</th><th>Heute Temperatur Miniumum</th><th>Heute Luftfeuchtigkeit Maiximum</th><th>Heute Luftfeuchtigkeit Minimum</th><th>Heute Windgeschwindigkeit Maximum</th><tr></tr><td>3.0 mm</td><td>14.6 C</td><td>8.9 C</td><td>89.0 %</td><td>68.0 %</td><td>33.1 km/h</td></tr><tr><th>Gestern Regen</th><th>Gestern Temperatur Maiximum</th><th>Gestern Temperatur Miniumum</th><th>Gestern Luftfeuchtigkeit Maiximum</th><th>Gestern Luftfeuchtigkeit Minimum</th><th>Gestern Windgeschwindigkeit Maximum</th></tr></tr><td>0.3 mm</td><td>14.6 C</td><td>4.4 C</td><td>91.0 %</td><td>73.0 %</td><td>20.6 km/h</td><td> </td></tr></table>&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp; &nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
&nbsp; </div>

Die Aufzeichnung dieser Wetterdaten ist ein privates Projekt. Daher
wird f&uuml;r die Richtigkeit dieser Daten keine Haftung
&uuml;bernommen!<big><br />

<br />

&nbsp;Windrichtung</big>
</div>

<table style="width: 258px; height: 172px; text-align: left; margin-left: auto; margin-right: auto;" bordercolorlight="#99CCFF" bordercolordark="#6699FF" border="1">

  <tbody>

    <tr>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="24%"><font color="#000000" face="Arial" size="1"><b>Nord</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>0
&deg;</b></font></td>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>S&uuml;ds&uuml;dwest</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>202.5
&deg;</b></font></td>

    </tr>

    <tr>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="24%"><font color="#000000" face="Arial" size="1"><b>Nordnordost</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>22.5
&deg;</b></font></td>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>S&uuml;dwest</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>225
&deg;</b></font></td>

    </tr>

    <tr>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="24%"><font color="#000000" face="Arial" size="1"><b>Nordost</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>45
&deg;</b></font></td>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>Wests&uuml;dwest</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>247.5
&deg;</b></font></td>

    </tr>

    <tr>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="24%"><font color="#000000" face="Arial" size="1"><b>Ostnordost</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>67.5
&deg;</b></font></td>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>West</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>270
&deg;</b></font></td>

    </tr>

    <tr>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="24%"><font color="#000000" face="Arial" size="1"><b>Ost</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>90
&deg;</b></font></td>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>Westnordwest</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>292.5
&deg;&nbsp;</b></font></td>

    </tr>

    <tr>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="24%"><font color="#000000" face="Arial" size="1"><b>Osts&uuml;dost</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>112.5
&deg;</b></font></td>

      <td style="background-color: rgb(255, 102, 102); text-align: center;" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>Nordwest</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>315
&deg;</b></font></td>

    </tr>

    <tr>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="24%"><font color="#000000" face="Arial" size="1"><b>S&uuml;ds&uuml;dost</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>157.5
&deg;</b></font></td>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>Nordnordwest</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>337.5
&deg;</b></font></td>

    </tr>

    <tr>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="24%"><font color="#000000" face="Arial" size="1"><b>S&uuml;d</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>180
&deg;</b></font></td>

      <td style="background-color: rgb(255, 102, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>Nord</b></font></td>

      <td style="background-color: rgb(255, 255, 102);" align="center" height="20" width="25%"><font color="#000000" face="Arial" size="1"><b>360
= 0 &deg;</b></font></td>

    </tr>

  </tbody>
</table>

<big><br />

<br />

<a href="Archiv.html">Hier k&ouml;nnen
Sie
sich die
Archivdaten der letzten Monate
ansehen.</a> <br />

Diese Daten werden viertelst&uuml;ndlich
aufgezeichnet.</big><br />

<br />

<object =""><object data="./DWD/WarnModulDWD.swf?HOME=./DWD" type="application/x-shockwave-flash" height="400" width="350"><param name="movie" value="./DWD/WarnModulDWD.swf?HOME=./DWD" /><para name="quality" value="high"><param name="scale" value="exactfit" /><param name="menu" value="true" /><!-- Alternate content --></para>
<h4>F&uuml;r den Inhalt dieser Seite ist der Adobe Flash
Player erforderlich.</h4>

<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Adobe Flash Player herunterladen" height="33" width="112" /></a></p>

<!-- End alternate content -->
</object><!-- END FLASH OBJECT --><br />

<br />

</object><big><a href="Archiv.html"><br />

</a></big>
<div id="poptrox"></div>

<script type="text/javascript">
$('#gallery').poptrox(); </script>
</div>

</div>

</div>

<div id="footer">
<p>Copyright &copy; 2013 http://gleichen-wetter.de. All
rights reserved. Design by <a href="http://www.freecsstemplates.org/">FCT</a>.</p>

</div>

<!-- end #footer -->
</body>
</html>

Sieht man dort irgendwelche PHP-Fehlermeldungen?´

Nein

Sieht man den Anfang des PHP-Codes (der ja nicht mit ausgegeben wird)?

Nein
 
Hm. Beim zweiten Quelltext (also nicht die Testseite) scheints zu funktionieren?
Wird in der normalen Browseransicht noch immer PHP-Code ausgegeben
oder passts dort inzwischen?

Zum phpinfo-Test: der geht interessanterweise dafür nicht.
Endet der Dateiname auf .php (statt .html, .PHP oder so)?
Sind die zwei Dateien in den selben Verzeichnissen?
 
Hm. Beim zweiten Quelltext (also nicht die Testseite) scheints zu funktionieren?
Ja hier funktioniert es. Das ist ja der Quelltext welcher auf dem alten Webspace steht.

Wird in der normalen Browseransicht noch immer PHP-Code ausgegeben
oder passts dort inzwischen?

Es wird immer
Code:
'; $zeilen = file ("wetterpool.csv"); foreach($zeilen AS $zeile) { echo ""; echo "Datum und Uhrzeit"; echo "Temperatur"; echo "Luftfeuchtigkeit"; echo "Windgeschwindigkeit"; echo "Windrichtung in Grad"; echo ""; echo ''; $teile = str_getcsv($zeile, ';', '"'); echo '' . $teile[0] . ' ' . $teile[1] . ''; echo '' . $teile[2] . ' ' . $teile[3] . ''; echo '' . $teile[4] . ' ' . $teile[5] . ''; echo '' . $teile[6] . ' ' . $teile[7] . ''; echo '' . $teile[8] . ' ' . $teile[9] . ''; echo ''; echo ""; echo "Heute Regen"; echo "Heute Temperatur Maiximum"; echo "Heute Temperatur Miniumum"; echo "Heute Luftfeuchtigkeit Maiximum"; echo "Heute Luftfeuchtigkeit Minimum"; echo "Heute Windgeschwindigkeit Maximum"; echo ""; echo ''; echo '' . $teile[10] . ' ' . $teile[11] . ''; echo '' . $teile[14] . ' ' . $teile[15] . ''; echo '' . $teile[16] . ' ' . $teile[17] . ''; echo '' . $teile[18] . ' ' . $teile[19] . ''; echo '' . $teile[20] . ' ' . $teile[21] . ''; echo '' . $teile[22] . ' ' . $teile[23] . ''; echo ''; echo ""; echo "Gestern Regen"; echo "Gestern Temperatur Maiximum"; echo "Gestern Temperatur Miniumum"; echo "Gestern Luftfeuchtigkeit Maiximum"; echo "Gestern Luftfeuchtigkeit Minimum"; echo "Gestern Windgeschwindigkeit Maximum"; echo ""; echo ''; echo '' . $teile[12] . ' ' . $teile[13] . ''; echo '' . $teile[24] . ' ' . $teile[25] . ''; echo '' . $teile[26] . ' ' . $teile[27] . ''; echo '' . $teile[28] . ' ' . $teile[29] . ''; echo '' . $teile[30] . ' ' . $teile[31] . ''; echo '' . $teile[32] . ' ' . $teile[33] . ''; echo '' . $teile[34] . ' ' . $teile[35] . ''; echo ''; } echo ''; ?>

Zum phpinfo-Test: der geht interessanterweise dafür nicht.

Endet der Dateiname auf .php (statt .html, .PHP oder so)?
Die auszuwertende Datei ist ja eine Tabelle und endet auf csv

Sind die zwei Dateien in den selben Verzeichnissen?
Die Website und die Tabelle sind im selben Verzeichnis /html

Die nicht funktionierende website lautet http://www.kd9948_7807.webspace29.do.de/Daten.html
Die alte Website lautet http://gleichenwetter.funpic.de/Daten.html
 
Ich glaube du verstehst nicht was sheel will.
Vergiss mal alles was du hast. Brauchen wir vorerst nicht. Keine csv, keinen Code von dir.
Auch dein alter Webspace interessiert im Moment nicht die Bohne.

Wir testen zusammen mal ob dein neuer Webspace überhaubt mit PHP klar kommt.

Step 1) Dazu erstellst du auf dem NEUEN Server eine Datei Namens test.php. Der Inhalt dieser Seite ist
PHP:
 <?php
    phpinfo();
?>

Step 2) Rufe diese Seite über deinen Browser auf. zB http://deine_domain/test.php

Step 3) Auswerten des Resultates:

3a) Du siehst genau den oben geschrieben Code: Du hast keine PHP-Unterstützung. Kontaktiere deinen Provider und frage nach wie du zu PHP-Unterstützung kommen kannst

3b) Du siehst eine grosse Liste mit vielen Angaben. Dein Webspace kann PHP-Dateien handhaben.
Jetzt können wir daruaf aufbauen.

Also, was kommt bei dir raus. 3a) oder 3b) ?
 
Ach so, das war der Quelltext von der funktionierenden Seite...
meinte eigentlich den der nicht funktionierenden.
Aber dank dem Link hab ich den jetzt selbst.

Also, benenn die Daten.html (von http://www.kd9948_7807.webspace29.do.de/Daten.html)
mal um in Daten.php

@Yaslaw: Das phpinfo ist oben schon im Klartext wiedergekommen,
nur als Teil einer größeren Seite (Code 1)
 
Hallo,
danke euch beiden für die Hilfe. Jetzt funktioniert es.
Der Fehler war wie sheel schon richtig vermutet hatte, dass man die Seite Daten.html in Daten.php umbenennen musste.
 
Zurück