• 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

Login background image

alexj1982

Chevereto Member
Hello,

My site is running in private mode.

How can you allow the background image (http://demo.chevereto.com/) on the login page (http://demo.chevereto.com/login) Show. Is this feasible?

Or rather, it is this: When calling the URL the user will end up on index and are redirected when you click on upload to login. Is this possible?

I have the login.php renamed index.php, but that did not work.

Sorry for the spelling errors, can not speak English.

regards
Alex
 
In that case login page will be always shown. So you must customize login.php theme file.
 
You don't simply change login.php to index.php or vice versa. You just don't. Like I said, keep the original files and do your thing with HTML/CSS editing.
 
After logging appears domain.de/uresname always the page. How can I redirect to domain.de/uresname/albums?
 
app/routes/route.login.php

Change this:
PHP:
G\redirect(CHV\User::getUrl(CHV\Login::getUser()));

To this:
PHP:
G\redirect(CHV\User::getUrl(CHV\Login::getUser()) . '/albums');
 
Last edited:
My mistake. Check again my past post I've edited the code.
 
In the new version there is the entry
PHP:
G\redirect(CHV\User::getUrl(CHV\Login::getUser()));
no longer. How do you implement that?
 
Back
Top