• 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
  • 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

[3.5.12] Website Modus: Private - Upload Bug

Status
Not open for further replies.

Manuel

Chevereto Member
When the Website Modus is private then nothing happens when i press on the upload button in the index.php or in the header.
When i press on the Upload Button in the header the screen just gets a bit darker, nothing more.

When the Website Modus is public then everything works as intended.
Is it just me or has everyone this problem with the new patch?
 
Private mode enables the website only for registered users. With that in mind I disabled the guest upload in the private mode.

Make sure you uploaded the app/themes folder.
 
I uploaded the themes folder again and i can't press on the upload buttons even if i am logged in as a administrator.
If i press on the button in the header the screen gets dark like i said and if i press it again it is still dark.
Also i can upload as a guest via the API if u dont know.

I dont think this is all intended?
 
Change this:
PHP:
            if((!Login::getUser() and !getSetting('guest_uploads')) or getSetting('website_mode') == 'private' or $handler::getCond('maintenance')) {
                $upload_allowed = false;
            }

To this:
PHP:
            if(!Login::getUser()) {
                if(!getSetting('guest_uploads') or getSetting('website_mode') == 'private' or $handler::getCond('maintenance')) {
                    $upload_allowed = false;
                }
            }
 
Status
Not open for further replies.
Back
Top