Failed sending file


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Failed sending file
Prev   Next
# 1  
Old 12-08-2009
Failed sending file

Hi,

I'm suppose to upload a file to my company's client server. I used kftp grabber in my PCLinuxOS to do the file transfer.

The client has given a username and password to upload the file in their server. When I log in to the server, I cannot access root or home directory, nor can I access the users directory (sub-dir of home).

I've accessed the client's server with the user name myobabss and a password for that user. I only can access the myobabss user in the users directory. I can't access any other users in the users directory.

I assume this is because the client has only allowed for us to access that directory?

But when I try to upload a file to that directory (myobabss), I can see the word transferring file appearing in kftp grabber, but when the transfer is complete, the file is not there.

Why is this and how can I solve it?

Pls help.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Sending an argument to a .sh file

Hi, This is the content of a file name "test.sh": #!/bin/bash if ; then echo "I am Here" fi When runing the command: ./test.sh chair table The echo command "I am Here" will appear only based on the second value, in other words only if the there is no file name "table" regardless if... (1 Reply)
Discussion started by: uniran
1 Replies

2. Ubuntu

Sending a file to a vmware

Please i have a question: ifconfig return: eth0 Link encap:Ethernet HWaddr 08:00:27:71:aa:2c adr inet6: fe80::a00:27ff:fe71:aa2c/64 Scope:Lien UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 Packets reçus:3 erreurs:0 :0 overruns:0 frame:0 ... (4 Replies)
Discussion started by: chercheur111
4 Replies

3. UNIX for Dummies Questions & Answers

No mail sending - Deferred: 403 4.7.0 TLS handshake failed

Please help! I am in urgent need of assistance. What started out as a small problem with IMAP folders not working seems to have spread. Our mail server, Scalix running on CentOS 5.5 isn't sending out any mail. There are now over 400 emails queued waiting to go out, all of which give the... (0 Replies)
Discussion started by: beckyboo
0 Replies

4. UNIX for Dummies Questions & Answers

Sending a file

Help me. .i want to send a file from one terminal to another terminal . .how to do that??? thnx in advance . .:) (2 Replies)
Discussion started by: Nagaraju.s
2 Replies

5. UNIX for Dummies Questions & Answers

Splitting a file and sending results to another file

Hi Here is my script: #!/bin/bash set -x dir="/var/local/dsx/import" gawk -F, ' $1 == last1 && $2 == last2 { printf $0"\n" >> $dir/$2 } $1 !=last1 || $2 != last2 { printf $0"\n" >> $dir/$2 } { last1=$1 last2=$2 } (11 Replies)
Discussion started by: ladyAnne
11 Replies

6. Shell Programming and Scripting

file sending scenario

hi all i have a view in the database with columns prod_no,prod_nm, prod_code using a shell script i should query this view and dump the data in a delimited flat file and send to another ftp server.... i also have to schedule this periodically using cron tab. can you... (2 Replies)
Discussion started by: rajesh_tns
2 Replies

7. Solaris

Sending a file to a server

Dear Experts, please help i am very much confused here and not getting the right path, actually i want to send a file from client to a server, initially i used mmap() which is failing most of the time so i want to use general IO streams to do that, i can open a file in "rb" mode and read... (1 Reply)
Discussion started by: vin_pll
1 Replies

8. UNIX for Advanced & Expert Users

Reading a file and sending mail based on content of the file

Hi Gurus, I am having an requirement. i have to read a list file which contains file names and send mail to different users based on the files in the list file. eg. if file a.txt exists then send a mail to a@a.com simillary for b.txt,c.txt etc. Thanks for your help, Nimu (6 Replies)
Discussion started by: nimu1979
6 Replies

9. Shell Programming and Scripting

Failed to get value from a file using sed command

Hi folks, I have the following file (tnsnames.ora): DB10g = (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = buffy)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = DB10g) ) ) EXTPROC_CONNECTION_DATA = (DESCRIPTION = (ADDRESS_LIST = ... (2 Replies)
Discussion started by: nir_s
2 Replies

10. UNIX for Dummies Questions & Answers

sending to txt file

i have done this code but am not sure how to send it to a txt file for i in `w -h | awk '{ print $1 }'| sort | uniq`; do n=`w -h $i | wc -l` printf "$i:$n\n" thanks any help would be great (5 Replies)
Discussion started by: peter112
5 Replies
Login or Register to Ask a Question
CURLOPT_RESUME_FROM(3)					     curl_easy_setopt options					    CURLOPT_RESUME_FROM(3)

NAME
CURLOPT_RESUME_FROM - set a point to resume transfer from SYNOPSIS
#include <curl/curl.h> CURLcode curl_easy_setopt(CURL *handle, CURLOPT_RESUME_FROM, long from); DESCRIPTION
Pass a long as parameter. It contains the offset in number of bytes that you want the transfer to start from. Set this option to 0 to make the transfer start from the beginning (effectively disabling resume). For FTP, set this option to -1 to make the transfer start from the end of the target file (useful to continue an interrupted upload). When doing uploads with FTP, the resume position is where in the local/source file libcurl should try to resume the upload from and it will then append the source file to the remote target file. If you need to resume a transfer beyond the 2GB limit, use CURLOPT_RESUME_FROM_LARGE(3) instead. DEFAULT
0, not used PROTOCOLS
HTTP, FTP, SFTP, FILE EXAMPLE
CURL *curl = curl_easy_init(); if(curl) { curl_easy_setopt(curl, CURLOPT_URL, "ftp://example.com"); /* resume upload at byte index 200 */ curl_easy_setopt(curl, CURLOPT_RESUME_FROM, 200L); /* ask for upload */ curl_easy_setopt(curl, CURLOPT_UPLOAD, 1L); /* set total data amount to expect */ curl_easy_setopt(curl, CURLOPT_INFILESIZE, size_of_file); /* Perform the request */ curl_easy_perform(curl); } AVAILABILITY
Always RETURN VALUE
Returns CURLE_OK SEE ALSO
CURLOPT_RESUME_FROM_LARGE(3), CURLOPT_RANGE(3), CURLOPT_INFILESIZE(3), libcurl 7.54.0 February 03, 2016 CURLOPT_RESUME_FROM(3)