I work on the site https://www.atrgaragedoorrepair.com/ and I am trying to edit the Functions.php file and it will not let me save the new added code. It keeps giving me an error message. Does anyone know how to fix this? It is a WordPress site. Sourc..
Category : ftp
I have the following problem: In a given time interval (eg 1h), a TXT file is automatically uploaded to my FTP Server. I want to know, at every time, if the txt file has been uploaded or not, and also to read the contents of the last uploaded txt file. My approach would be to ..
Topic: webshop with products and each product has a number of images with variations Source of images: FTP Number of images: over 200000 in my count Daily new images are added for products with variations. There is no "list" (XML, CSV…) where I can take a look at new/updated. The directory structure is simple – ..
I have an FTP server with a public IP which is used to share files with other users who can just download without authenticating (for example ftp://88.88.111.111/file.txt). As you may know, recently Gooogle Chrome started filtering FTP connections. (I know there are some workarounds for that but I am interested in an alternative solution.) What ..
When I use Laravel Storage Storage::disk(‘ftp’)->move($oldFilename, $newFilename); it takes approximately 28 seconds to rename. But when I use PHP ftp_rename function ftp_rename($conn_id, $oldFilename, $newFilename); it renames in ~5 seconds. Does Laravel use some specific approach that makes it long time to rename? Sourc..
I’m facing a strange warning: php_connect_nonb() failed: Operation now in progress (115) {"exception":"[object] (ErrorException(code: 0): Warning: ftp_fget(): php_connect_nonb() failed: Operation now in progress (115) I tried multiple solution like set the FTP_USEPASVADDRESS to false. But the warning is still here. The proprietary of ftp is not me so i can not ask they to modify ..
I’m trying using this script to download a zip file from a ftp source (on localhost is works but not on the live server form OVH ). When running it on a live server I get instantly this: successfully connected to the ftp server! logged in successfully! Error while downloading from … . Connection closed ..
I would like users to be able to send generated files via FTP using their own server information, therefore it’s not an option to have the FTP login info hardcoded into the filesystems.php file. If I use ftp_connect directly, I get the error "Call to undefined function AppHttpControllersftp_connect()" Is it possible to create a disk ..
I have an album model with FTP file system to store media images, in order to add singleFile method to have a media for the model, I have this error. It works fine if I do not use the singleFile method. laravel/framework: v8.34.0 spatie/laravel-medialibrary: v9.4.4 Model class Album extends Model implements HasMedia, Auditable { … ..
I’ve connected with FTP to my site using PhpStorm. If press Test connection button, it will write Successfully connected to (URL). But in root path – the main folder is empty. I’ve tried enable and disable passive mode, nothing worked Sourc..