PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : interner serverfehler mit apache und CGI ?



halla
29.06.04, 13:28
hallo alle zusammen,

ich habe da ein kleines problem aus dem ich ums verrecken nicht schlau werde.

mein apache soll cgi's ausführen. eigentlich kein problem dachte ich, aber er will einfach nicht. ich bekomme beim zugriff auf das verzeichniss immer einen internen serverfehler 500?

benutze übrigens suse9.0/apache1.3 und poste mal meine httpd.conf mit:



##
## httpd.conf -- Apache HTTP server configuration file
##
#
### +-------------------------------------------------------------------------------------------------------------+
### | |
### | Section 1: Global Environment |
### | ----------------------------------------- |
### +-------------------------------------------------------------------------------------------------------------+
#
# ServerType is either inetd, or standalone. Inetd mode is only supported on
# Unix platforms.
#

ServerType standalone

#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
ServerRoot "/var/lib/httpd"

LockFile /var/lock/subsys/httpd/httpd.accept.lock

#
# PidFile: The file in which the server should record its process
# identification number when it starts.
#
PidFile /var/run/httpd.pid

ScoreBoardFile /var/run/httpd.scoreboard

#
# Timeout: The number of seconds before receives and sends time out.
#
Timeout 300

#
# KeepAlive: Whether or not to allow persistent connections (more than
# one request per connection). Set to "Off" to deactivate.
#
KeepAlive On

#
# MaxKeepAliveRequests: The maximum number of requests to allow
# during a persistent connection. Set to 0 to allow an unlimited amount.
# We recommend you leave this number high, for maximum performance.
#
MaxKeepAliveRequests 100

#
# KeepAliveTimeout: Number of seconds to wait for the next request from the
# same client on the same connection.
#
KeepAliveTimeout 15


# Note: these two values are set by SuSEconfig according to the setting of the
# HTTPD_PERFORMANCE variable in /etc/sysconfig/apache!
MinSpareServers 1
MaxSpareServers 1

#
# Number of servers to start initially --- should be a reasonable ballpark
# figure.
#
StartServers 1

MaxClients 250

MaxRequestsPerChild 0

#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, in addition to the default. See also the <VirtualHost>
# directive.
#
#Listen 3000
#Listen 12.34.56.78:80

#
# BindAddress: You can support virtual hosts with this option. This directive
# is used to tell the server which IP address to listen to. It can either
# contain "*", an IP address, or a fully qualified Internet domain name.
# See also the <VirtualHost> and Listen directives.
#
#BindAddress *

#
# Dynamic Shared Object (DSO) Support
#
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Please read the file http://httpd.apache.org/docs/dso.html for more
# details about the DSO mechanism and run `httpd -l' for the list of already
# built-in (statically linked and thus always available) modules in your httpd
# binary.
#
# Note: The order in which modules are loaded is important. Don't change
# the order below without expert advice.

# Example:
# LoadModule foo_module libexec/mod_foo.so
LoadModule mmap_static_module /usr/lib/apache/mod_mmap_static.so
LoadModule vhost_alias_module /usr/lib/apache/mod_vhost_alias.so
LoadModule env_module /usr/lib/apache/mod_env.so
LoadModule define_module /usr/lib/apache/mod_define.so
LoadModule config_log_module /usr/lib/apache/mod_log_config.so
LoadModule agent_log_module /usr/lib/apache/mod_log_agent.so
LoadModule referer_log_module /usr/lib/apache/mod_log_referer.so
LoadModule mime_magic_module /usr/lib/apache/mod_mime_magic.so
LoadModule mime_module /usr/lib/apache/mod_mime.so
LoadModule negotiation_module /usr/lib/apache/mod_negotiation.so
LoadModule status_module /usr/lib/apache/mod_status.so
LoadModule info_module /usr/lib/apache/mod_info.so
LoadModule includes_module /usr/lib/apache/mod_include.so
LoadModule autoindex_module /usr/lib/apache/mod_autoindex.so
LoadModule dir_module /usr/lib/apache/mod_dir.so
LoadModule cgi_module /usr/lib/apache/mod_cgi.so
LoadModule asis_module /usr/lib/apache/mod_asis.so
LoadModule imap_module /usr/lib/apache/mod_imap.so
LoadModule action_module /usr/lib/apache/mod_actions.so
LoadModule speling_module /usr/lib/apache/mod_speling.so
# mod_userdir will be included below by SuSEconfig if HTTPD_SEC_PUBLIC_HTML=yes
LoadModule alias_module /usr/lib/apache/mod_alias.so
LoadModule rewrite_module /usr/lib/apache/mod_rewrite.so
LoadModule access_module /usr/lib/apache/mod_access.so
LoadModule auth_module /usr/lib/apache/mod_auth.so
LoadModule anon_auth_module /usr/lib/apache/mod_auth_anon.so
LoadModule dbm_auth_module /usr/lib/apache/mod_auth_dbm.so
LoadModule db_auth_module /usr/lib/apache/mod_auth_db.so
LoadModule digest_module /usr/lib/apache/mod_digest.so
LoadModule proxy_module /usr/lib/apache/libproxy.so
LoadModule cern_meta_module /usr/lib/apache/mod_cern_meta.so
LoadModule expires_module /usr/lib/apache/mod_expires.so
LoadModule headers_module /usr/lib/apache/mod_headers.so
LoadModule usertrack_module /usr/lib/apache/mod_usertrack.so
LoadModule unique_id_module /usr/lib/apache/mod_unique_id.so
LoadModule setenvif_module /usr/lib/apache/mod_setenvif.so
<IfDefine DUMMYSSL>
LoadModule ssl_module /usr/lib/apache/libssl.so
</IfDefine>

Include /etc/httpd/suse_loadmodule.conf


# Reconstruction of the complete module list from all available modules
# (static and shared ones) to achieve correct module execution order.
# [WHENEVER YOU CHANGE THE LOADMODULE SECTION ABOVE UPDATE THIS, TOO]
ClearModuleList
AddModule mod_mmap_static.c
AddModule mod_vhost_alias.c
AddModule mod_env.c
AddModule mod_define.c
AddModule mod_log_config.c
AddModule mod_log_agent.c
AddModule mod_log_referer.c
AddModule mod_mime_magic.c
AddModule mod_mime.c
AddModule mod_negotiation.c
AddModule mod_status.c
AddModule mod_info.c
AddModule mod_include.c
AddModule mod_autoindex.c
AddModule mod_dir.c
AddModule mod_cgi.c
AddModule mod_asis.c
AddModule mod_imap.c
AddModule mod_actions.c
AddModule mod_speling.c
# mod_userdir will be included below by SuSEconfig if HTTPD_SEC_PUBLIC_HTML=yes
AddModule mod_alias.c
AddModule mod_rewrite.c
AddModule mod_access.c
AddModule mod_auth.c
AddModule mod_auth_anon.c
AddModule mod_auth_dbm.c
AddModule mod_auth_db.c
AddModule mod_digest.c
AddModule mod_proxy.c
AddModule mod_cern_meta.c
AddModule mod_expires.c
AddModule mod_headers.c
AddModule mod_usertrack.c
AddModule mod_unique_id.c
AddModule mod_so.c
AddModule mod_setenvif.c
<IfDefine DUMMYSSL>
AddModule mod_ssl.c
</IfDefine>


#
# Again, the following file is generated by SuSEconfig for modules that actually
# have been installed
#
Include /etc/httpd/suse_addmodule.conf


#
# ExtendedStatus controls whether Apache will generate "full" status
# information (ExtendedStatus On) or just basic information (ExtendedStatus
# Off) when the "server-status" handler is called. The default is Off.
#
ExtendedStatus On


#
# enable the SSI (Server Side Includes) execution for +x files
#
<IfModule mod_include.c>
XBitHack on
</IfModule>


### +-------------------------------------------------------------------------------------------------------------+
### | |
### | Section 2: Main Server Configuration |
### | ----------------------------------------- |
### +-------------------------------------------------------------------------------------------------------------+

Port 80

User wwwrun
Group nogroup

ServerAdmin webmaster@spo.com

ServerName intraserv2.de.spo.com

DocumentRoot "/www/intranet"

<Directory />
AuthUserFile /etc/httpd/passwd
AuthGroupFile /etc/httpd/group
Options +FollowSymLinks +Multiviews
AllowOverride All
</Directory>


<Directory "/www/intranet">

Options Indexes +FollowSymLinks +Includes MultiViews +ExecCGI

AllowOverride All

Order allow,deny
Allow from all

# disable WebDAV by default for security reasons.
<IfModule mod_dav.c>
DAV Off
</IfModule>

# Enable SSI (Server Side Includes) for the demo index.html pages, as some of the content
# is created dynamically. This should be disabled when setting up a productive server.
<Files /usr/local/httpd/htdocs/index.htm*>
Options +FollowSymLinks +Includes +MultiViews
</Files>

</Directory>


<IfModule mod_dir.c>
DirectoryIndex index.html index.php index.htm Index.htm Index.html
</IfModule>

AccessFileName .htaccess

# Disallow .htaccess from viewing in Browser
<Files ~ "^\.ht">
Order allow,deny
Deny from all
Satisfy All
</Files>

UseCanonicalName On

# TypesConfig describes where the mime.types file (or equivalent) is to be found.
<IfModule mod_mime.c>
TypesConfig /etc/httpd/mime.types
</IfModule>

# DefaultType is the default MIME type the server will use for
DefaultType text/plain

# The mod_mime_magic module allows the server to use various hints from the
# contents of the file itself to determine its type. The MIMEMagicFile
# directive tells the module where the hint definitions are located.
<IfModule mod_mime_magic.c>
MIMEMagicFile /etc/httpd/magic
</IfModule>

HostnameLookups Off

#
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here. If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
#

ErrorLog /logfiles/httpd_error_log

#
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
#
LogLevel debug

LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent

#CustomLog /var/log/httpd/referer_log referer
#CustomLog /var/log/httpd/agent_log agent
#CustomLog /logfiles/httpd_access_log common
CustomLog /logfiles/httpd_access_log combined

ServerSignature On

#
# Aliases: Add here as many aliases as you need (with no limit). The format is
# Alias fakename realname
#
<IfModule mod_alias.c>

# VERZEICHNIS FUER SERVERICONS BEIM DIR-BROWSING
Alias /icons/ "/etc/httpd/icons/"
<Directory "/etc/httpd/icons/">
Options Indexes MultiViews
AllowOverride all
Order allow,deny
Allow from all
</Directory>

# VERZEICHNIS FUER HTDIG
Alias /htdig/ "/svr/www/htdig/"
<Directory "/svr/www/htdig/htdig">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>

# VERZEICHNISBROWSING FUER DIE LOGFILES
Alias /logfiles "/logfiles/"
<Directory "/logfiles/">
Options Indexes MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>

# WIM-BRIEF VERZEICHNIS IN DOC-ROOT EINHAENGEN
Alias /WIM "/wim-brief/"
<Directory "/wim-brief/">
Options Indexes MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>

ScriptAlias /cgi-bin/ "/www/intranet/cgi-bin/"

<IfModule mod_perl.c>
# Provide two aliases to the same cgi-bin directory,
# to see the effects of the 2 different mod_perl modes.
# for Apache::Registry Mode
ScriptAlias /perl/ "/usr/local/httpd/cgi-bin/"
# for Apache::Perlrun Mode
ScriptAlias /cgi-perl/ "/usr/local/httpd/cgi-bin/"
</IfModule>
#
# "/usr/local/httpd/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory "/www/intranet/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>

</IfModule>
# End of aliases.


#
# set /cgi-bin for CGI execution
#
<Location /cgi-bin>
AllowOverride None
Options +ExecCGI -Includes
SetHandler cgi-script
</Location>

#
# If mod_perl is activated, load configuration information
#
<IfModule mod_perl.c>
Perlrequire /usr/include/apache/modules/perl/startup.perl
PerlModule Apache::Registry

#
# set Apache::Registry Mode for /perl Alias
#
<Location /perl>
SetHandler perl-script
PerlHandler Apache::Registry
Options ExecCGI
PerlSendHeader On
</Location>

#
# set Apache::PerlRun Mode for /cgi-perl Alias
#
<Location /cgi-perl>
SetHandler perl-script
PerlHandler Apache::PerlRun
Options ExecCGI
PerlSendHeader On
</Location>

</IfModule>


#
# Directives controlling the display of server-generated directory listings.
#
<IfModule mod_autoindex.c>

#
# FancyIndexing is whether you want fancy directory indexing or standard
#
IndexOptions FancyIndexing

#
# AddIcon* directives tell the server which icon to show for different
# files or filename extensions. These are only displayed for
# FancyIndexed directories.
#
AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip

AddIconByType (TXT,/icons/text.gif) text/*
AddIconByType (IMG,/icons/image2.gif) image/*
AddIconByType (SND,/icons/sound2.gif) audio/*
AddIconByType (VID,/icons/movie.gif) video/*

AddIcon /icons/binary.gif .bin .exe
AddIcon /icons/binhex.gif .hqx
AddIcon /icons/tar.gif .tar
AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
AddIcon /icons/a.gif .ps .ai .eps
AddIcon /icons/layout.gif .html .shtml .htm .pdf
AddIcon /icons/text.gif .txt
AddIcon /icons/c.gif .c
AddIcon /icons/p.gif .pl .py
AddIcon /icons/f.gif .for
AddIcon /icons/dvi.gif .dvi
AddIcon /icons/uuencoded.gif .uu
AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
AddIcon /icons/tex.gif .tex
AddIcon /icons/bomb.gif core

AddIcon /icons/back.gif ..
AddIcon /icons/hand.right.gif README
AddIcon /icons/folder.gif ^^DIRECTORY^^
AddIcon /icons/blank.gif ^^BLANKICON^^

DefaultIcon /icons/unknown.gif

#
# AddDescription allows you to place a short description after a file in server-generated indexes.
#
AddDescription "GZIP compressed document" .gz
AddDescription "tar archive" .tar
AddDescription "GZIP compressed tar archive" .tgz
AddDescription "Bild-Datei" .jpg .jpeg

#
# ReadmeName is the name of the README file the server will look for by
# default, and append to directory listings.
#
# HeaderName is the name of a file which should be prepended to
# directory indexes.
#
# If MultiViews are amongst the Options in effect, the server will
# first look for name.html and include it if found. If name.html
# doesn't exist, the server will then look for name.txt and include
# it as plaintext if found.
#
ReadmeName README
HeaderName HEADER

#
# IndexIgnore is a set of filenames which directory indexing should ignore
# and not include in the listing. Shell-style wildcarding is permitted.
#
IndexIgnore .??* *~ *# RCS CVS *,v *,t

</IfModule>
# End of indexing directives.

#
# Document types.
#
<IfModule mod_mime.c>

AddEncoding x-compress Z
AddEncoding x-gzip gz tgz

#
# AddLanguage allows you to specify the language of a document. You can
# then use content negotiation to give a browser a file in a language
# it can understand.
#
AddLanguage da .dk
AddLanguage nl .nl
AddLanguage en .en
AddLanguage et .ee
AddLanguage fr .fr
AddLanguage de .de
AddLanguage el .el
AddLanguage he .he
AddCharset ISO-8859-8 .iso8859-8
AddLanguage it .it
AddLanguage ja .ja
AddCharset ISO-2022-JP .jis
AddLanguage kr .kr
AddCharset ISO-2022-KR .iso-kr
AddLanguage nn .nn
AddLanguage no .no
AddLanguage pl .po
AddCharset ISO-8859-2 .iso-pl
AddLanguage pt .pt
AddLanguage pt-br .pt-br
AddLanguage ltz .lu
AddLanguage ca .ca
AddLanguage es .es
AddLanguage sv .se
AddLanguage cz .cz
AddLanguage ru .ru
AddLanguage zh-tw .tw
AddLanguage tw .tw
AddCharset Big5 .Big5 .big5
AddCharset WINDOWS-1251 .cp-1251
AddCharset CP866 .cp866
AddCharset ISO-8859-5 .iso-ru
AddCharset KOI8-R .koi8-r
AddCharset UCS-2 .ucs2
AddCharset UCS-4 .ucs4
AddCharset UTF-8 .utf8

<IfModule mod_negotiation.c>
LanguagePriority de en da nl et fr el it ja kr no pl pt pt-br ru ltz ca es sv tw
</IfModule>

AddType application/x-tar .tgz
AddType application/x-httpd-php .php4 .php .htm .html .inc.php .php3

#
# mod_dtcl can execute tcl scripts
#
<IfModule mod_dtcl.c>
AddType application/x-httpd-tcl .ttml
AddType application/x-dtcl-tcl .tcl
</IfModule>

AddType text/vnd.wap.wml wml
AddType text/vnd.wap.wmlscript wmls
AddType application/vnd.wap.wmlc wmlc
AddType application/vnd.wap.wmlscriptc wmlsc
Addtype image/vnd.wap.wbmp wbmp
#
AddHandler cgi-script .cgi

#
# To use server-parsed HTML files
#
AddType text/html .shtml
AddHandler server-parsed .shtml

</IfModule>
# End of document types.

# Error Documents
# 1) plain text
ErrorDocument 500 "<h1>Interner Serverfehler</h1>
ErrorDocument 404 "<h1>Datei nicht gefunden</h1>
# 2) local redirects
#ErrorDocument 404 /missing.html

# Customize behaviour based on the browser
#
<IfModule mod_setenvif.c>

#
# The following directives modify normal HTTP response behavior.
# The first directive disables keepalive for Netscape 2.x and browsers that
# spoof it. There are known problems with these browser implementations.
# The second directive is for Microsoft Internet Explorer 4.0b2
# which has a broken HTTP/1.1 implementation and does not properly
# support keepalive when it is used on 301 or 302 (redirect) responses.
#
BrowserMatch "Mozilla/2" nokeepalive
BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0

#
# The following directive disables HTTP/1.1 responses to browsers which
# are in violation of the HTTP/1.0 spec by not being able to grok a
# basic 1.1 response.
#
BrowserMatch "RealPlayer 4\.0" force-response-1.0
BrowserMatch "Java/1\.0" force-response-1.0
BrowserMatch "JDK/1\.0" force-response-1.0

</IfModule>
# End of browser customization directives

#
# enable perl-status for mod_perl
#
<IfModule mod_perl.c>
<Location /perl-status>
SetHandler perl-script
PerlHandler Apache::Status
order deny,allow
deny from all
allow from localhost
</Location>
</IfModule>
</IfDefine>


### +-------------------------------------------------------------------------------------------------------------+
### | |
### | Section 3: Virtual Hosts |
### | ----------------------------------------- |
### +-------------------------------------------------------------------------------------------------------------+
#
# +---------------------------NAMEN FUER DIE VIRTUAL HOSTS------------------------------+
#

NameVirtualHost 10.216.36.51:80

# +----------------------------------------------------------------------------------------+
# | VIRTUAL HOST CONTAINER |
# +----------------------------------------------------------------------------------------+

# +-------------------- INTRANET --------------------------------+
<VirtualHost 10.216.36.51:80>
ServerAlias intranet
DocumentRoot /www/intranet
ServerName intranet.de.spo.com
ScriptAlias /cgi-bin/ /www/intranet/cgi-bin/
CustomLog /logfiles/intranet_log combined
</VirtualHost>

# +-------------------- INTRASTAGE-------------------------------+
<VirtualHost 10.216.36.51:80>
ServerAlias intra_stage
DocumentRoot /www/intrastage
ServerName intra_stage.de.spo.com
ScriptAlias /cgi-bin/ /www/intrastage/cgi-bin/
</VirtualHost>

# +-------------------- INTRADEV --------------------------------+
<VirtualHost 10.216.36.51:80>
ServerAlias dev
DocumentRoot /www/www_intern/intradev
ServerName dev.de.spo.com
ScriptAlias /cgi-bin/ /www/www_intern/intradev/cgi-bin/
</VirtualHost>

# +-------------------- INTRALOG --------------------------------+
<VirtualHost 10.216.36.51:80>
ServerAlias intra_log
DocumentRoot /www/www_intern/intralog
ServerName intra_log.de.spo.com
ScriptAlias /cgi-bin/ /www/www_intern/intralog/cgi-bin/
</VirtualHost>

# +-------------------- REDESIGN --------------------------------+
<VirtualHost 10.216.36.51:80>
ServerAlias redesign
DocumentRoot /www/www_intern/redesign
ServerName redesign.de.spo.com
ScriptAlias /cgi-bin/ /www/www_intern/redesign/cgi-bin/

</VirtualHost>

# +---------------------------------------------------------------+
#<VirtualHost _default_:*>
#</VirtualHost>



die berechtigungen der verzeichnisse stimmen eigentlich auch, die scripte haben -775 ?

übrigens hier ein auszug aus dem error log:


[Tue Jun 29 14:12:42 2004] [notice] Apache/1.3.28 (Linux/SuSE) PHP/4.3.3 configured -- resuming normal operations
[Tue Jun 29 14:12:42 2004] [info] Server built: Sep 23 2003 18:30:22
[Tue Jun 29 14:12:42 2004] [notice] Accept mutex: sysvsem (Default: sysvsem)
htsearch: relocation error: htsearch: undefined symbol: cerr
[Tue Jun 29 14:13:40 2004] [error] [client 10.216.5.104] Premature end of script headers: /www/intranet/cgi-bin/htsearch
htsearch: relocation error: htsearch: undefined symbol: cerr
[Tue Jun 29 14:14:20 2004] [error] [client 10.216.5.104] Premature end of script headers: /www/intranet/cgi-bin/htsearch
[Tue Jun 29 14:14:28 2004] [error] [client 10.216.5.104] File does not exist: /www/intranet/search/
[Tue Jun 29 14:15:34 2004] [error] [client 10.216.5.104] attempt to invoke directory as script: /www/intranet/cgi-bin


grüße,
daniel


grüße,
daniel

marce
29.06.04, 14:09
Hallo,

das "premature end of script headers" lässt darauf schliessen, dass in Deinem Script ein syntaktischer Fehler ist bzw. der html-Header nicht stimmt.

Poste doch mal den Quellcode des Scriptes.


Grüße, Marce

halla
29.06.04, 15:30
hi marcel,

kann mir nicht so recht vorstellen, daß es daran liegt.
das suchprogramm ist htdig und läuft eigentlich problemlos auf einer anderen, ähnlichen kiste.

haben mal zum testen ein kleines cgi geschrieben:


#!/usr/bin/perl

print "Hallo Welt!\n";


via http://ip/cgi-bin/hw.cgi läßt sich das script aber nicht aufrufen.
ginge das, wüßte man ja schon mal das die cgi-schnittstelle funktioniert und das es an htdig, dem suchscript liegen muss.

eintrag im error-log zu dem progrämmchen:


[Tue Jun 29 16:28:15 2004] [error] [client 10.216.5.104] malformed header from script. Bad header=Hallo Welt!: /www/intranet/cgi-bin/hw.cgi


irgendwie will das also auch nicht?

grüße,
daniel

LKH
29.06.04, 15:40
Hi,

vor der Ausgabe von "Hello World" gehört erstmal ein

print "Content-type: text/html\n\n"

LKH

halla
29.06.04, 16:10
hi,

tja - auf der einen seite echt sehr gut, weil es jetzt klappt mit dem kleinen "hallo welt". auf der anderen seite heißt das , das es wohl tatsächlich an htdig liegt, was wiederum heißt daß ich einen tag damit verbracht einen nicht-existierenden fehler zu suchen ;-)

kennst sich jemand von euch mit htdig in kombination mit suse9.0 aus?
sind da vielleicht allgemein probleme mit bekannt?

grüße,
daniel