Page 1 of 1

2K11 : 404 in static pages

Posted: Wed Dec 06, 2017 8:24 am
by Fabien
Hello,

I use on my blog the 2k11 theme. When I display a static page, the page always begin with "The requested page could not be found (404). This is the default page." After it the page is displayed!

Exemple here: http://www.chabreuil.com/Aurore/pages/Colophon.html
Code of the static page:

Code: Select all

<div align="center">
  <table border="0" cellspacing="4" cellpadding="2">
    <tr>
      <td valign="top" align="right" nowrap>Logiciel de de blogging&nbsp;:</td>
      <td align="left" valign="top" nowrap><a href="http://www.s9y.org" title="Serendipity" target="_blank">Serendipity</a></td>
    </tr>
    <tr>
      <td valign="top" align="right" nowrap>Th&egrave;me&nbsp;:</td>
      <td align="left" valign="top" nowrap>adapt&eacute; de 2k11, con&ccedil;u par<br />
        Matthias Mees & Veit Lehmann</td>
    </tr>
    <tr>
      <td valign="top" align="right" nowrap>Image de la page d'accueil&nbsp;:</td>
      <td align="left" valign="top" nowrap><a href="https://commons.wikimedia.org/wiki/User:%E0%AE%8E%E0%AE%B8%E0%AF%8D%E0%AE%B8%E0%AE%BE%E0%AE%B0%E0%AF%8D" title="Essaar Sasikumar" target="_blank">Essaar Sasikumar</a>, <a href="https://commons.wikimedia.org/wiki/File:Dawn_Madurai.jpg" title="Dawn in Madurai City" target="_blank">Dawn in Madurai City</a>,<br />
        Licence <a href="http://creativecommons.org/licenses/by/3.0/" title="CC BY 3.0" target="_blank">CC BY 3.0</a></td>
    </tr>
    <tr>
      <td valign="top" align="right" nowrap>Titre et sous-titre&nbsp;:</td>
      <td align="left" valign="top" nowrap>extrait de « Adieu », poème d’Arthur Rimbaud<br />
        clôturant <em>Une Saison en enfer</em>.</td>
    </tr>
  </table>
</div>
An idea?

Have a nice day.

Re: 2K11 : 404 in static pages

Posted: Wed Dec 06, 2017 7:36 pm
by yellowled
Fabien wrote:An idea?
This is a known bug (not in 2k11, but in the static pages plugin or the core) that we haven't been able to squash so far. Unfortunately, there is no quick fix available.

You can hide the message using CSS (user.css) if you'd like, but I'm not sure if that could have side-effects.

Code: Select all

.content_msg {
    display: none;
    visibility: hidden;
}
YL

Re: 2K11 : 404 in static pages

Posted: Thu Dec 07, 2017 5:29 am
by Fabien
Thank you for your answer.

Fabien