• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

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