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:
Server is arvixe ... I don't see what would be changed? I haven't altered anythingAfter sign out the system should tell you a message regarding that action. If nothing happens check if sessions are working properly in your server.
When I do logout I indeed get a white screen. Send me some FTP access to inbox@chevereto.com and I will fix it for you buddy.
done and resent to your other address.I still don't get the email. That's weird. Can you try with inbox@rodolfoberrios.com ?
Thanks, I will test it in a few hours later today.
<?php _se('You're now logged out. Drop back again and see what's new', CHV\getSetting('website_name')); ?>
<?php _se("You're now logged out. Drop back again and see what's new", CHV\getSetting('website_name')); ?>
Brilliant! thank you Rodolfo ... you're a good man!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.