• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.

FTP issues

Status
Not open for further replies.
Yes, excellent, thanks for your time! And if you delete uploaded pictures from chevereto website, the are removed from Arvixe server or not?

Yeah, I tested the whole thing and it does all the job.
 
Please take a look at this problem

There are two problems.

1.do not delete files after FTP access problem

2.after a storage mode should not be uploaded to the Datefolders FTP access.

Have a solution?
NAS_FTP_Step.jpg
 
The issue is that the FTP mode was being set to ASCII and in that mode the SIZE command doesn't work. I've changed this for the next release 3.5.13

If you want to path your website before 3.5.13 open app/lib/classes/class.ftp.php and find this:
PHP:
        // Check if the file exists
        $raw = ftp_raw($this->resource, "SIZE $file")[0];

Add before this:
PHP:
        // Force binary mode
        $binary = ftp_raw($this->resource, 'TYPE I'); // SIZE command works only in Binary
 
Status
Not open for further replies.
Back
Top