[PHP] Re: timeout of management session

2001-01-23 Thread Simon Chambers

Hi,

Can anyone point me in the right direction ? :

I have inherited some PHP code and the problem is that it times out of the 
management session after 10 minutes. Do I need to change code or php system 
variables?

Thanks v much

Simon



_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Waring message for FTP

2001-01-23 Thread Simon Chambers

Hi,

I have developed a small php program which creates a directory on a remote 
ftp site, which works fine. The problem is that when the directory is creted 
it displays the message:

Warning: ftp_mkdir: MKD command successful.

How can i get rid of this warning message?

Thanks

Simon

p.s. i dont know if it helps but the related code is

$login_result = ftp_login($conn_id, "User", "Password");

// check connection
if ((!$conn_id) || (!$login_result)) {
echo "Ftp connection has failed!";
echo "Attempted to connect ";
die;
} else {
   # echo "Connected  for user ";
}

$temp = ftp_mkdir($conn_id, $uploadtag);

_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]