Hi,
ich versuche, das CVS-Kommando "cvs export" in einem PHP-Script zu verwenden.
Dazu benutze ich folgenden Code
Nun exportiert mir das System nur das Hauptverzeichnis (MODULNAME), die Dateien des Hauptverzeichnisses, erstellt das erste Unterverzeichnis und bricht dann ab.
Nun weiss ich nicht, ob das an PHP oder CVS liegt????
Guido
ich versuche, das CVS-Kommando "cvs export" in einem PHP-Script zu verwenden.
Dazu benutze ich folgenden Code
PHP-Code:
$command = "cvs -d /usr/cvs export -D $date $modul";
echo "<br><b>Modul-Export</b>: $command";
$output = exec($command , $rows);
$conta = count($rows);
$i = 0 ;
do {
echo " <br>$rows[$i]\n " ;
$i++ ;
} while ($i<$conta) ;
echo "<hr>\n";
if ($i >=1) {
echo "<br><b>CVS-Export erfolgreich!</b>\n";
$gonext = "enc";
}
Nun weiss ich nicht, ob das an PHP oder CVS liegt????
Guido