• 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

Install spatiotemporal white pages

Corezeek

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