Hello
i'm using PHP Version 4.3.4 on iis4 win2k.
Registered PHP Streams php, http, ftp, https, ftps, compress.zlib
and
openssl
OpenSSL support enabled
OpenSSL Version OpenSSL 0.9.7b 10 Apr 2003
i have written a small php page that should connect to a ftp server using SSL
What I have so far is:
<?php
$ftp_server = "192.168.101.50";
$ftp_user = "user";
$ftp_pass = "pass";
$conn_id = ftp_ssl_connect($ftp_server,21) or die("Couldn't connect to $ftp_server");
// try to login
if (@ftp_login($conn_id, $ftp_user, $ftp_pass)) {
echo "Connected as $ftp_user@$ftp_server\n";
} else {
echo "Couldn't connect as $ftp_user\n";
}
?>
when i try this page i receive an error
Fatal error: Maximum execution time of 30 seconds exceeded in c:\inetpub\wwwroot\default.php
Can anyone help me with that?
I cannot find info about that anywhere on the internet/newsgroups
Thanks in Advance
iOn`mU