• 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

安装问题

piper1136

Chevereto Member
按照一种官方安装执行
许可= YOUR_V3_LICENSE_KEY &&
卷曲-f -SOJL \
-X POST -d "nowrap" \
-H "许可证:$LICENSE " \
“https://chevereto.com/api/download/3.20” \
&& 解压chevereto*.zip \
&& rm -rf chevereto*.zip \
&& 作曲家 安装 \
&& chown www-数据:. -R


出现了
在 ArrayLoader.php 第 44 行:

未知包没有定义名称 ([{"name":"abraham\/twitteroauth","version":"2.0.2","version_normalized":"2.0.2.0","source":{"type":"
git","url":"https:\/\/github.com\/abraham\/twitteroauth.git","reference":"5a424e80a1200674451844fbaae8a0098a316a01"},"dist":{"type":"zip"
"url":"https:\/\/api.github.com\/repos\/abraham\/twitteroauth\/zipball\/5a424e80a1200674451844fbaae8a0098a316a01","参考":"5a424e80a
1200674451844fbaae8a0098a316a01","shasum":""},"require":{"composer\/ca-bundle"
 
Hi @piper1136, I'm sorry that you are having this unfortunate issue.

The documentation was outdated, it has been fixed recently. The command should be:

Code:
LICENSE=YOUR_V3_LICENSE_KEY &&
curl -f -SOJL \
    -X POST -d "nowrap" \
    -H "License: $LICENSE" \
    "https://chevereto.com/api/download/3.20" \
&& unzip chevereto*.zip \
&& rm -rf chevereto*.zip \
&& composer install --ignore-platform-reqs \
&& chown www-data: . -R

(it adds --ignore-platform-reqs on composer command line).

That should work for you, give it a try and let us know if you need further help or if it worked.
 
Back
Top