RSS Newsfeed mit PHP erstellen

  • Hallo,

    ich habe mal versucht ein RSS Feed zu erzeugen aber es kommt ein Fehler. Hat wer eine Idee wodran es liegt ?

    Code
    Warning: fopen(home/httpd/vhosts/tsv-ellerbek.de/subdomains/handball/httpdocs/feed.xml): failed to open stream: No such file or directory in /home/httpd/vhosts/tsv-ellerbek.de/subdomains/handball/httpdocs/write_rss_feed.php on line 62
    
    
    Warning: fputs(): supplied argument is not a valid stream resource in /home/httpd/vhosts/tsv-ellerbek.de/subdomains/handball/httpdocs/write_rss_feed.php on line 63
    
    
    Warning: fclose(): supplied argument is not a valid stream resource in /home/httpd/vhosts/tsv-ellerbek.de/subdomains/handball/httpdocs/write_rss_feed.php on line 64

    ALs testcode habe ich bisher:

  • Ich denke es liegt hier

    [php:1:29ec730ec3]<?php
    //File anlegen und speichern
    $file=fopen($datei,"w+");
    fputs($file,$xml);
    fclose($file);
    ?>[/php:1:29ec730ec3]

    Die Datei wird so angegeben

    Code
    $datei= "home/httpd/vhosts/tsv-ellerbek.de/subdomains/handball/httpdocs/feed.xml";