Visualizzazione risultati 1 fino 12 di 12

Discussione: [Drupal] errore 500 - .htaccess sintatticamente scorretto

  1. #1
    Guest

    Predefinito errore 500 - .htaccess sintatticamente scorretto

    non so se è il forum giusto.

    sto costruendo un sito Drupal, e al primo tentativo di entrarci ho ottenuto l'errore in oggetto.
    leggendo un po' di messaggi nel forum mi pare di capire che il problema sia uno script php di Drupal che ha cercato di accedere a un folder errato (devo aver fatto un po' di confusione nei settaggi, scusate ma non ci capisco molto)dato che non ho creato un file con quel nome.

    Il problema è che non posso sistemare il file .htaccess perchè non ho attivato l'opzione apposita
    sempre dai forum ho capito che l'unica soluzione sia evocare un mitico Gianluca, ma come fare?

    QUALCUNO MI AIUTA?

    Grazie.

    Antonello

  2. #2
    L'avatar di Evcz
    Evcz non è connesso Utente storico
    Data registrazione
    31-05-2002
    Residenza
    Vicenza
    Messaggi
    5,670

    Predefinito

    se nel tuo client FTP abiliti la visualizzazione dei files nascosti dovresti essere tranquillamente in grando di cancellare tale .htaccess e riportare tutto alla normalità...
    There are three kinds of people in this world: people who watch things happen ... people who complain about things that happen ... and people who make things happen...

  3. #3
    L'avatar di Gianluca
    Gianluca non è connesso Amministratore
    Data registrazione
    15-02-2001
    Messaggi
    18,035

    Predefinito

    Non vedo aggiornamenti, suppongo che il problema sia stato risolto.
    Gianluca

  4. #4
    Guest

    Predefinito

    Il problema non è stato risolto, sono solo stato assente qualche giorno.

    Il mio client FTP (coreFTP lite) non consente di visualizzare hidden files (o per lo meno io non sono capace di farlo). Cosa posso fare?

    EDIT:
    Ho aggiornato coreFTP
    ma nel mio folder non c'è nessun .htaccess

    usa il tasto EDITA per due messaggi consecutivi.
    Ultima modifica di seneca : 24-05-2006 alle ore 23.55.39

  5. #5
    L'avatar di Evcz
    Evcz non è connesso Utente storico
    Data registrazione
    31-05-2002
    Residenza
    Vicenza
    Messaggi
    5,670

    Predefinito

    tonioanto posta un link ad un pagina/cartella che ti da quell'errore...
    There are three kinds of people in this world: people who watch things happen ... people who complain about things that happen ... and people who make things happen...

  6. #6
    Guest

    Predefinito

    ciao a tutti mi aggiungo anke io al post, ho lo stesso problema l'errore che mi da è il seguente la prima volta che accedo mi compare l'errore 500, la seconda volta quando aggiorno la pagina dal browser mi da: Fatal error: Call to undefined function: block_list() in /membri/traccer/includes/theme.inc on line 1013 è un problema sul .htacces ma nn capisco cosa devo fare... HELP!! ciao e grazie
    TRACCER

  7. #7
    L'avatar di Evcz
    Evcz non è connesso Utente storico
    Data registrazione
    31-05-2002
    Residenza
    Vicenza
    Messaggi
    5,670

    Predefinito

    posta il contenuto dell'htaccess
    There are three kinds of people in this world: people who watch things happen ... people who complain about things that happen ... and people who make things happen...

  8. #8
    Guest

    Predefinito

    Ecco il contenuto del htacces presente nella root di drupal grazie per la risposta
    TRACCER


    Codice:
    #
    # Apache/PHP/Drupal settings:
    #
    
    # Protect files and directories from prying eyes.
    <FilesMatch "(\.(engine|inc|info|install|module|profile|po|sh|.*sql|theme|tpl(\.php)?|xtmpl)|code-style\.pl|Entries.*|Repository|Root|Tag|Template)$">
      Order allow,deny
    </FilesMatch>
    
    # Don't show directory listings for URLs which map to a directory.
    Options -Indexes
    
    # Follow symbolic links in this directory.
    Options +FollowSymLinks
    
    # Customized error messages.
    ErrorDocument 404 /index.php
    
    # Set the default handler.
    DirectoryIndex index.php
    
    # Override PHP settings. More in sites/default/settings.php
    # but the following cannot be changed at runtime.
    
    # PHP 4, Apache 1.
    <IfModule mod_php4.c>
      php_value magic_quotes_gpc                0
      php_value register_globals                0
      php_value session.auto_start              0
    </IfModule>
    
    # PHP 4, Apache 2.
    <IfModule sapi_apache2.c>
      php_value magic_quotes_gpc                0
      php_value register_globals                0
      php_value session.auto_start              0
    </IfModule>
    
    # PHP 5, Apache 1 and 2.
    <IfModule mod_php5.c>
      php_value magic_quotes_gpc                0
      php_value register_globals                0
      php_value session.auto_start              0
    </IfModule>
    
    # Requires mod_expires to be enabled.
    <IfModule mod_expires.c>
      # Enable expirations.
      ExpiresActive On
      # Cache all files for 2 weeks after access (A).
      ExpiresDefault A1209600
      # Do not cache dynamically generated pages.
      ExpiresByType text/html A1
    </IfModule>
    
    # Various rewrite rules.
    <IfModule mod_rewrite.c>
      RewriteEngine on
    
      # If your site can be accessed both with and without the prefix www. you
      # can use one of the following settings to force user to use only one option:
      #
      # If you want the site to be accessed WITH the www. only, adapt and
      # uncomment the following:
      # RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
      # RewriteRule .* http://www.example.com/ [L,R=301]
      #
      # If you want the site to be accessed only WITHOUT the www. prefix, adapt
      # and uncomment the following:
      # RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
      # RewriteRule .* http://example.com/ [L,R=301]
    
      # Modify the RewriteBase if you are using Drupal in a subdirectory and
      # the rewrite rules are not working properly.
      #RewriteBase /drupal
    
      # Rewrite old-style URLs of the form 'node.php?id=x'.
      #RewriteCond %{REQUEST_FILENAME} !-f
      #RewriteCond %{REQUEST_FILENAME} !-d
      #RewriteCond %{QUERY_STRING} ^id=([^&]+)$
      #RewriteRule node.php index.php?q=node/view/%1 [L]
    
      # Rewrite old-style URLs of the form 'module.php?mod=x'.
      #RewriteCond %{REQUEST_FILENAME} !-f
      #RewriteCond %{REQUEST_FILENAME} !-d
      #RewriteCond %{QUERY_STRING} ^mod=([^&]+)$
      #RewriteRule module.php index.php?q=%1 [L]
    
      # Rewrite current-style URLs of the form 'index.php?q=x'.
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
    </IfModule>
    
    # $Id: .htaccess,v 1.81 2007/01/09 09:27:10 dries Exp $
    Ultima modifica di Evcz : 29-05-2007 alle ore 20.35.31

  9. #9
    L'avatar di Evcz
    Evcz non è connesso Utente storico
    Data registrazione
    31-05-2002
    Residenza
    Vicenza
    Messaggi
    5,670

    Predefinito

    temo tu debba togliere tutto e lasciare solo:

    Codice:
    RewriteEngine on
    
    # If your site can be accessed both with and without the prefix www. you
    # can use one of the following settings to force user to use only one option:
    #
    # If you want the site to be accessed WITH the www. only, adapt and
    # uncomment the following:
    # RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
    # RewriteRule .* http://www.example.com/ [L,R=301]
    #
    # If you want the site to be accessed only WITHOUT the www. prefix, adapt
    # and uncomment the following:
    # RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
    # RewriteRule .* http://example.com/ [L,R=301]
    
    # Modify the RewriteBase if you are using Drupal in a subdirectory and
    # the rewrite rules are not working properly.
    #RewriteBase /drupal
    
    # Rewrite old-style URLs of the form 'node.php?id=x'.
    #RewriteCond %{REQUEST_FILENAME} !-f
    #RewriteCond %{REQUEST_FILENAME} !-d
    #RewriteCond %{QUERY_STRING} ^id=([^&]+)$
    #RewriteRule node.php index.php?q=node/view/%1 [L]
    
    # Rewrite old-style URLs of the form 'module.php?mod=x'.
    #RewriteCond %{REQUEST_FILENAME} !-f
    #RewriteCond %{REQUEST_FILENAME} !-d
    #RewriteCond %{QUERY_STRING} ^mod=([^&]+)$
    #RewriteRule module.php index.php?q=%1 [L]
    
    # Rewrite current-style URLs of the form 'index.php?q=x'.
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
    in quanto il resto non ti è accessibile... prova...
    There are three kinds of people in this world: people who watch things happen ... people who complain about things that happen ... and people who make things happen...

  10. #10
    Guest

    Predefinito

    nada non funziona sempre errore 1013

  11. #11
    L'avatar di Evcz
    Evcz non è connesso Utente storico
    Data registrazione
    31-05-2002
    Residenza
    Vicenza
    Messaggi
    5,670

    Predefinito

    1013?

    oppure 503 e poi sparisce?
    There are three kinds of people in this world: people who watch things happen ... people who complain about things that happen ... and people who make things happen...

  12. #12
    Guest

    Predefinito

    Fatal error: Call to undefined function: block_list() in /membri/traccer/includes/theme.inc on line 1013
    l'errore è questo... quello che ho fatto è caricare via ftp tutto il portale linkare il db.
    nn ho neanke settato la pw dell'admin.


    EDIT:
    ho risolto grazie non avevo letto fino in fondo il tutorial, praticamente non avevo riempito il DB ehehhe che babbo... ora ho installato la v4 proverò anke con la 5 di drupal grazie per il supporto :P alla prox


    Usa il tasto EDITA per scrivere messaggi consecutivi.
    Ultima modifica di seneca : 30-05-2007 alle ore 14.07.12

Regole di scrittura

  • Non puoi creare nuove discussioni
  • Non puoi rispondere ai messaggi
  • Non puoi inserire allegati.
  • Non puoi modificare i tuoi messaggi
  •