• 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

I am not able to update.

user_e5286

Chevereto Member
I have a Pro license, and I am getting a notification saying there is a newer version available (4.2), but when I go to the dashboard it says I have the latest version. I checked my account and it says my license is active, but there is no button for 4.2. However, if I manually type in the 4.2 url, the zip file downloads. How can I get the dashboard update button to work? Thank you.
 
 
Strange, I just updated to 4.2.1, and now the website doesn't work when I login. If I am logged out, it works fine, all the pics and homepage shows up, but once I login, the screen is just blank with the purple/blue background and nothing else. other than the header bar.

It is a php installation on cpanel.
 
Strange, I just updated to 4.2.1, and now the website doesn't work when I login. If I am logged out, it works fine, all the pics and homepage shows up, but once I login, the screen is just blank with the purple/blue background and nothing else. other than the header bar.

It is a php installation on cpanel.
i had the same issue. After i entered the below command it worked



just replace your site name with websitename
 
Last edited:
Did you upgrade the database too? I wasn't able to upgrade through the administrator panel. I got the error "page not found"

I had to do it through the terminal
cd /home/chevereto/mysite/uploader/app
php upgrading.php

then update database

/home/chevereto/mysite/uploader/app/bin/legacy -C update

done!
 
@allwebs We could help if you share a bit of those errors.
SQL:
# Dumped update query (to manually run in the database console)

UPDATE `chv_settings` SET `setting_value` = 1 WHERE `setting_name` = 'maintenance';
ALTER TABLE `chv_albums` MODIFY `album_user_id` bigint(32) DEFAULT NULL;
ALTER TABLE `chv_images` MODIFY `image_size` bigint(11) UNSIGNED NOT NULL;
ALTER TABLE `chv_images` MODIFY `image_type` tinyint(3) UNSIGNED as (case
 when `image_extension` in ('pdf','doc','md') then 4
 when `image_extension` in ('mp3','m4a','wav') then 3
 when `image_extension` in ('mp4','webm','mov') then 2
 when `image_extension` in ('avif','jpg','jpeg','gif','png','webp') then 1
 else 0 end) stored;
INSERT IGNORE INTO `chv_variables` (variable_name, variable_value, variable_type)
VALUES('crypt_salt', (SELECT `setting_value` FROM `chv_settings` WHERE `setting_name` = 'crypt_salt'), 'string');
INSERT IGNORE INTO `chv_variables` (variable_name, variable_value, variable_type)
VALUES('chevereto_version_installed', (SELECT `setting_value` FROM `chv_settings` WHERE `setting_name` = 'chevereto_version_installed'), 'string');
INSERT IGNORE INTO `chv_variables` (variable_name, variable_value, variable_type)
VALUES('last_used_storage', (SELECT `setting_value` FROM `chv_settings` WHERE `setting_name` = 'last_used_storage'), 'int');
INSERT IGNORE INTO `chv_variables` (variable_name, variable_value, variable_type)
[/SPOILER]
VALUES('id_padding', (SELECT `setting_value` FROM `chv_settings` WHERE `setting_name` = 'id_padding'), 'int');
INSERT IGNORE INTO `chv_variables` (variable_name, variable_value, variable_type)
VALUES('update_check_datetimegmt', (SELECT `setting_value` FROM `chv_settings` WHERE `setting_name` = 'update_check_datetimegmt'), 'string');
INSERT IGNORE INTO `chv_variables` (variable_name, variable_value, variable_type)
VALUES('update_check_notified_release', (SELECT `setting_value` FROM `chv_settings` WHERE `setting_name` = 'update_check_notified_release'), 'string');
INSERT IGNORE INTO `chv_variables` (variable_name, variable_value, variable_type)
VALUES('chevereto_news', (SELECT `setting_value` FROM `chv_settings` WHERE `setting_name` = 'chevereto_news'), 'array');
INSERT IGNORE INTO `chv_variables` (variable_name, variable_value, variable_type)
VALUES('cron_last_ran', (SELECT `setting_value` FROM `chv_settings` WHERE `setting_name` = 'cron_last_ran'), 'string');
INSERT IGNORE INTO `chv_variables` (variable_name, variable_value, variable_type)
VALUES('news_check_datetimegmt', (SELECT `setting_value` FROM `chv_settings` WHERE `setting_name` = 'news_check_datetimegmt'), 'string');
UPDATE `chv_settings` SET `setting_value` = 0 WHERE `setting_name` = "maintenance";
everything didn't fit on the screen, but all errors have the same code Warning: #1062 Duplicate entry
and Warning: #1681 Integer display width is deprecated and will be removed in a future release.
 

Attachments

  • error.png
    error.png
    76.4 KB · Views: 11
That warning should be just a notice. It is saying that the engine ignores the INT width which has no consequence at all.

Don't worry about it.
 
I tried to move the site to another server, with another database, absolutely the same. Apparently, you need to roll back and wait, I don’t see any other way out for myself because I don’t understand what the error is, and the other sites work fine.
 
Back
Top