• 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

Cron Job is not working in 4.1.4

Version
4.1.4
Website URL
https://www.sharemyimage.com/
PHP version
8.1.28
Database driver
MySQL
Database version
8.0.36
Web browser
chrome

sharemyimage

Chevereto Member
Cron job is not working in 4.1.4 when I am trying to manully run it from the dashboard its says

Request denied​

You either don't have permission to access this page or the link has expired.

Is anyone else encountering a similar issue?

What could be the SQL query to clear the queues to remove the images?
 
Cron job is not working in 4.1.4 when I am trying to manully run it from the dashboard its says

Request denied​

You either don't have permission to access this page or the link has expired.

Is anyone else encountering a similar issue?

What could be the SQL query to clear the queues to remove the images?
I updated directly from 4.1.1 to 4.1.4, is this the main ptoblem of not working cron job.

Do let me know if any solution of this query....

What could be the SQL query to clear the queues to remove the images? Or directly delete them from the queues table.
 
After logging in to your server as root, type crontab -e and paste the code there, at the end. Then save it. After that it needs to work.

Code:
* * * * * www-data php /home/USERNAME/public_html/app/bin/legacy -C cron

Match these statements to those on your server.
  • www-data
  • /home/USERNAME/public_html
Important note, in systems such as Ubuntu, each user has their own permissions. Therefore, you need to log in with the user of the site (su username), not with root, and set the crontab.
 
HTTP triggered cron job requires the auth token, this is to prevent csrf attacks. If you get a request denied there is because the auth token is expiring or the url doesn't include the auth_token query string.

You can't fave the http run cron URL, because it needs the auth token which changes every time you login.
 
Back
Top