ftp Questions

2

Solved

I have a local network, on which there are some old insecure services. I use nginx reverse proxy with client certificates authentication as safe entrypoint to this local network from the Internet. ...
Jacobus asked 25/3, 2019 at 12:45

18

Solved

I installed a WordPress blog in my local system. But when I try to add plugins from admin it asks for FTP access. What do I need to configure for WordPress to be able to upload without FTP?
Categorize asked 29/7, 2013 at 11:17

4

Solved

I'm actually trying to use CURL to make some operations on a ftp server in C++ with Visual Studio. I've no trouble to do some uploads or downloads with commande line tools. But for deleting some f...
Getraer asked 25/2, 2015 at 14:25

4

Solved

I'm trying to upload a file using an Ant task. If I use Ant directly the file is uploaded, but if I call the ant task via Maven (using the maven-antrun-plugin) I get the following error: An Ant Bu...
Dwyer asked 14/10, 2010 at 16:34

2

Solved

Is there any way to deal with situation when you need to get list of all directories on a FTP server, where the number of directories is so big that it takes too long to get it and operation fails ...
Washday asked 10/2, 2012 at 15:47

4

Solved

I have setup FTP within IIS7 on a Windows 2008 Virtual Machine. I enabled Port 21 within the endpoints and Active FTP works just fine. But I am unsure to how to connect through Passive. I followed ...
Sale asked 29/8, 2012 at 15:26

5

Solved

What's an easy way to create a directory on an FTP server using C#? I figured out how to upload a file to an already existing folder like this: using (WebClient webClient = new WebClient()) { s...
Washedup asked 13/5, 2009 at 21:57

3

Solved

While reading the FTP protocol specification from : (http://www.pcvr.nl/tcpip/ftp_file.htm). I came across this "FTP differs from the other applications that we've described because it uses two TCP...
Chagall asked 2/11, 2012 at 7:26

7

Solved

I am using cURL to try to download all files in a certain directory. here's what my list of files looks like: I have tried to do in bash script: iiumlabs.[].csv.pgp and iiumlabs* and I guess cu...
Gabey asked 2/8, 2012 at 18:6

5

Is it possible with FTPClient (Apache commons-net) to check if a remote directory exists? I want to do something like this: ftp.isDirectory(String path) //returns true, false And then get perm...
Epiphenomenon asked 21/12, 2010 at 14:42

3

I need to test FTP/FTPS/SFTP/Local File System protocols in Java. I need a mock server which can be used in any of these methods. I could find a MockFTPServer. According to my understanding...
Mckellar asked 26/2, 2013 at 18:30

5

Solved

I'm using PHP's ftp_rawlist function to get a listing of files and their associated last-modified date/time. For my purposes, I need to know the time zone (or offset) of the the last-modified date/...
Lamella asked 14/7, 2010 at 10:49

3

I want to watch a directory in Ubuntu 14.04, and when a new file is created in this directory, run a script. specifically I have security cameras that upload via FTP captured video when they detec...
Paleozoology asked 22/1, 2016 at 23:12

7

Solved

When i try to upload files using PHP's ftp_put function, earlier it was erroring: Warning: ftp_put() [function.ftp-put]: No data connection Now, i tried to put passive mode on: ftp_pasv($conn_i...
Ultramundane asked 27/5, 2011 at 4:19

2

Solved

I am trying to read files using Python's ftplib without writing them. Something roughly equivalent to: def get_page(url): try: return urllib.urlopen(url).read() except: return "" but using F...
Wachter asked 26/6, 2012 at 13:56

7

Solved

I'm trying to upload a file via ftp_put to a windows server. my code is as follows: $date = date('ymd'); $file_name = $date.'.csv'; $file_location = 'D:/inetpub/wwwroot/website.com/html/assets...
Titanothere asked 20/7, 2010 at 14:16

2

Solved

I read this post and the blogdown documentation, but I can't seem to find a relevant answer for my case. EDIT: I found this blog post describing a workaround using build_site(method="custom&qu...
Thebaine asked 22/6, 2020 at 6:48

7

Solved

I have to automatically upload folders to an FTP using a Python script. I am able to upload a single file, but not folders with subfolders and files in them. I did a lot of search, but failed. Coul...
Romeo asked 14/4, 2011 at 13:13

5

I have an Ubuntu server on Amazon, I installed everything for working with it (php, mysql, phpmyadmin, apache..), The problem is that I cant move around or edit files using the FTP. I get the err...
Whitmer asked 1/2, 2015 at 9:56

5

Solved

I've been working on an old Visual Studio 2010 Project which is published via FTP, as part of my process I have updated the project to Visual Studio 2013 and attempted to republish onto the server...
Tyburn asked 28/2, 2014 at 10:25

16

How can i check if a file on a remote ftp is a folder or not using ftplib? Best way i have right now is to do a nlst, and iterate through calling size on each of the files, if the file errors out ...
Helicograph asked 6/7, 2009 at 17:49

21

Solved

I'm using WordPress on centos 6. I try to install a plugin. But I got this error: Installing Plugin: bbPress 2.5.9 Downloading install package from https://downloads.wordpress.org/plugin/bbpre...
Styles asked 11/5, 2016 at 8:39

4

I've had a FTP server (Mac OS X, but not the server version) set up for a while where the users are virtual, i.e. they are not actual user accounts in the server's OS, but accounts handled by the F...
Copier asked 2/9, 2008 at 9:56

1

I'm having a problem handling socket timeouts with python35 ftplib. When a socket timeout error occurs, for some reason I am unable to catch the exception and the script raises the error anyway and...
Dismantle asked 17/7, 2017 at 17:48

1

Solved

Got this error while running my script: ftplib.error_perm: 550 Operation not permitted ftpdownloader.py : import ftplib import threading import logging import os class Client: def __init__(self,...
Rouge asked 29/8, 2022 at 21:6

© 2022 - 2024 — McMap. All rights reserved.