• 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

    • ⚠️ 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

Install spatiotemporal white pages

vaeal

jesune
Hello, I am a program enthusiast from China. I installed the last version of v3: 3.20.20. After uploading the zip file to the server and extracting it, accessing the website was a blank page. I used a server control panel from China, http://www.bt.cn I filled in the configuration file for nginx according to the v3 document, and he informed me that 'fastcgi php. conf' is missing. I don't understand nginx configuration, could you please help me. thanks
 
Sorry to other members, for Chinese users, I will reply in Chinese.
对其他会员说声抱歉,对于中国用户,我将采用中文回答。

你目前使用的 chevereto 版本是是 v3: 3.20.20,服务器用的是宝塔面板管理,那么按照 V3 文档-Nginx 伪静态规则 ,您应该在您的宝塔面板-站点设置下的伪静态里面填入以下代码:
NGINX:
    # Disable access to sensitive application files
    location ~* (app|content|lib)/.*\.(po|php|lock|sql)$ {
        return 404;
    }
    location ~* composer\.json|composer\.lock|.gitignore$ {
        return 404;
    }
    location ~* /\.ht {
        return 404;
    }

    # Image not found replacement
    location ~* \.(jpe?g|png|gif|webp)$ {
        log_not_found off;
        error_page 404 /content/images/system/default/404.gif;
    }

    # CORS header (avoids font rendering issues)
    location ~* \.(ttf|ttc|otf|eot|woff|woff2|font.css|css|js)$ {
        add_header Access-Control-Allow-Origin "*";
    }

    # PHP front controller
    location / {
        index index.php;
        try_files $uri $uri/ /index.php$is_args$query_string;
    }

希望能帮助到您。
 
Sorry to other members, for Chinese users, I will reply in Chinese.
对其他会员说声抱歉,对于中国用户,我将采用中文回答。

你目前使用的 chevereto 版本是是 v3: 3.20.20,服务器用的是宝塔面板管理,那么按照 V3 文档-Nginx 伪静态规则 ,您应该在您的宝塔面板-站点设置下的伪静态里面填入以下代码:
NGINX:
    # Disable access to sensitive application files
    location ~* (app|content|lib)/.*\.(po|php|lock|sql)$ {
        return 404;
    }
    location ~* composer\.json|composer\.lock|.gitignore$ {
        return 404;
    }
    location ~* /\.ht {
        return 404;
    }

    # Image not found replacement
    location ~* \.(jpe?g|png|gif|webp)$ {
        log_not_found off;
        error_page 404 /content/images/system/default/404.gif;
    }

    # CORS header (avoids font rendering issues)
    location ~* \.(ttf|ttc|otf|eot|woff|woff2|font.css|css|js)$ {
        add_header Access-Control-Allow-Origin "*";
    }

    # PHP front controller
    location / {
        index index.php;
        try_files $uri $uri/ /index.php$is_args$query_string;
    }

希望能帮助到您。
我用调试模式找到了,不是不知道哪里的问题,SQLSTATE[HY000] [1045] Access denied for user 'user'@'localhost' (using password: YES)
 
Back
Top