Permission denied bei Sindikation
« am: 17.10.2006 13:53 Uhr »
Hallo an alle!
Ich versuche gerade die Sindikation zum Laufen zu bringen. Beim Klick auf Sindikation Icon kommt folgendes Fehler:

Warning: fopen(/home/www/web140/html/cache/rss091.xml): failed to open stream: Permission denied in /home/www/web140/html/includes/feedcreator.class.php on line 711

Error creating feed file, please check write permissions.

Im Bereich der Line711 kommt folgender Text:

/**
* Saves this feed as a file on the local disk. After the file is saved, a redirect
* header may be sent to redirect the user to the newly created file.
* @since 1.4
*
* @param filename string optional the filename where a recent version of the feed is saved. If not specified, the filename is $_SERVER["PHP_SELF"] with the extension changed to .xml (see _generateFilename()).
* @param redirect boolean optional send an HTTP redirect header or not. If true, the user will be automatically redirected to the created file.
*/
function saveFeed($filename="", $displayContents=true) {
if ($filename=="") {
$filename = $this->_generateFilename();
}
$feedFile = fopen($filename, "w+");
if ($feedFile) {
fputs($feedFile,$this->createFeed());
fclose($feedFile);
if ($displayContents) {
$this->_redirect($filename);
}
} else {
echo "Error creating feed file, please check write permissions.";
}
}

}


/**

Die Datei feedcreator.class.php habe ich auf 777 gesetzt - keine Wirkung. Cache wird als writeable angezeigt.

Was wäre in diesem Falle zu unternehmen?

Danke und Gruß
« Letzte Änderung: 17.10.2006 13:55 Uhr von chilly_bang »

*

Offline admin

  • *****
  • 6.364
  • Support Joomla100
    • Profil anzeigen
    • 100 Prozent Joomla-Hosting
Re: Permission denied bei Sindikation
« Antwort #1 am: 17.10.2006 13:57 Uhr »
Diese Datei benötigt gar kein 777. Die entsprechende Datei, die 666 oder 766 benötigt wäre:

/html/cache/rss091.xml
Vollkasko-Versicherung für Ihre Homepage?
https://www.joomla100.com/sicherheit/vollkasko-versicherung

Re: Permission denied bei Sindikation
« Antwort #2 am: 17.10.2006 14:05 Uhr »
Vielen Dank für die schnelle Hilfe! - schnell und schmerzlos behoben.