Sponsored Content
Operating Systems HP-UX certification hp csa HP 0-A01 Post 302248049 by DustBunny on Friday 17th of October 2008 12:43:32 AM
Old 10-17-2008
Lol, no comments! Do you have an FTP where I can upload if you need? jim is correct. Mail does not work here!
 

8 More Discussions You Might Find Interesting

1. HP-UX

HP-UX CSA book

Hi, Does anybody have HP-UX CSA book by Rafeeq Ur Rehman 2nd edition, any pdf or chm? Regards, Yoman (1 Reply)
Discussion started by: yoman
1 Replies

2. Cybersecurity

CSA having some problem

Is there anybody who is familier with CISCO SECURITY AGENT ? I have installed Oracle 10G Application Server on Linux ES3 successfully.. and It seemed to be working fine............... But due to some security policy I had to install CSA on that same server.. Till then Oracle is not... (0 Replies)
Discussion started by: dipanrc
0 Replies

3. HP-UX

urgent - HP ux csa examination

Hi, It will be grateful to u all, if u give me full details of how to write hp csa examination and questions and answers. If it is available pls. send to email address removed. Thank u ramesh (0 Replies)
Discussion started by: ramesh_ac66
0 Replies

4. UNIX for Advanced & Expert Users

HP-UX CSA Exam

Hey All, I have bought some paper from the net... let's say in PDF format. They are some questions from that paper that says Explanation: pending. Send your suggestion tofeedback*****king.com ... anyway. Here are the questions. I have made my choice but would like to know your opinion. 1. The... (1 Reply)
Discussion started by: qfwfq
1 Replies

5. HP-UX

HP0-A01 Latest dumps Required

Hi all, I'm planning to take HP0-A01 exam shortly.I checked for the updated dump version but didn't find one suitable.Further I checked its last update has been done on 21st aug 2008. Requesting you all to please post the latest dump if anyone of you is having it. Thank you.:) (0 Replies)
Discussion started by: pratip123
0 Replies

6. HP-UX

CSA wich exam?

Hello, I'm looking books and information for CSA certificate but in HP website, appears the right exam is HP0-091 but I found a book in amazon about HP0-A01 (includes 11.31?)exam, I think this is the last exam but it's extrange the HP website are obsolete. Anyone known wich is the right exam... (4 Replies)
Discussion started by: RuBiCK
4 Replies

7. HP-UX

HP-UX CSA

Hello, I want earn the HP-UX CSA certification,and i plan to pass exam HP0-A01. So i want if someone can help to find all documents that i need to access my exam. for the moment,i get this : HP-UX - System and Network Administration I HP-UX - System and Network Administration II ... (4 Replies)
Discussion started by: herbich1985
4 Replies

8. What is on Your Mind?

The Benefits or Not of Certification (was LPIC certification)

Hi guys, What do you think about these certifications? (18 Replies)
Discussion started by: Luca.Francesca
18 Replies
FTP_NB_FPUT(3)								 1							    FTP_NB_FPUT(3)

ftp_nb_fput - Stores a file from an open file to the FTP server (non-blocking)

SYNOPSIS
int ftp_nb_fput (resource $ftp_stream, string $remote_file, resource $handle, int $mode, [int $startpos]) DESCRIPTION
ftp_nb_fput(3) uploads the data from a file pointer to a remote file on the FTP server. The difference between this function and the ftp_fput(3) is that this function uploads the file asynchronously, so your program can per- form other operations while the file is being uploaded. PARAMETERS
o $ftp_stream - The link identifier of the FTP connection. o $remote_file - The remote file path. o $handle - An open file pointer on the local file. Reading stops at end of file. o $mode - The transfer mode. Must be either FTP_ASCII or FTP_BINARY. o $startpos -The position in the remote file to start uploading to. RETURN VALUES
Returns FTP_FAILED or FTP_FINISHED or FTP_MOREDATA. EXAMPLES
Example #1 ftp_nb_fput(3) example <?php $file = 'index.php'; $fp = fopen($file, 'r'); $conn_id = ftp_connect($ftp_server); $login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass); // Initate the upload $ret = ftp_nb_fput($conn_id, $file, $fp, FTP_BINARY); while ($ret == FTP_MOREDATA) { // Do whatever you want echo "."; // Continue upload... $ret = ftp_nb_continue($conn_id); } if ($ret != FTP_FINISHED) { echo "There was an error uploading the file..."; exit(1); } fclose($fp); ?> SEE ALSO
ftp_nb_put(3), ftp_nb_continue(3), ftp_put(3), ftp_fput(3). PHP Documentation Group FTP_NB_FPUT(3)
All times are GMT -4. The time now is 07:49 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy