• 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

Something is really messed up with 3.7.5 routing script

lovedigit

👽 Chevereto Freak
My website was working perfectly on 3.7.4, but after the update, I am getting "too many redirects" error while trying to view image. Rest of the website is working fine. Has it to do with new routeing or something?

I am using SSL on the website. This is the error I am getting in my error log.
2016/05/30 19:45:27 [info] 17269#17269: *27916 peer closed connection in SSL handshake while SSL handshaking, client: x.x.x.x, server: 0.0.0.0:443

Frontend show this:
7zbx2kX.jpg
 
app/loader.php change this:
PHP:
if(in_array($handler->request_array[0], $virtualizable_routes)) {

To this:
PHP:
if(in_array($handler->request_array[0], $virtualizable_routes) && $handler->request_array[0] !== getSetting('route_' . $handler->request_array[0])) {
 
Back
Top