• 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.
  • Chevereto Support CLST

    Support response

    Support checklist

    • ⚠️ Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • ✅ Confirm that the server meets the System Requirements
    • 🔥 Check for any available Hotfix - your issue could be already reported/fixed
    • 📚 Read documentation - It will be required to Debug and understand Errors for a faster support response

When I set the local storage space, the prompt is: error: can't work in target directory - check your input parameters

Status
Not open for further replies.

cingjp

Chevereto Member
👉Fill out this template accordingly with the issue you are experiencing. Add relevant files if needed. 🚧🚦Don't @mention to grab attention. Don't edit the titles of this template. Remove this paragraph when done.

🎯Description of the issue

[When I set the local storage space, the prompt is: error: can't work in target directory - check your input parameters]

▶🚶‍Reproduction steps
  1. [Permission has been set for the destination folder: 777]
  2. [URL has been set as its own domain name (this step is uncertain): https://www.picbed.cn/]
😢Unexpected result

[ Error: Can't work in target directory - check your input parameters ]

📃Error log message

[Provide any relevant error log entry. You may check our documentation for help on this]
 
I would also like to know if chevereto can manage pictures in batches, not just 24 pictures per page
If you have this function, please tell me where it is, thank you
Have a nice day!
 
Error: Can't work in target directory - check your input parameters
^^^ This error is triggered when the specified directory is not writable.

PHP:
        $this->url = $args['url'];
        $this->path = $args['bucket'];
        $this->realPath = realpath($this->path) . '/';
        if (is_writeable($this->realPath) == false) {
            throw new Exception("Can't work in target directory", 100);
        }

If that error is being triggered is because the directory either doesn't exists or is not writable. It is triggered at runtime, so you should check that the alleged path exists and that the user running the PHP process has write permission on that directory.
 
Status
Not open for further replies.
Back
Top