• 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

Sign out problems

Status
Not open for further replies.

mydive

Chevereto Member
Is anyone else experiencing problems when a user
Signs out it signs out and just sits there...
Doesn't appear to redirect back to homepage... Just sits at a white page until you retype the address in?
 
After sign out the system should tell you a message regarding that action. If nothing happens check if sessions are working properly in your server.
 
After sign out the system should tell you a message regarding that action. If nothing happens check if sessions are working properly in your server.
Server is arvixe ... I don't see what would be changed? I haven't altered anything
 
Parse error: syntax error, unexpected 're' (T_STRING) in /app/themes/Peafowl-custom/logout.php on line 12

Conflict:
PHP:
<?php _se('You're now logged out. Drop back again and see what's new', CHV\getSetting('website_name')); ?>

Problem is the un-escaped single quotes, that breaks PHP. This works better:
PHP:
<?php _se("You're now logged out. Drop back again and see what's new", CHV\getSetting('website_name')); ?>

I've already fixed it for you.
 
Parse error: syntax error, unexpected 're' (T_STRING) in /app/themes/Peafowl-custom/logout.php on line 12

Conflict:
PHP:
<?php _se('You're now logged out. Drop back again and see what's new', CHV\getSetting('website_name')); ?>

Problem is the un-escaped single quotes, that breaks PHP. This works better:
PHP:
<?php _se("You're now logged out. Drop back again and see what's new", CHV\getSetting('website_name')); ?>

I've already fixed it for you.
Brilliant! thank you Rodolfo ... you're a good man!
 
Status
Not open for further replies.
Back
Top