Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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
Bad luck for me.
Updated to 3.7.0 from 3.6.7
I've started the DB update from web, but again, it's not for my 11M images
tried
/install?debug
but it does not work.
Whole site is down now
That's because you need to run the stats query and that's why I requested access to do it. Anyway... Do this:
1. change chevereto_installed_version to 3.6.9 in chv_settings
2. open install/?debug
3. Paste all that statement and ejexecute them in your backend mysql
INSERT INTO `*****_stats` (stat_type, stat_date_gmt, stat_images, stat_image_views, stat_disk_used)
SELECT "date", DATE(image_date_gmt) AS date_gmt, COUNT(*) AS images, SUM(image_views) AS image_views, SUM(image_size + image_thumb_size + image_medium_size) AS disk_used FROM `*****_images` GROUP BY DATE(image_date_gmt);
Code:
Duplicate entry '2009-07-18' for key 'stat_date_gmt'
When the system does the update from 3.6.9 to 3.7.0 it truncates the chv_stats table and then it populates that table, is very odd that the stats table shows you a duplicated entry and as you may see, the query insert records using a GROUP BY clause. Most likely you didn't truncated the table so you got those duplicates.