0 0 Punkte Nun, ich komme mir selbst recht blöd vor. Bei der Installation von 2.7 (ich arbeite seit langem mit 2.6x) möchte ich meine Installation austesten und versuche die admin.pl aufzurufen. Mein Browser bietet mir an, die Datei downzuloaden. Wie das? Meine Vermutung auf nicht ausreichende Rechte und das die Datei evtl. nicht als ausführbar markiert wurde trafen nicht zu. Was kann es noch sein? Ich habe die Installation auf Ubuntu 12.04 LTS gespielt. Die Endung pl bedeutet das es sich um ein Perlskript handelt? Danke apache-konfiguration installation admin-pl + – Anonym Antworten Kommentar abgeben Share See all 0 Antworten Bitte logge dich ein oder melde dich neu an um zu kommentieren.
Beste Antwort 0 0 Punkte Was kann es noch sein? Apache Config eine gueltige AddHandler Direktive im entsprechenden Verzeichnis die Option ExecCGI gesetzt Das ganze ist hier: https://demo.kivitendo.de/doc/html/ch02s05.html#Apache-Konfiguration beschrieben. wulf Beantwortet 26, Okt 2012 • ausgewählt 13, Nov 2012 von wulf wulf 18.0k Punkte Kommentar abgeben Share Frage hierzu stellen See all 0 Antworten Bitte logge dich ein oder melde dich neu an um zu kommentieren.
0 0 Punkte OK. Dann hat es nicht mit den von mir angesprochenen Problemen zu tun. Vermutlich liegt es an den Apache Einstellungen. Ich habe FastCGI installiert, da ich das Paket FCGI nicht gefunden und installieren konnte. Ich habe die Apache Config so geändert, das aus "fcgi" "fastcgi" gemacht. In der Anleitung wurde auch nur die Variante mit fcgi beschrieben. Der Testdurchlauf zu Beginn der Installation mit dem Testscript zeigte bis auf FastCGI alle anderen Voraussetzungen grün an. Ich ändere mal das auf eine Standardumgebung und sehe was geschieht. Danke erstmal... Michael Anonym Beantwortet 26, Okt 2012 Anonym Kommentar abgeben Share Frage hierzu stellen See all 13 Kommentare See all 13 13 Kommentare Antworten wulf 18.0k Punkte Kommentiert 26, Okt 2012 Antworten Spam melden Klingt als hast Du 2 Probleme FastCGI != FCGI Der Testdurchlauf zu Beginn der Installation mit dem Testscript zeigte bis auf FastCGI alle anderen Voraussetzungen grün an. FCGI Perlmodul ./scripts/installation_check.pl -v das Debian Paket dazu heist libfcgi-perl muss sauber durchlaufen durch die Angabe von -v bekommst Du ja auch die Info, wie Du das Ganze via CPAN Installieren kannst. Das FCGI aus CPAN zu besorgen wird spaetestens bei der Kombination squeeze:2.7.1 sowieso faellig. Da es da eine Versionsabhaengigkeit gibt Apache2 FastCGI/FCG! heisst unter Debian libapache2-mod-fcgid bzw libapache2-mod-fastcgi in der Doku ist am Anfang noch FastCGI beschrieben, aber die Beispiele beziehen sich auf FCGI wie Du schon schreibst. Deffinitiv hast Du Dich beim Anpassen der Apache-Konfig vertan, sonst waehre Deine Fehlermeldung eine Andere. Klassiker sind falsche AliasMatch Eintraege die bereits erwaehnten Konfig Punkte AddHandler und ExecCGI (ob das mit fastCGI sauber tut weiss ich nicht habe ich nie getestet) Ich habe FastCGI installiert, da ich das Paket FCGI nicht gefunden und installieren konnte benutze Ubuntu nicht, sollte es aber geben auch fuer 64bit: http://pkgs.org/ubuntu-10.04/ubuntu-universe-i386/libapache2-mod-fcgid_2.3.4-2_i386.deb.html Ich ändere mal das auf eine Standardumgebung und sehe was geschieht. das ist immer erstmal zu empfhelen, erst wenn das geht wuerde ich Dir die FCGI Apachekonfig raten. Antworten Share Anonym Kommentiert 29, Okt 2012 Antworten Spam melden Hallo, ich wünsche die eine gute Woche, Ich habe natürlich am Tag deiner Antwort die Mail gelesen. Ich war durch meine Gedanken ziemlich oft von der Familienarbeit abgelenkt und konnte mich erst heute meinem Problem widmen. Ich habe das empfohlene FCGI Paket installiert und als Modul aktiviert. Muß ich eigentlich das zuvor aktivierte FastCGI Modul deaktivieren und wenn ja, wie lautet der Befehl? Nichtsdestotrotz habe ich nach der Änderung in der default Datei keine andere Meldung,als die Benachrichtigung, das Fast CGI immer noch nicht vom Checker-Script als funktionierend abgehakt wird. Ich bin mal so frei und kopiere den Inhalt meiner default Datei in meine Antwort. <VirtualHost *:80> ServerAdmin webmaster@localhost DocumentRoot /var/www <Directory /> Options FollowSymLinks AllowOverride None </Directory> <Directory /var/www/> Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all </Directory> ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ <Directory "/usr/lib/cgi-bin"> AllowOverride None Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all </Directory> ErrorLog ${APACHE_LOG_DIR}/error.log # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. LogLevel warn CustomLog ${APACHE_LOG_DIR}/access.log combined Alias /doc/ "/usr/share/doc/" <Directory "/usr/share/doc/"> Options Indexes MultiViews FollowSymLinks AllowOverride None Order deny,allow Deny from all Allow from 127.0.0.0/255.0.0.0 ::1/128 </Directory> <IfModule mod_fcgi.c> AddHandler php5-fcgi .php Action php5-fcgi /php5-fcgi Alias /php5-fcgi /usr/lib/cgi-bin/php5-fcgi FastCgiExternalServer /usr/lib/cgi-bin/php5-fcgi -host 127.0.0.1:9000 -pass-header Authorization </IfModule> AddHandler fcgid-script .fpl # AddHandler fastcgi-script .fpl AliasMatch ^/localhost/lx-erp/[^/]+\.pl /var/www/lx-erp/dispatcher.fpl Alias /localhost/lx-erp/ /var/www/lx-erp/ FcgidMaxRequestLen 10485760 # fastcgiMaxRequestLen 10485760 <Directory /var/www/lx-erp> AllowOverride All Options ExecCGI Includes FollowSymlinks Order Allow,Deny Allow from All </Directory> <DirectoryMatch /var/www/path/lx-erp/users> Order Deny,Allow Deny from All </DirectoryMatch> # Zugriff über CGI Alias /localhost/lx-erp /var/www/lx-erp # Zugriff mit mod_fcgid: AliasMatch ^/localhost/lx-erp-fcgi/[^/]+\.pl /var/www/lx-erp/dispatcher.fpl Alias /localhost/lx-erp-fcgi/ /var/www/lx-office-erp/ Was sagt dir der Inhalt, und welch blöder Fehler unterlief mir? Sei für deine Mühe vielmals bedankt. Michael Antworten Share wulf 18.0k Punkte Kommentiert 29, Okt 2012 Antworten Spam melden Nichtsdestotrotz habe ich nach der Änderung in der default Datei keine andere Meldung,als die Benachrichtigung, das Fast CGI immer noch nicht vom Checker-Script als funktionierend abgehakt wird. durch den Reifen musst Du erst mal springen, schick doch bitte mal folgende Infos: installationsverzeichnis kivi genau welche Version Du installiert hast, tarball, git, ? Ausserdem den Output folgender Befehle: ./scripts/installation_check.pl (und da bitte nur die Zeile bei der gemeckert wird, also "Looking for FCGI..." dpkg -l | grep apache2 dpkg -l | grep cgi | grep perl Antworten Share Anonym Kommentiert 29, Okt 2012 Antworten Spam melden OK. Installiert habe ich Kivi im traditionellen /var/www/lx-erp. Bei Kivi denke ich an die unrasierte Frucht. die Ausgabe von check.pl: Looking for FCGI ......................................... NOT ok Ausgabe nach dpkg -l | grep apache2: ii apache2 2.2.22-1ubuntu1 Apache HTTP Server metapackage ii apache2-mpm-prefork 2.2.22-1ubuntu1 Apache HTTP Server - traditional non-threaded model ii apache2-utils 2.2.22-1ubuntu1 utility programs for webservers ii apache2.2-bin 2.2.22-1ubuntu1 Apache HTTP Server common binary files ii apache2.2-common 2.2.22-1ubuntu1 Apache HTTP Server common files ii libapache2-mod-fastcgi 2.4.7~0910052141-1 Apache 2 FastCGI module for long-running CGI scripts ii libapache2-mod-fcgid 1:2.3.6-1.1 an alternative module compat with mod_fastcgi ii libapache2-mod-php5 5.3.10-1ubuntu3.4 server-side, HTML-embedded scripting language (Apache 2 module) Ausgabe nach dpkg -l | grep cgi | grep perl: null-komma-nix Ich habe keine git version installiert. Danke Antworten Share Anonym Kommentiert 29, Okt 2012 i Bearbeitet von Anonym 29, Okt 2012 Antworten Spam melden Die doppelten pipes haben bei der dpkg Abfrage nicht funktioniert. Kann es sein das es bei der Schreibweise sich um ein logisches UND handelt und deshalb nur Angaben aus der UND verknüpfung erscheinen? dpkg -l | cgi: ii libapache2-mod-fastcgi 2.4.7~0910052141-1 Apache 2 FastCGI module for long-running CGI scripts ii libapache2-mod-fcgid 1:2.3.6-1.1 an alternative module compat with mod_fastcgi ii libcupscgi1 1.5.3-0ubuntu4 Common UNIX Printing System(tm) - CGI library dpkg -l | perl: root@ubuntu-goldcock:/var/www/lx-erp# dpkg -l | grep perl ii libappconfig-perl 1.66-1 Perl module for configuration file and command line handling ii libapt-pkg-perl 0.1.25build2 Perl interface to libapt-pkg ii libarchive-zip-perl 1.30-6 Perl module for manipulation of ZIP archives ii libauthen-pam-perl 0.16-2build2 Perl interface to PAM library ii libbit-vector-perl 7.1-1build2 Perl module for bit vectors and more ii libcairo-perl 1.081-1build2 Perl interface to the Cairo graphics library ii libcarp-clan-perl 6.04-1 Perl enhancement to Carp error logging facilities ii libclass-accessor-perl 0.34-1 Perl module that automatically generates accessors ii libclass-factory-util-perl 1.7-2 Utility method for factory classes ii libclass-isa-perl 0.36-3 report the search path for a class's ISA tree ii libclass-load-perl 0.13-1 module for loading modules by name ii libclass-singleton-perl 1.4-1 implementation of a "Singleton" class ii libclass-std-perl 0.0.9-2 Support for creating standard "inside-out" classes ii libclass-xsaccessor-perl 1.13-1 Perl module providing fast XS accessors ii libclone-perl 0.31-1build3 recursively copy Perl datatypes ii libclone-pp-perl 1.02-1 Recursively copy Perl datatypes ii libcommon-sense-perl 3.4-1 module that implements some sane defaults for Perl programs ii libconfig-std-perl 0.9-1 Load and save configuration files in a standard format ii libconvert-binhex-perl 1.119+pristine-3 Perl5 module for extracting data from macintosh BinHex files ii libconvert-nls-date-format-perl 0.03-1 module for converting Oracle NLS_DATE_FORMAT <-> strftime Format Strings ii libcrypt-passwdmd5-perl 1.3-10 interoperable MD5-based crypt() for perl ii libdata-optlist-perl 0.107-1 module to parse and validate simple name/value option pairs ii libdate-manip-perl 6.25-1 module for manipulating dates ii libdatetime-format-builder-perl 0.8000-1 module to create DateTime parsers ii libdatetime-format-mysql-perl 0.04-2 Parse and format MySQL dates and times ii libdatetime-format-oracle-perl 0.06-1 module for parsing and formatting Oracle dates and timestamps ii libdatetime-format-pg-perl 0.16007-1 module for parsing and formatting PostgreSQL dates and times ii libdatetime-format-strptime-perl 1.5000-1 Perl module to parse and format strp and strf time patterns ii libdatetime-locale-perl 1:0.45-1 Perl extension providing localization support for DateTime ii libdatetime-perl 2:0.7000-1build1 module for manipulating dates, times and timestamps ii libdatetime-timezone-perl 1:1.42-1+2011nubuntu1 framework exposing the Olson time zone database to Perl ii libdbd-mysql-perl 4.020-1build2 Perl5 database interface to the MySQL database ii libdbd-pg-perl 2.19.0-1 Perl DBI driver for the PostgreSQL database server ii libdbi-perl 1.616-1build2 Perl Database Interface (DBI) ii libdevice-serialport-perl 1.04-2build2 emulation of Win32::SerialPort for Linux/POSIX ii libdigest-hmac-perl 1.03+dfsg-1 module for creating standard message integrity checks ii libemail-address-perl 1.892-1 Perl module for RFC 2822 address parsing and creation ii libemail-date-format-perl 1.002-1 Module to generate RFC-2822-valid date strings ii libencode-locale-perl 1.02-2 utility to determine the locale encoding ii liberror-perl 0.17-1 Perl module for error/exception handling in an OO-ish way ii libfile-basedir-perl 0.03-1fakesync1 Perl module to use the freedesktop basedir specification ii libfile-copy-recursive-perl 0.38-1 Perl extension for recursively copying files and directories ii libfile-desktopentry-perl 0.04-3 Perl module to handle freedesktop .desktop files ii libfile-listing-perl 6.03-1 module to parse directory listings ii libfile-mimeinfo-perl 0.15-2 Perl module to determine file types ii libfont-afm-perl 1.20-1 Font::AFM - Interface to Adobe Font Metrics files ii libfont-ttf-perl 0.48-1 Perl module for TrueType font hacking ii libglib-perl 2:1.241-1 interface to the GLib and GObject libraries ii libgtk2-perl 2:1.223-1build3 Perl interface to the 2.x series of the Gimp Toolkit library ii libhtml-form-perl 6.00-1 module that represents an HTML form element ii libhtml-format-perl 2.10-1 module for transforming HTML into various formats ii libhtml-parser-perl 3.69-1build1 collection of modules that parse HTML text documents ii libhtml-tagset-perl 3.20-2 Data tables pertaining to HTML ii libhtml-template-perl 2.10-1 module for using HTML Templates with Perl ii libhtml-tree-perl 4.2-1 Perl module to represent and create HTML syntax trees ii libhttp-cookies-perl 6.00-2 HTTP cookie jars ii libhttp-daemon-perl 6.00-1 simple http server class ii libhttp-date-perl 6.00-1 module of date conversion routines ii libhttp-message-perl 6.01-1 perl interface to HTTP style messages ii libhttp-negotiate-perl 6.00-2 implementation of content negotiation ii libimage-exiftool-perl 8.60-2 Library and program to read and write meta information in multimedia files ii libio-pty-perl 1:1.08-1build2 Perl module for pseudo tty IO ii libio-socket-inet6-perl 2.69-2 object interface for AF_INET6 domain sockets ii libio-socket-ssl-perl 1.53-1 Perl module implementing object oriented interface to SSL sockets ii libjson-perl 2.53-1 module for manipulating JSON-formatted data ii libjson-xs-perl 2.320-1build1 module for manipulating JSON-formatted data (C/XS-accelerated) ii liblist-moreutils-perl 0.33-1build1 Perl module with additional list functions not found in List::Util ii liblocale-gettext-perl 1.05-7build1 module using libc functions for internationalization in Perl ii liblwp-mediatypes-perl 6.01-1 module to guess media type for a file or a URL ii liblwp-protocol-https-perl 6.02-1 https driver for LWP::UserAgent ii libmail-sendmail-perl 0.79.16-1 Send email from a perl script ii libmail-spf-perl 2.8.0-1 Perl implementation of Sender Policy Framework and Sender ID ii libmailtools-perl 2.08-1 Manipulate email in perl programs ii libmath-round-perl 0.06-3 Perl extension for rounding numbers ii libmime-lite-perl 3.028-1 module for convenient MIME message creation ii libmime-tools-perl 5.502-1 Perl5 modules for MIME-compliant messages ii libmime-types-perl 1.32-1 Perl extension for determining MIME types and Transfer Encoding ii libmodule-runtime-perl 0.011-1 Perl module for runtime module handling ii libnet-daemon-perl 0.48-1 Perl module for building portable Perl daemons easily ii libnet-dns-perl 0.66-2ubuntu3 Perform DNS queries from a Perl script ii libnet-http-perl 6.02-1 module providing low-level HTTP connection client ii libnet-ip-perl 1.25-3 Perl extension for manipulating IPv4/IPv6 addresses ii libnet-ssleay-perl 1.42-1build1 Perl module for Secure Sockets Layer (SSL) ii libnetaddr-ip-perl 4.058+dfsg-2 IP address manipulation module ii libpackage-deprecationmanager-perl 0.11-1 Manage deprecation warnings for your distribution ii libpackage-stash-perl 0.33-1 module providing routines for manipulating stashes ii libpackage-stash-xs-perl 0.24-1build1 Perl module providing routines for manipulating stashes (XS version) ii libpango-perl 1.222-1build1 Perl module to layout and render international text ii libparams-classify-perl 0.013-4 Perl module for argument type classification ii libparams-util-perl 1.04-1build1 Perl extension for simple stand-alone param checking functions ii libparams-validate-perl 0.97-1build2 Perl module to validate parameters to Perl method/function calls ii libpdf-api2-perl 2.019-1 module for creating or modifying PDF documents in Perl ii libperl5.14 5.14.2-6ubuntu2.1 shared Perl library ii libpg-perl 1:2.1.1-4build2 Perl modules for PostgreSQL ii libphp-serialization-perl 0.34-1 Perl module to manipulate serialized PHP data structures ii libplrpc-perl 0.2020-2 Perl extensions for writing PlRPC servers and clients ii librose-datetime-perl 0.537-1 collection of Perl modules for manipulating DateTime dates ii librose-db-object-perl 1:0.797-1 framework providing an extensible high-performance ORM ii librose-db-perl 0.763-1 Perl DBI wrapper and abstraction layer ii librose-object-perl 0.859-1 simple Perl object base class ii libsocket6-perl 0.23-1build2 Perl extensions for IPv6 ii libsql-reservedwords-perl 0.7-1 Reserved SQL words by ANSI/ISO ii libsub-exporter-perl 0.982-1 sophisticated exporter for custom-built routines ii libsub-install-perl 0.925-1 module for installing subroutines into packages easily ii libsub-name-perl 0.05-1build2 module for assigning a new name to referenced sub ii libswitch-perl 2.16-2 switch statement for Perl ii libsys-hostname-long-perl 1.4-2 Figure out the long (fully-qualified) hostname ii libsys-mmap-perl 0.16-1build1 module for using POSIX mmap ii libtemplate-perl 2.22-0.1build2 template processing system written in perl ii libtext-charwidth-perl 0.04-7build1 get display widths of characters on the terminal ii libtext-csv-xs-perl 0.85-1build1 Perl C/XS module to process Comma-Separated Value files ii libtext-iconv-perl 1.7-5 converts between character sets in Perl ii libtext-wrapi18n-perl 0.06-7 internationalized substitute of Text::Wrap ii libtime-clock-perl 1.01-1 twenty-four hour clock object with nanosecond precision ii libtimedate-perl 1.2000-1 collection of modules to manipulate date/time information ii libtry-tiny-perl 0.11-1 module providing minimalistic try/catch ii liburi-perl 1.59-1 module to manipulate and access URI strings ii libuuid-perl 0.02-4ubuntu1 Perl extension for using UUID interfaces as defined in e2fsprogs ii libwww-perl 6.03-1 simple and consistent interface to the world-wide web ii libwww-robotrules-perl 6.01-1 database of robots.txt-derived permissions ii libxml-writer-perl 0.612-1 Perl module for writing XML documents ii libyaml-perl 0.77-1 YAML Ain't Markup Language ii libyaml-syck-perl 1.19-1 Perl module providing a fast, lightweight YAML loader and dumper ii libyaml-tiny-perl 1.50-1 Perl module for reading and writing YAML files ii perl 5.14.2-6ubuntu2.1 Larry Wall's Practical Extraction and Report Language ii perl-base 5.14.2-6ubuntu2.1 minimal Perl system ii perl-modules So besser? Antworten Share wulf 18.0k Punkte Kommentiert 29, Okt 2012 Antworten Spam melden Die doppelten pipes haben bei der dpkg Abfrage nicht funktioniert. Kann es sein das es bei der klar funktionieren die, das da nix kommt, bedeutet, dass Dir das Paket fehlt ;) So besser? noe Installier doch bitte mal wie bereits erwaehnt: aptitude install libfcgi-perl wenn es das nicht gibt, mach was in der Anleitung unter der Zeile FGI steht, wenn Du: ./scripts/installation_check.pl -v aufrufst. danach sollte der Installationscheck durchlaufen. Danach schauen wir mal in Dein Apache2 Konfig (gewurstel). Antworten Share Anonym Kommentiert 29, Okt 2012 Antworten Spam melden Also nun ans Gewurstel..... Denn der Check läuft nun in vollem Grün und ohne Gemecker durch. Du hast bestimmt gesehen das auch das FASTCgi Modul aktiviert ist. Wie kann ich das ausschalten? Bestimmt beißen sich die beiden CGI Module!! Vielen Dank bis hierher. Antworten Share Anonym Kommentiert 30, Okt 2012 Antworten Spam melden Tun sie nicht, man kann wunderbar beide nebeneinander betreiben. Antworten Share wulf 18.0k Punkte Kommentiert 30, Okt 2012 Antworten Spam melden Du hast bestimmt gesehen das auch das FASTCgi Modul aktiviert ist. Wie kann ich das ausschalten? das wird ueber Symlinks in /etc/apache2/mods-enabled/ gesteuert und es gibt den Befehl man a2enmod Bestimmt beißen sich die beiden CGI Module!! hatte sschoeling beantwortet Mein Vorschlag: Uberlege Dir unter welcher URL Kivitendo erreichbar sein soll. pack Deine Apache-config mal bei Seite und mach eine Neue (um einfach mal 'uebersicht zu bekommen) orientiere Dich an https://demo.kivitendo.de/doc/html/ch02s05.html#d0e51 also zunaechst ohne fcgi. (in Deiner aktuellen Config fehlt dazu der AddHandler cgi-script .pl aber wie gesagt, fang mal von vorne an) Apache durchstarten nicht vergessen! Wenn das geht (und erst dann) aenderst Du die Datei so, dass fcgi geht. Modul aktivieren nicht vergessen Antworten Share Anonym Kommentiert 31, Okt 2012 i Bearbeitet von Anonym 31, Okt 2012 Antworten Spam melden Hallo ich habe mich an deinen Rat gehalten und zunächst eine rudimentäre und träge Konfiguration ins Apache sites-available geschrieben: <VirtualHost *:80> ServerAdmin webmaster@localhost DocumentRoot /var/www <Directory /> Options FollowSymLinks AllowOverride None </Directory> <Directory /var/www/> Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all </Directory> ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ <Directory "/usr/lib/cgi-bin"> AllowOverride None Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all </Directory> ErrorLog ${APACHE_LOG_DIR}/error.log # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. LogLevel warn CustomLog ${APACHE_LOG_DIR}/access.log combined Alias /doc/ "/usr/share/doc/" <Directory "/usr/share/doc/"> Options Indexes MultiViews FollowSymLinks AllowOverride None Order deny,allow Deny from all Allow from 127.0.0.0/255.0.0.0 ::1/128 </Directory> AddHandler cgi-script .pl Alias /lx-erp/ /var/www/lx-erp/ <Directory /var/www/lx-erp> Options ExecCGI Includes FollowSymlinks </Directory> <Directory /var/www/lx-erp/users> Order Deny,Allow Deny from All </Directory> </VirtualHost> Syntax error on line 48 of /etc/apache2/sites-enabled/000-default: Invalid command 'Includes', perhaps misspelled or defined by a module not included in the server configuration Action 'configtest' failed. The Apache error log may have more information. ...fail! Und nun? Es darf auch nicht "Include FollowSymlinks" heißen. Da spukt der Rechner die selben Beschwerden aus. Und dann ist dan noch der Code: # Zugriff mit mod_fcgid: AliasMatch ^/localhost/**lx-erp-fcgid**/[^/]+\.pl /var/www/lx-erp/dispatcher.fpl Alias /localhost/**lx-erp-fcgid**/ /var/www/lx-office-erp/ wobei es das verzeichnis lx-erp-fcgid überhaupt nicht gibt. Welchen blöden Fehler begehe ich da? Antworten Share wulf 18.0k Punkte Kommentiert 1, Nov 2012 i Bearbeitet von wulf 1, Nov 2012 Antworten Spam melden ><Directory /var/www/lx-erp> Options ExecCGI Includes FollowSymlinks </Directory> der Umbruch ist ein Formatierungsfehler in der online-Doku es muss heissen: (das Forum formatiert hier auch staendig um, ....) <Directory /var/www/lx-erp> Options ExecCGI Includes FollowSymlinks </Directory> (ich korrigiere das in der Entwicklerversion) Lass uns erst weitermachen, wenn es unter cgi lauft, Antworten Share Anonym Kommentiert 1, Nov 2012 Antworten Spam melden Hallo, LX läuft nach der Entfernung des Zeilenumbruchs. Ich ändere nun mal die Apache Config auf FCGI.......... Antworten Share wulf 18.0k Punkte Kommentiert 4, Nov 2012 Antworten Spam melden Ich ändere nun mal die Apache Config auf FCGI.......... funktioniert's? Feedback ist natuerlich imer nett, wenn man sich Muehe mit der Antwort gegeben hat. Antworten Share Bitte logge dich ein oder melde dich neu an um zu kommentieren.