ilja: SHTML

mein shtml aleuft nicht auf den server! woran kann es liegen?

ich habe einen binary apache 1.3.27
der module mod_include.c ist geladen

/usr/local/apache/bin/httpd -l
Compiled-in modules:
  http_core.c
  mod_env.c
  mod_log_config.c
  mod_mime.c
  mod_negotiation.c
  mod_status.c
  mod_include.c
  mod_autoindex.c
  mod_dir.c
  mod_cgi.c
  mod_asis.c
  mod_imap.c
  mod_actions.c
  mod_userdir.c
  mod_alias.c
  mod_access.c
  mod_auth.c
  mod_setenvif.c
suexec: disabled; invalid wrapper /usr/local/apache/bin/suexec

und dies auch:

AddType text/html .shtml
AddHandler server-parsed .shtml

ich rufe im browser ab und da kommt eine leere seite! warum?

dann habe ich dies probiert:
<IfModzle mod_include.c> einzufuegen, also sah dann dies so aus:

<IfModzle mod_include.c>
AddType text/html .shtml
AddHandler server-parsed .shtml
</IfModule>

trozdem funktioniert nicht. woran kann es noch liegen?

danke,
ilja

  1. ich rufe im browser ab und da kommt eine leere seite! warum?

    trozdem funktioniert nicht. woran kann es noch liegen?

    Am SSI/HTML-Quellcode.

    1. ich rufe im browser ab und da kommt eine leere seite! warum?

      trozdem funktioniert nicht. woran kann es noch liegen?

      Am SSI/HTML-Quellcode.

      ich habe diesen code benuzt in die test.shtml

      <!--#echo var="DATE_LOCAL" -->

      kam kein ergebniss.. also seite leer.
      hat noch jemand ne idee?

      1. ich habe diesen code benuzt in die test.shtml

        <!--#echo var="DATE_LOCAL" -->

        kam kein ergebniss.. also seite leer.

        Es steht gar nichts im Quellcode?

        hat noch jemand ne idee?

        Falls da was im Quellcode steht:

        Options +Includes
        http://httpd.apache.org/docs-2.0/mod/core.html#options

        1. ich habe diesen code benuzt in die test.shtml

          <!--#echo var="DATE_LOCAL" -->

          kam kein ergebniss.. also seite leer.

          Es steht gar nichts im Quellcode?

          hat noch jemand ne idee?

          Falls da was im Quellcode steht:

          Options +Includes
          http://httpd.apache.org/docs-2.0/mod/core.html#options

          danke, hats geklappt. jetzt sieht es in der httpd.conf so aus:

          <IfModule mod_include.c>
              AddType text/html .shtml
              AddHandler server-parsed .shtml
          </IfModule>

          <Directory /usr/local/apache/htdocs>
          Options +Includes
          </Directory>

  2. hi,

    mein shtml aleuft nicht auf den server! woran kann es liegen?

    wie ist die konfigurations-option für "Includes" auf deinem server eingestellt?

    siehe auch http://httpd.apache.org/docs/mod/mod_include.html

    gruß,
    wahsaga

    --
    "Look, that's why there's rules, understand? So that you _think_ before you break 'em."
    1. hi,

      mein shtml aleuft nicht auf den server! woran kann es liegen?

      wie ist die konfigurations-option für "Includes" auf deinem server eingestellt?

      siehe auch http://httpd.apache.org/docs/mod/mod_include.html

      gruß,
      wahsaga

      habe alles richtig eingestellt und gemacht, auch die includes!