Ergebnis 1 bis 15 von 15

Thema: Error 404 bei Aufruf einer Seite

  1. #1
    Gesperrt
    Registriert seit
    08.03.2010.
    Ort
    Hamburg, Orlando - Florida
    Beiträge
    35

    Standard Error 404 bei Aufruf einer Seite

    Moinsen,
    So langsam bin ich am Verzweifeln (und verzweifle vor Allem an mir selbst) :

    Version : Contao 2.9.1
    Installation nach Anleitung in /httpdocs/public
    Der relative Pfad zeigt auch auf /public (in den Einstellungen)
    Contao-Check zeigt mir ein Warnung beim Anlegen des Verzeichnisses contao-check (Owner sollte "0", also "root" sein und nicht 30)

    Also noch den SMH installiert und die Verzeichnisse system/html, system/log, system/tmp auf 777 gestellt.

    Mit den Standard-Werkzeugen eine Site "RailWorld" erstellt
    Darunter zwei Seiten mit Artikeln (beide in der selben Ebene)
    "Home" wird fehlerfrei angezeigt
    Bei Klick auf den Menülink "Location" springt mir der 404 mitten in's Gesicht...

    Das kann doch eigentlich nur an den Einstellungen liegen oder liege ich da falsch?
    Erbitte Eure Hilfe und sagt mir bitte auch, welche Info Ihr noch benötigt.

    LG und vielen Dank im Voraus,
    Erhard

  2. #2
    AG CMS-Garden
    Contao-Urgestein
    Avatar von lindesbs
    Registriert seit
    05.06.2009.
    Ort
    Oer-Erkenschwick
    Beiträge
    4.154
    Partner-ID
    keine
    User beschenken
    Wunschliste

    Standard

    htaccess angepasst ? RewriteUrls angepasst ?
    Hast Du einen Link ?
    von Willi Voltz aus PR 500: Henry George sagte einmal: »Kultur ist Zusammenarbeit.«


    Contao-Hosting: begeisterter Uberspace-Nutzer

  3. #3
    Gesperrt
    Registriert seit
    08.03.2010.
    Ort
    Hamburg, Orlando - Florida
    Beiträge
    35

    Standard

    Ja
    Ja

    Klick mich

    Die Site ist im /public - Verzeichnis weil später noch ein privater Bereich hinzukommen soll. Bisher steht natürlich nur "Spieltext" drin...

    htaccess (ex .htaccess.default)
    PHP-Code:
    ##
    # Contao Open Source CMS
    # Copyright (C) 2005-2010 Leo Feyer
    #
    # Formerly known as TYPOlight Open Source CMS.
    #
    # This program is free software: you can redistribute it and/or
    # modify it under the terms of the GNU Lesser General Public
    # License as published by the Free Software Foundation, either
    # version 3 of the License, or (at your option) any later version.

    # This program is distributed in the hope that it will be useful,
    # but WITHOUT ANY WARRANTY; without even the implied warranty of
    # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
    # Lesser General Public License for more details.

    # You should have received a copy of the GNU Lesser General Public
    # License along with this program. If not, please visit the Free
    # Software Foundation website at <http://www.gnu.org/licenses/>.
    #
    # PHP version 5
    # @copyright  Leo Feyer 2005-2010
    # @author     Leo Feyer <http://www.contao.org>
    # @license    LGPL
    ##

    <IfModule mod_deflate.c>

      
    ##
      # Use mod_deflate to compress JavaScript, CSS and XML files. Do not add
      # PHP and HTML files, because those have already been compressed by Contao.
      ##
      
    <FilesMatch "\.(css|js|xml)$">
        
    SetOutputFilter DEFLATE
      
    </FilesMatch>

    </
    IfModule>

    <
    IfModule mod_headers.c>

      
    ##
      # Add a Vary Accept-Encoding header for the compressed resources. If you
      # modify the file types above, make sure to change them here accordingly.
      ##
      
    <FilesMatch "\.(js|css|xml|gz)$">
        
    Header append Vary Accept-Encoding
      
    </FilesMatch>

    </
    IfModule>

    <
    IfModule mod_expires.c>
      
    ExpiresActive On

      
    ##
      # Specify an expiration one week in the future for images, JavaScripts and
      # CSS files (as recommended by Google Page Speed). Edit or remove the lines
      # to set up your own expiration logic.
      ##
      
    ExpiresByType image/png A604800
      ExpiresByType image
    /gif A604800
      ExpiresByType image
    /jpg A604800
      ExpiresByType image
    /jpeg A604800
      ExpiresByType text
    /javascript A604800
      ExpiresByType application
    /x-javascript A604800
      ExpiresByType text
    /css A604800

    </IfModule>

    <
    IfModule mod_rewrite.c>
      
    RewriteEngine On

      
    ##
      # Set the RewriteBase if your Contao installation is in a subdirectoy and
      # the rewrite rules are not working properly. Usage examples:
      #
      #   RewriteBase /contao-2.9.0
      #   RewriteBase /path/to/contao
      #
      # Uncomment the following line to set the RewriteBase.
      ##
      
    RewriteBase /public

      
    ##
      # Contao usually does not pass absolute URLs via GET, therefore the
      # following rules block all requests that try to pass a URL or the /etc/
      # directory as parameter (malicious requests).
      ##
      
    RewriteCond %{REQUEST_URI} (ftp|https?):|/etc/ [NC,OR]
      
    RewriteCond %{QUERY_STRING} (ftp|https?):|/etc/ [NC]
      
    RewriteRule .* - [F,L]

      
    ##
      # Uncomment the following lines and replace "domain.com" with your domain
      # name to redirect requests without "www" to the correct domain. 
      ##
      #RewriteCond %{HTTP_HOST} ^domain\.com [NC]
      #RewriteRule (.*) http://www.domain.com/$1 [R=301,L]

      ##
      # Do not rewrite requests for static files or folders such as style sheets,
      # images, movies or text documents.
      ##
      
    RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond 
    %{REQUEST_FILENAME} !-d

      
    ##
      # By default, Contao adds ".html" to the generated URLs to simulate static
      # HTML documents. If you change the URL suffix in the back end settings, make
      # sure to change it here accordingly!
      #
      #   RewriteRule .*\.html$ index.php [L]   # URL suffix .html
      #   RewriteRule .* index.php [L]          # No URL suffix
      #   RewriteRule .*\.txt$ index.php [L]    # URL suffix .txt
      #
      # If you are using mod_cache, it is recommended to use the RewriteRule below,
      # which adds the query string to the internal URL:
      # 
      #   RewriteRule (.*\.html)$ index.php/$1 [L]
      #
      # Note that not all environments support mod_rewrite and mod_cache!
      ##
      
    RewriteRule .*\.htmlindex.php [L]

    </
    IfModule
    Erhard
    Geändert von Erhard (15.09.2010 um 19:43 Uhr)

  4. #4
    Contao-Fan
    Registriert seit
    25.10.2009.
    Beiträge
    254

    Standard

    Hallo,

    wenn du von root schreibst, schätze ich mal das dein Server ist. Hast du die Dateien etwa per SCP-Client als root-Benutzer in das verzeichnis geladen? Wenn ja, dann hast du etwas mächtig falsch gemacht.

    Welches OS bzw. Distribution ist installiert? Die Dateien müssen dem (in deinem Fall) Webserver User gehören, also dem User 30.

    Ist ein Linux System führe mal das in dem Ordner aus:

    Code:
    chown -R 30:30 pfad/public/

    Wenn du magst, kannst du mir eine kurze Nachricht/ E-Mail schicken dann schau ich mir den Server an.

    Gruß,

    arnoldB
    Chuck Norris doesn’t use web standards as the web will conform to him...

  5. #5
    AG CMS-Garden
    Contao-Urgestein
    Avatar von lindesbs
    Registriert seit
    05.06.2009.
    Ort
    Oer-Erkenschwick
    Beiträge
    4.154
    Partner-ID
    keine
    User beschenken
    Wunschliste

    Standard

    Was ich sehr komisch finde ist, das der Link bei Locations auf locations.php geht. Normalerweise muesste er auf locations.html zeigen....

    Man kann zwar in den Einstellungen den URL-Suffix angeben, der hat aber auch Auswirkungen auf den ersten Zugriff....

    Hast Du am Modul selbst irgendwas eingestellt ?

    Kannst Du mal TestWeise die URL Umschreibung ausschalten ?
    von Willi Voltz aus PR 500: Henry George sagte einmal: »Kultur ist Zusammenarbeit.«


    Contao-Hosting: begeisterter Uberspace-Nutzer

  6. #6
    Wandelndes Contao-Lexikon Avatar von BugBuster
    Registriert seit
    15.06.2009.
    Ort
    Berlin
    Beiträge
    10.513
    User beschenken
    Wunschliste

    Standard

    Ist das ne 404 von Contao oder vom Webserver?
    Nachtrag: Ach, da war ja ein Link, jetzt sehe ich es selbst.

    Gehts denn ohne URL Umleitung (in BE abgeschaltet + htaccess deaktiviert/umbenannt)?

    Dann wissen wir schon mal in welche Richtung wir suchen können.
    Grüße, BugBuster
    "view source" is your guide.
    Danke an alle Amazon Wunschlisten Erfüller

  7. #7
    Contao-Fan
    Registriert seit
    25.10.2009.
    Beiträge
    254

    Standard

    Zitat Zitat von BugBuster Beitrag anzeigen
    Ist das ne 404 von Contao oder vom Webserver?
    Nachtrag: Ach, da war ja ein Link, jetzt sehe ich es selbst.

    Gehts denn ohne URL Umleitung (in BE abgeschaltet + htaccess deaktiviert/umbenannt)?

    Dann wissen wir schon mal in welche Richtung wir suchen können.

    404 Error vom System Apache/2.2.10 (Linux/SUSE).

    @Erhard: Was sagen den die Logs zu dem Fall?

    Nachtrag:

    Mir scheint es das da schon rumgebastelt wurde . Erhard ersetze doch bitte mal deine htaccess gegen folgenden Inhalt:
    Code:
    ##
    # Contao Open Source CMS
    # Copyright (C) 2005-2010 Leo Feyer
    #
    # Formerly known as TYPOlight Open Source CMS.
    #
    # This program is free software: you can redistribute it and/or
    # modify it under the terms of the GNU Lesser General Public
    # License as published by the Free Software Foundation, either
    # version 3 of the License, or (at your option) any later version.
    # 
    # This program is distributed in the hope that it will be useful,
    # but WITHOUT ANY WARRANTY; without even the implied warranty of
    # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
    # Lesser General Public License for more details.
    # 
    # You should have received a copy of the GNU Lesser General Public
    # License along with this program. If not, please visit the Free
    # Software Foundation website at <http://www.gnu.org/licenses/>.
    #
    # PHP version 5
    # @copyright  Leo Feyer 2005-2010
    # @author     Leo Feyer <http://www.contao.org>
    # @license    LGPL
    ##
    
    <IfModule mod_deflate.c>
    
      ##
      # Use mod_deflate to compress JavaScript, CSS and XML files. Do not add
      # PHP and HTML files, because those have already been compressed by Contao.
      ##
      <FilesMatch "\.(css|js|xml)$">
        SetOutputFilter DEFLATE
      </FilesMatch>
    
    </IfModule>
    
    <IfModule mod_headers.c>
    
      ##
      # Add a Vary Accept-Encoding header for the compressed resources. If you
      # modify the file types above, make sure to change them here accordingly.
      ##
      <FilesMatch "\.(js|css|xml|gz)$">
        Header append Vary Accept-Encoding
      </FilesMatch>
    
    </IfModule>
    
    <IfModule mod_expires.c>
      ExpiresActive On
    
      ##
      # Specify an expiration one week in the future for images, JavaScripts and
      # CSS files (as recommended by Google Page Speed). Edit or remove the lines
      # to set up your own expiration logic.
      ##
      ExpiresByType image/png A604800
      ExpiresByType image/gif A604800
      ExpiresByType image/jpg A604800
      ExpiresByType image/jpeg A604800
      ExpiresByType text/javascript A604800
      ExpiresByType application/x-javascript A604800
      ExpiresByType text/css A604800
    
    </IfModule>
    
    <IfModule mod_rewrite.c>
      RewriteEngine On
    
      ##
      # Set the RewriteBase if your Contao installation is in a subdirectoy and
      # the rewrite rules are not working properly. Usage examples:
      #
      #   RewriteBase /contao-2.9.0
      #   RewriteBase /path/to/contao
      #
      # Uncomment the following line to set the RewriteBase.
      ##
      
    RewriteBase /public
    
      ##
      # Contao usually does not pass absolute URLs via GET, therefore the
      # following rules block all requests that try to pass a URL or the /etc/
      # directory as parameter (malicious requests).
      ##
      RewriteCond %{REQUEST_URI} (ftp|https?):|/etc/ [NC,OR]
      RewriteCond %{QUERY_STRING} (ftp|https?):|/etc/ [NC]
      RewriteRule .* - [F,L]
    
      ##
      # Uncomment the following lines and replace "domain.com" with your domain
      # name to redirect requests without "www" to the correct domain. 
      ##
      #RewriteCond %{HTTP_HOST} ^domain\.com [NC]
      #RewriteRule (.*) http://www.domain.com/$1 [R=301,L]
    
      ##
      # Do not rewrite requests for static files or folders such as style sheets,
      # images, movies or text documents.
      ##
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
    
      ##
      # By default, Contao adds ".html" to the generated URLs to simulate static
      # HTML documents. If you change the URL suffix in the back end settings, make
      # sure to change it here accordingly!
      #
      #   RewriteRule .*\.html$ index.php [L]   # URL suffix .html
      #   RewriteRule .* index.php [L]          # No URL suffix
      #   RewriteRule .*\.txt$ index.php [L]    # URL suffix .txt
      #
      # If you are using mod_cache, it is recommended to use the RewriteRule below,
      # which adds the query string to the internal URL:
      # 
      #   RewriteRule (.*\.html)$ index.php/$1 [L]
      #
      # Note that not all environments support mod_rewrite and mod_cache!
      ##
      RewriteRule .*\.html$ index.php [L]
    
    </IfModule>
    Geändert von arnoldB (15.09.2010 um 20:22 Uhr)
    Chuck Norris doesn’t use web standards as the web will conform to him...

  8. #8
    Wandelndes Contao-Lexikon Avatar von BugBuster
    Registriert seit
    15.06.2009.
    Ort
    Berlin
    Beiträge
    10.513
    User beschenken
    Wunschliste

    Standard

    arnoldB: warum hast du u.a. die "RewriteBase /" wieder rausgenommen?
    Das liegt doch im Unterverzeichnis wenn ich das richtig sehe?
    Grüße, BugBuster
    "view source" is your guide.
    Danke an alle Amazon Wunschlisten Erfüller

  9. #9
    Contao-Fan
    Registriert seit
    25.10.2009.
    Beiträge
    254

    Standard

    Zitat Zitat von BugBuster Beitrag anzeigen
    arnoldB: warum hast du u.a. die "RewriteBase /" wieder rausgenommen?
    Das liegt doch im Unterverzeichnis wenn ich das richtig sehe?
    Völlig richtig. Habe die htaccess von mir von einer frischen Installation genommen.

    Hab es eben korrigiert.
    Chuck Norris doesn’t use web standards as the web will conform to him...

  10. #10
    Gesperrt
    Registriert seit
    08.03.2010.
    Ort
    Hamburg, Orlando - Florida
    Beiträge
    35

    Standard

    @arnoldB:
    Die logs sagen garnichts, weil das system\logs - Verzeichnis nur eine .htaccess enthält, aber keine log-files...

    Nachtrag : Das Apache-Errorlog spricht folgendes:
    PHP-Code:
    [Wed Sep 15 21:45:15 2010] [error] [client 92.224.105.116script '/srv/www/vhosts/usa-in-miniature.com/httpdocs/public/location.php' not found or unable to statrefererhttp://usa-in-miniature.com/public/ 
    Würde also bedeuten, daß Contao die Seite garnicht generiert hat. Aber wieso das denn?

    Server OS ist Suse 11.3 mit PHP 5.2.9 und aktiviertem SOAP, Apache 2.2
    Server-Root ist in diesem Fall: svr/vhosts/usa-in-miniature.com/httpdocs/
    (ich habe noch eine andere Domain auf dem selben Server liegen)

    URL-Umschreibung abschalten und .htaccess umbennen bringt nichts. Der Effekt ist der selbe.

    @lindesbs:
    Ja, habe ich. Ich möchte php-Seiten generiert haben.

    @all:
    Ich habe die gleiche Konfiguration eingestellt wie bei meinem früheren Typolight 2.8.1-System. Leider ging das Update auf Contao 2.9.0 etwas "in die Hose" und so war ich gezwungen (Zeitmangel), alles neu aufzusetzen. Dabei habe ich mich strikt an das Install-Tool und die Empfehlungen von contao-check.php gehalten.

    Die ausgepackte Zip-Datei wurde mittels WinScp auf den Server kopiert. Hat mit Version 2.8 auch prima geklappt...

    Hier ist noch meine localconfig.php:
    PHP-Code:
    <?php if (!defined('TL_ROOT')) die('You can not access this file directly!');

    /**
     * Contao Open Source CMS
     * Copyright (C) 2005-2010 Leo Feyer
     *
     * Formerly known as TYPOlight Open Source CMS.
     *
     * This program is free software: you can redistribute it and/or
     * modify it under the terms of the GNU Lesser General Public
     * License as published by the Free Software Foundation, either
     * version 3 of the License, or (at your option) any later version.
     * 
     * This program is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     * Lesser General Public License for more details.
     * 
     * You should have received a copy of the GNU Lesser General Public
     * License along with this program. If not, please visit the Free
     * Software Foundation website at <http://www.gnu.org/licenses/>.
     *
     * PHP version 5
     * @copyright  Leo Feyer 2005-2010
     * @author     Leo Feyer <http://www.contao.org>
     * @package    Config
     * @license    LGPL
     * @filesource
     */

    ### INSTALL SCRIPT START ###
    $GLOBALS['TL_CONFIG']['useFTP'] = true;
    $GLOBALS['TL_CONFIG']['ftpHost'] = 'xx.xx.xx.xx';
    $GLOBALS['TL_CONFIG']['ftpPath'] = '/public';
    $GLOBALS['TL_CONFIG']['ftpUser'] = 'usa-in-miniature';
    $GLOBALS['TL_CONFIG']['ftpPass'] = 'xxxxxxxx';
    $GLOBALS['TL_CONFIG']['websitePath'] = '/public';
    $GLOBALS['TL_CONFIG']['displayErrors'] = true;
    $GLOBALS['TL_CONFIG']['licenseAccepted'] = true;
    $GLOBALS['TL_CONFIG']['installCount'] = 0;
    $GLOBALS['TL_CONFIG']['installPassword'] = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';
    $GLOBALS['TL_CONFIG']['encryptionKey'] = 'xxxxxxxxxxxxxxxxxxxxxxxxx';
    $GLOBALS['TL_CONFIG']['dbDriver'] = 'MySQL';
    $GLOBALS['TL_CONFIG']['dbHost'] = 'localhost';
    $GLOBALS['TL_CONFIG']['dbUser'] = '<dbuser>';
    $GLOBALS['TL_CONFIG']['dbPass'] = 'xxxxxxxxxx';
    $GLOBALS['TL_CONFIG']['dbDatabase'] = 'tl_railworld';
    $GLOBALS['TL_CONFIG']['dbPconnect'] = false;
    $GLOBALS['TL_CONFIG']['dbCharset'] = 'UTF8';
    $GLOBALS['TL_CONFIG']['dbPort'] = 3306;
    $GLOBALS['TL_CONFIG']['adminEmail'] = 'webmaster@usa-in-miniature.com';
    $GLOBALS['TL_CONFIG']['cron_weekly'] = 201037;
    $GLOBALS['TL_CONFIG']['websiteTitle'] = 'RailWorld';
    $GLOBALS['TL_CONFIG']['timeZone'] = 'America/New_York';
    $GLOBALS['TL_CONFIG']['urlSuffix'] = '.php';
    $GLOBALS['TL_CONFIG']['cacheMode'] = 'none';
    $GLOBALS['TL_CONFIG']['rewriteURL'] = true;
    $GLOBALS['TL_CONFIG']['validImageTypes'] = 'jpg,jpeg,gif,png';
    $GLOBALS['TL_CONFIG']['maxImageWidth'] = 800;
    $GLOBALS['TL_CONFIG']['jpgQuality'] = 95;
    $GLOBALS['TL_CONFIG']['defaultUser'] = 1;
    $GLOBALS['TL_CONFIG']['liveUpdateId'] = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';
    $GLOBALS['TL_CONFIG']['latestVersion'] = '2.9.1';
    $GLOBALS['TL_CONFIG']['cron_daily'] = 20100915;
    $GLOBALS['TL_CONFIG']['uploadTypes'] = 'jpg,jpeg,gif,png,ico,csv,doc,xls,ppt,odt,ods,odp,pdf,mp3,wma,wmv,ram,rm,mov,fla,flv,swf,css,html,htm,txt,zip,cto,tpl';
    ### INSTALL SCRIPT STOP ###

    ?>
    Ich bin mir (fast) sicher, dass ich irgendwo eine Einstellung "verpennt" habe, nur leider habe ich mich dermaßen darin verbissen, daß ich den Wald vor lauter Bäumen nicht mehr sehe.

    LG,
    Erhard
    Geändert von Erhard (15.09.2010 um 21:17 Uhr)

  11. #11
    Wandelndes Contao-Lexikon Avatar von BugBuster
    Registriert seit
    15.06.2009.
    Ort
    Berlin
    Beiträge
    10.513
    User beschenken
    Wunschliste

    Standard

    Ach du meine Güte, wer will denn sowas....

    Nungut, wenn du den Suffix änders, dann solltest du folgenden Abschnitt nochmals lesen in der htaccess:

    Code:
      # By default, Contao adds ".html" to the generated URLs to simulate static
      # HTML documents. If you change the URL suffix in the back end settings, make
      # sure to change it here accordingly!
      #
      #   RewriteRule .*\.html$ index.php [L]   # URL suffix .html
      #   RewriteRule .* index.php [L]          # No URL suffix
      #   RewriteRule .*\.txt$ index.php [L]    # URL suffix .txt
    Grüße, BugBuster
    "view source" is your guide.
    Danke an alle Amazon Wunschlisten Erfüller

  12. #12
    Contao-Fan
    Registriert seit
    25.10.2009.
    Beiträge
    254

    Standard

    Die logs sagen garnichts, weil das system\logs - Verzeichnis nur eine .htaccess enthält, aber keine log-files...


    Die Webserverlogs sind gemeint.




    URL-Umschreibung abschalten und .htaccess umbennen bringt nichts. Der Effekt ist der selbe.
    Hast du den Inhalt der htaccess mal mit meinem Vorschlag geändert?


    Die ausgepackte Zip-Datei wurde mittels WinScp auf den Server kopiert. Hat mit Version 2.8 auch prima geklappt...
    Eigentlich darf/sollte man niemals Dateien Rootrechten geben, die im Netz erreichbar sind...

    ---

    Wenn Safemod aus ist, kannst du du useFTP auf false setzen oder nicht?


    Nachtrag 22:22:

    So wie ich gerade sehe ist auf diesem Server Plesk installiert. Open Suse + Plesk wer war das denn??

    Nachtrag 22:23:

    Sollte auf dem System wirklich Plesk laufen, ändere mal die Datei-Besitzer auf den FTP-User des Plesk-Clients. Setze dann die Einstellung für die Domain, das php/apache2/ ... als apache2-fcgi ausgeführt werden soll, wenn nicht bereits geschehen.
    Geändert von arnoldB (15.09.2010 um 21:25 Uhr)
    Chuck Norris doesn’t use web standards as the web will conform to him...

  13. #13
    Gesperrt
    Registriert seit
    08.03.2010.
    Ort
    Hamburg, Orlando - Florida
    Beiträge
    35

    Standard

    Besten Dank auch, Problem gelöst!

    Der Tip von BugBuster war goldrichtig. Wer php haben will, sollte es auch einstellen...
    Kommt davon, wenn man auf einer Maschine Gleispläne zeichnen muß, damit der Rubel rollt und auf der anderen Kiste sein CMS zum Laufen bringen muß, damit die Doku auch an's Rennen kommt.

    Danke für Eure Geduld und eine schöne Woche (trotz "Schietwetter"),
    Erhard

  14. #14
    Contao-Fan
    Registriert seit
    25.10.2009.
    Beiträge
    254

    Standard

    Zitat Zitat von Erhard Beitrag anzeigen
    Besten Dank auch, Problem gelöst!

    Der Tip von BugBuster war goldrichtig. Wer php haben will, sollte es auch einstellen...
    Kommt davon, wenn man auf einer Maschine Gleispläne zeichnen muß, damit der Rubel rollt und auf der anderen Kiste sein CMS zum Laufen bringen muß, damit die Doku auch an's Rennen kommt.

    Danke für Eure Geduld und eine schöne Woche (trotz "Schietwetter"),
    Erhard
    Um den Contao-Check würde ich mich aber trotzdem an deiner Stelle kümmern, Dateien mit Besitzer root ist nicht immer ungefährlich .
    Chuck Norris doesn’t use web standards as the web will conform to him...

  15. #15
    Gesperrt
    Registriert seit
    08.03.2010.
    Ort
    Hamburg, Orlando - Florida
    Beiträge
    35

    Standard

    Yup, das ist richtig und wird natürlich noch korrigiert.

    LG,
    Erhard

Aktive Benutzer

Aktive Benutzer

Aktive Benutzer in diesem Thema: 1 (Registrierte Benutzer: 0, Gäste: 1)

Ähnliche Themen

  1. Antworten: 8
    Letzter Beitrag: 29.11.2010, 20:43
  2. white screen bei aufruf der seite
    Von karo im Forum Installation / Update
    Antworten: 15
    Letzter Beitrag: 19.11.2010, 11:48
  3. Parse error: syntax error.. - Seite plötzlich nicht mehr erreichbar
    Von pistolpete im Forum Installation / Update
    Antworten: 4
    Letzter Beitrag: 10.11.2010, 09:21
  4. Weiterleitung bei Aufruf von geschützer Seite
    Von typo im Forum Geschützte Bereiche/Mitglieder
    Antworten: 2
    Letzter Beitrag: 09.06.2010, 20:59
  5. Fatal error bei Aufruf Dateiverwaltung
    Von bekanntmacher im Forum Bilder/Dateien
    Antworten: 2
    Letzter Beitrag: 10.02.2010, 11:37

Lesezeichen

Lesezeichen

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein
  •