我最近在我的域名上安装了DokuWiki,并且遇到了一个严重的问题。我正在尝试输入这样的代码:
CREATE TABLE LOOM(
ID INT NOT NULL,
KIIP_ID INT NOT NULL,
NIMI VARCHAR(50) NOT NULL,
SYND DATE NOT NULL,
SURM DATE,
PRIMARY KEY (ID));在标签之间,如果我试图预览或保存更改,DokuWiki会显示以下内容:
This topic does not exist yet
You've followed a link to a topic that doesn't exist yet. If permissions allow, you may create it by using the Create this page button.如何解决这个问题?
发布于 2011-05-28 16:00:57
请参阅http://www.dokuwiki.org/faq:mod_security
发布于 2014-09-14 00:39:32
您应该对<code></code>标记之间的命令进行转义。就像下面这样。<code> CREATE TABLE LOOM( ID INT NOT NULL, KIIP_ID INT NOT NULL, NIMI VARCHAR(50) NOT NULL, SYND DATE NOT NULL, SURM DATE,
`PRIMARY KEY (ID)); </code>` If you still have problems previewing then Andreas is right it is most likely a web server configuration issue with Apache. To validate that you could redploy on nginx and see if the issue still persists. I have a tutorial about deploying dokuwiki on nginx here: [http://bigthinkingapplied.com/launching-a-private-wikipedia-using-dokuwiki/](http://bigthinkingapplied.com/launching-a-private-wikipedia-using-dokuwiki/)https://stackoverflow.com/questions/6157332
复制相似问题