• 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.
    • We recommend purchasing a Chevereto license to participate in this community.
    • Purchase a Community Subscription to get even faster ticket response times.

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