summaryrefslogtreecommitdiff
path: root/www-ssl/admin/dbUpdateFromXLS.php
diff options
context:
space:
mode:
authorcookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2006-11-13 18:35:25 +0000
committercookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2006-11-13 18:35:25 +0000
commit822ae3578d29cb83b1bb0427e8a2ead8706e021a (patch)
treeab6ec541da94641ee8ad2732eac065e97655f361 /www-ssl/admin/dbUpdateFromXLS.php
parente502205341c335e3a15398619cf14c9bc0b7a170 (diff)
files werden mit fsockopen
git-svn-id: svn://svn.cccv.de/engel-system@159 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'www-ssl/admin/dbUpdateFromXLS.php')
-rwxr-xr-xwww-ssl/admin/dbUpdateFromXLS.php29
1 files changed, 18 insertions, 11 deletions
diff --git a/www-ssl/admin/dbUpdateFromXLS.php b/www-ssl/admin/dbUpdateFromXLS.php
index 8afe11b8..24735788 100755
--- a/www-ssl/admin/dbUpdateFromXLS.php
+++ b/www-ssl/admin/dbUpdateFromXLS.php
@@ -48,37 +48,44 @@ if( isset($_POST["PentabarfUser"]) && isset($_POST["password"]) && isset($_POST[
echo "Update XCAL-File from Pentabarf..";
//user uns password in url einbauen
- $StartURL = strpos( $_POST["PentabarfURL"], "://") + 3;
- $FileNameIn = substr( $_POST["PentabarfURL"], 0, $StartURL).
+ $FileNameIn = "https://".
$_POST["PentabarfUser"]. ":".
$_POST["password"]. "@".
- substr( $_POST["PentabarfURL"], $StartURL);
-
- if( ($fileIn = fopen( $FileNameIn, "r")) != FALSE)
+ $_POST["PentabarfURL"];
+ //backup error messeges and delate
+ $Backuperror_messages = $error_messages;
+ $fp = fsockopen( $FileNameIn, 443, $errno, $errstr, 30);
+ $error_messages = $Backuperror_messages;
+
+ if( !$fp)
+ {
+ echo "$errstr ($errno)<br />\n";
+ echo "<h2>fail: File 'https://". $_POST["PentabarfURL"]. "' not readable!</h2>";
+ }
+ else
{
if( ($fileOut = fopen( "$Tempdir/engelXML", "w")) != FALSE)
{
+ fputs( $fp, "GET / HTTP/1.0\r\n\r\n");
$Zeilen = 0;
- while (!feof($fileIn))
+ while (!feof($fp))
{
$Zeilen++;
- fputs( $fileOut, fgets( $fileIn));
+ fputs( $fileOut, fgets($fp,128));
}
fclose( $fileOut);
echo "<br>Es wurden $Zeilen Zeilen eingelesen<br>";
}
else
echo "<h2>fail: File '$Tempdir/engelXML' not writeable!</h2>";
- fclose( $fileIn);
+ fclose($fp);
}
- else
- echo "<h2>fail: File '". $_POST["PentabarfURL"]. "' not readable!</h2>";
}
else
{
echo "<form action=\"dbUpdateFromXLS.php\" method=\"post\">\n";
echo "<table border=\"0\">\n";
- echo "\t<tr><td>XCAL-File:</td>".
+ echo "\t<tr><td>XCAL-File: https://</td>".
"<td><input name=\"PentabarfURL\" type=\"text\" size=\"100\" maxlength=\"1000\" ".
"value=\"$PentabarXCALurl\"></td></tr>\n";
echo "\t<tr><td>Username:</td>".