Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Updatesystem
#11
Okay, danke werde das gleich mal ausprobieren Big Grin
Also ich hab ein Fehler ich weiß nicht ob meine php jetzt mit meinem Uploadlink so funktioniert, da kommt nämlich "Datei existiert nicht!" und davor noch dieser Fehler:
Code:
Warning: file() [function.file]: URL file-access is disabled in the server configuration in /users/yannici/www/update.php on line 3

Warning: file(http://yannici.bplaced.net/tools.txt) [function.file]: failed to open stream: no suitable wrapper could be found in /users/yannici/www/update.php on line 3
Datei existiert nicht!

Was ist da denn Falsch?
Meine php Datei sieht so aus:
PHP Code:
<?php
$link  
"http://yannici.bplaced.net/tools.txt";
$lines file($link);

if (!
$lines)
{
  echo 
"Datei existiert nicht!";
}
else
{
  foreach (
$lines AS $value)
  {
    
$toolname[$value] = file_get_contents("http://yannici.bplaced.net/".$value);
    
$version[$value]  = file_get_contents("http://yannici.bplaced.net/".$toolname[$value]."_version.txt");
    
    if (
$jetzige_version_von_tool != $version[$value])
    {
      echo 
"Das Tool ".$toolname[$value]." ist nicht mehr aktuell! Neue Version: "$version[$value];
    }
    else
    {
      echo 
"Das Tool ".$toolname[$value]." ist aktuell!";
    }
  }
}
?>

Wenn ich "http://yannici.bplaced.net/tools.txt" im Browser eingebe findet er das auch, aber wieso nicht in der php?

mfg
Yannici
Manchmal denke ich:
Reply


Messages In This Thread
Updatesystem - by Yannici - 03.06.2009, 19:21
RE: Updatesystem - by agrafix - 03.06.2009, 22:07
RE: Updatesystem - by Yannici - 03.06.2009, 22:42
RE: Updatesystem - by -superking- - 03.06.2009, 22:45
RE: Updatesystem - by Yannici - 03.06.2009, 22:53
RE: Updatesystem - by -superking- - 03.06.2009, 23:20
RE: Updatesystem - by iNk - 04.06.2009, 05:40
RE: Updatesystem - by Philipp Ranft - 04.06.2009, 13:27
RE: Updatesystem - by Yannici - 04.06.2009, 14:15
RE: Updatesystem - by Milu2K - 04.06.2009, 18:08
RE: Updatesystem - by Yannici - 05.06.2009, 08:53
RE: Updatesystem - by Milu2K - 05.06.2009, 13:54
RE: Updatesystem - by Yannici - 05.06.2009, 17:33
RE: Updatesystem - by -superking- - 05.06.2009, 17:33
RE: Updatesystem - by Yannici - 05.06.2009, 17:35
RE: Updatesystem - by -superking- - 05.06.2009, 17:44



Users browsing this thread: 1 Guest(s)