Replies: 9 comments 2 replies
|
安装的哪些插件? |
0 replies
|
这2个都无法正常使用
[cid:ca220d97-2a21-43c3-a744-67f369eb9544]
…________________________________
发件人: Ryan Wang ***@***.***>
已发送: 2026 年 4 月 22 日 星期三 17:33
收件人: halo-dev/halo ***@***.***>
抄送: Lin ***@***.***>; Author ***@***.***>
主题: Re: [halo-dev/halo] halo 安装 markdown 和 内容助手 插件 无法正常使用,版本是2.24 (Issue #9912)
[https://avatars.githubusercontent.com/u/21301288?s=20&v=4]ruibaby left a comment (halo-dev/halo#9912)<#9912 (comment)>
安装的哪些插件?
―
Reply to this email directly, view it on GitHub<#9912?email_source=notifications&email_token=A2ATXAXEPXLCBYA3HJKVXUD4XCGYNA5CNFSNUABFM5UWIORPF5TWS5BNNB2WEL2JONZXKZKDN5WW2ZLOOQXTIMRZGUYTCNRYGY22M4TFMFZW63VGMF2XI2DPOKSWK5TFNZ2KYZTPN52GK4S7MNWGSY3L#issuecomment-4295116865>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/A2ATXARRJMHZN5HPVSISBL34XCGYNAVCNFSM6AAAAACYCCN5OCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHM2DEOJVGEYTMOBWGU>.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
0 replies
|
内容助手 和 Markdown/HTML 内容块 |
1 reply
|
这几个也试过,不行 |
0 replies
|
我没有复现这样的问题,如果你期望我们能够快速复现并找到原因,请提供更加完整并且可复现的过程,包括你如何使用 api 上传的 markdown 文件。 |
0 replies
|
配置我直接用的官网的 https://docs.halo.run/getting-started/install/docker-compose,没有改过什么东西,我是用云服务器 Ubuntu24.04.3 LTS部署的 ,api 上传我是写了一个fastapi 接口 调用我的halo站点上传的 |
0 replies
|
我可以提供 域名和 登录密码,你登录上去看看?因为这是一个新搭建的服务 |
1 reply
|
我刚在本地windows 系统 使用docker compose 重新部署了一遍,确实可以正常使用,但是放到linux服务器就不行 |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
Prerequisites
System information
halo版本:2.24
数据库:postgres:15.4
What is the project operation method?
Docker Compose
What happened?
我用官网推荐docker compose 配置启动了halo服务,我用api接口上传了一个md文件,打开报错未找到符合 markdown 格式的编辑器,请检查是否已安装编辑器插件,实际上我是安装了markdown 和 内容助手 插件,因为控制台无法正常使用才用api上传
services:
halo:
image: registry.fit2cloud.com/halo/halo-pro:2.24
restart: on-failure:3
depends_on:
halodb:
condition: service_healthy
networks:
halo_network:
volumes:
ports:
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8090/actuator/health/readiness"]
interval: 30s
timeout: 5s
retries: 5
start_period: 30s
environment:
JVM 参数,默认为 -Xmx256m -Xms256m,可以根据实际情况做调整,置空表示不添加 JVM 参数
command:
PostgreSQL 的密码,请保证与下方 POSTGRES_PASSWORD 的变量值一致。
外部访问地址,请根据实际需要修改
halodb:
image: postgres:15.4
restart: on-failure:3
networks:
halo_network:
volumes:
healthcheck:
test: [ "CMD", "pg_isready" ]
interval: 10s
timeout: 5s
retries: 5
environment:
networks:
halo_network:
Reproduce Steps
No response
Relevant log output
Additional information
No response
All reactions