Visualizzazione risultati 1 fino 10 di 10

Discussione: Pagina index mancante (era: il mio sito non visualizza le pagine/foto)

  1. #1
    Guest

    Predefinito Pagina index mancante (era: il mio sito non visualizza le pagine/foto)

    Salve a tutti,il mio sito www.mauriziofuresisatta.it/gallery/ no visualizza le foto appare ...indirizzo index mancante pagina non presente, fino a pochi giorni fa funzionava perfettamente,come mai? Grazie

  2. #2
    Guest

    Predefinito

    Cortesemente qualche amministratore del sito mi risponda o rimetta il mio sito in opera
    A fine mese scade il dominio e se le cose non torneranno a posto
    chiudo tutto e riapro con altro fornitore,grazie.

  3. #3
    karl94 non è connesso Staff AV
    Data registrazione
    03-10-2005
    Messaggi
    17,744

    Predefinito

    Hai messo mano al file .htaccess o a qualche impostazione di recente? Se hai accesso alle impostazioni prova a disabilitare e riabilitare il mod_rewrite.

  4. #4
    Guest

    Predefinito

    Citazione Originalmente inviato da karl94 Visualizza messaggio
    Hai messo mano al file .htaccess o a qualche impostazione di recente? Se hai accesso alle impostazioni prova a disabilitare e riabilitare il mod_rewrite.
    Credo che sia successo questo,ho inserito una foto e lo spazio utilizzato e' diventato al 100% molto probabilmente questo ha bloccato il sito,(forse) ho ricaricato dello spazio disponibile ora e, al 70℅ ma il sito e' rimasto bloccato,no non ho toccato nessun file

  5. #5
    Guest

    Predefinito

    Citazione Originalmente inviato da furesisattam Visualizza messaggio
    Cortesemente qualche amministratore del sito mi risponda o rimetta il mio sito in opera
    A fine mese scade il dominio e se le cose non torneranno a posto
    chiudo tutto e riapro con altro fornitore,grazie.
    Ecco quello che appare cliccando su gallerie o foto

    alterVista
    Pagina index mancante
    La cartella /gallery/landscapes/ non contiene una pagina index.

    Devi creare una pagina che si chiami index.html, index.htm oppure index.php (tutto minuscolo).

    Attenzione: se hai creato il sito da poco potrebbe essere necessario attendere fino a 24 ore prima che sia visibile.

  6. #6
    karl94 non è connesso Staff AV
    Data registrazione
    03-10-2005
    Messaggi
    17,744

    Predefinito

    Puoi riportare qui il contenuto del file .htaccess presente nella cartella gallery?

  7. #7
    Guest

    Predefinito

    Citazione Originalmente inviato da karl94 Visualizza messaggio
    Puoi riportare qui il contenuto del file .htaccess presente nella cartella gallery?
    E come faccio??

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

    Predefinito

    Dalla gestione files visualizza il contenuto del file .htaccess localizzato nel folder /gallery e postalo qui.

    Se hai un backup precedente a quando il problema ha iniziato a presentarsi dovresti ripristinarlo, risolveresti probabilmente il problema.

    In ogni caso quel file deve contenere questo:

    Codice:
    # htaccess file version 1.4.1;
    # When Zenphoto requires changes to the rewrite rules:
    #		First make a copy of this file as 'oldhtaccess' in the zp-core folder so setup can test for unmodified files
    #		Update the above and the define in setup.php
    
    
    
    <IfModule mod_rewrite.c>
      RewriteEngine On
    
      RewriteBase /gallery
    
      RewriteRule	^admin/?$                       zp-core/admin.php [R,L]
      
      RewriteCond %{REQUEST_FILENAME} -d
      RewriteRule ^albums/?(.+/?)?$ $1 [R=301,L] 
    
      RewriteCond %{REQUEST_FILENAME} -f [OR]
      RewriteCond %{REQUEST_FILENAME} -d
      RewriteRule ^.*$ - [L]
      
      ##### put no rules before this line #######
      
      
      #######################
      #Rewrite rules for removed sitemap.php
      RewriteRule	^sitemap\.php                  		index.php?sitemap [L,R=301]
      
      #Rewrite rules for removed RSS files
    	RewriteCond %{QUERY_STRING} albumtitle=(.*)&albumname=(.*)&lang=".$lang
    	RewriteRule	^rss\.php/?$                	index.php?rss&albumtitle=%1&albumname=%2&lang=%3 [L,R=301]
    	
    	RewriteCond %{QUERY_STRING} albumtitle=(.*)&folder=(.*)&lang=(.*)
    	RewriteRule	^rss\.php/?$                	index.php?rss&albumtitle=%1&folder=%2&lang=%3 [L,R=301]
    	
    	RewriteCond %{QUERY_STRING} albumtitle=(.*)&albumname=(.*)&lang=(.*)
    	RewriteRule	^rss\.php/?$                	index.php?rss&albumtitle=%1&albumname=%2&lang=%3 [L,R=301]
    	
    	RewriteCond %{QUERY_STRING} folder=(.*)&lang=(.*)&albumsmode
    	RewriteRule	^rss\.php/?$                	index.php?rss&folder%1&lang=%2&albumsmode [L,R=301]
    	
      RewriteCond %{QUERY_STRING} withimages&lang=(.*)
    	RewriteRule	^rss-news\.php/?$                	index.php?rss-news&withimages&lang=%1 [L,R=301]
    	
    	RewriteCond %{QUERY_STRING} id=(.*)&title=(.*)&type=(.*)&lang=(.*)
    	RewriteRule	^rss-comments\.php/?$                	index.php?rss-comments&id=%1&title=%2&type=%3&lang=%4 [L,R=301]
    	
      RewriteCond %{QUERY_STRING} type=(.*)&lang=(.*)
    	RewriteRule	^rss-comments\.php/?$                	index.php?rss-comments&type=%1&lang=%2 [L,R=301]
      
      RewriteCond %{QUERY_STRING} lang=(.*)&albumsmode
    	RewriteRule	^rss\.php/?$                	index.php?rss&lang=%1&albumsmode [L,R=301]
    
      RewriteCond %{QUERY_STRING} lang=(.*)&category=(.*)
    	RewriteRule	^rss-news\.php/?$                	index.php?rss-news&lang=%1&category=%2 [L,R=301]
      
      RewriteCond %{QUERY_STRING} lang=(.*)
    	RewriteRule	^rss\.php/?$                	index.php?rss&lang=%1 [L,R=301]
    	RewriteRule	^rss-news\.php/?$                	index.php?rss-news&lang=%1 [L,R=301]
      #######################
      #rewrite rule for tinyURLs
      RewriteRule ^tiny/([0-9]+)/?$               index.php?p=$1&t [L,QSA]
      
      RewriteRule index\.php$                     index.php [L,QSA]
      RewriteRule ^page/([0-9]+)/?$               index.php?page=$1 [L,QSA]
      RewriteRule ^page/([A-Za-z0-9_\-]+)/?$      index.php?p=$1 [L,QSA]
     	RewriteRule ^page/([A-Za-z0-9_\-]+)/([0-9]+)/?$      index.php?p=$1&page=$2 [L,QSA]
      RewriteRule ^(.*)/page/([0-9]+)/?$          index.php?album=$1&page=$2 [L,QSA]
      RewriteRule ^(.*)/page/([A-Za-z0-9_\-]+)/?$      index.php?album=$1&p=$2 [L,QSA]
       
      #### Rewrite rule addition for search
      RewriteRule ^page/search/fields([0-9]+)/(.*)/([0-9]+)/?$      index.php?p=search&searchfields=$1&words=$2&page=$3 [L,QSA]
      RewriteRule ^page/search/fields([0-9]+)/(.*)/?$      index.php?p=search&searchfields=$1&words=$2 [L,QSA]
      RewriteRule ^page/search/archive/(.*)/([0-9]+)/?$      index.php?p=search&date=$1&page=$2 [L,QSA]
      RewriteRule ^page/search/archive/(.*)/?$      index.php?p=search&date=$1 [L,QSA]
      RewriteRule ^page/search/tags/(.*)/([0-9]+)/?$  index.php?p=search&searchfields=tags&words=$1&page=$2 [L,QSA]
      RewriteRule ^page/search/tags/(.*)/?$ 					 index.php?p=search&searchfields=tags&words=$1 [L,QSA]
      RewriteRule ^page/search/(.*)/([0-9]+)/?$      index.php?p=search&words=$1&page=$2 [L,QSA]
      RewriteRule ^page/search/(.*)/?$      index.php?p=search&words=$1 [L,QSA]
      #### Rewrite additions for zenpage	
    	RewriteRule ^pages/?$      index.php?p=pages [L,QSA]
      RewriteRule ^pages/(.*)/?$                   index.php?p=pages&title=$1 [L,QSA]
      RewriteRule ^news/?$      		       index.php?p=news [L,QSA]
      RewriteRule ^news/([0-9]+)/?$                index.php?p=news&page=$1 [L,QSA]
      RewriteRule ^news/category/(.*)/([0-9]+)/?$  index.php?p=news&category=$1&page=$2 [L,QSA]
      RewriteRule ^news/category/(.*)/?$           index.php?p=news&category=$1 [L,QSA] 
      RewriteRule ^news/archive/(.*)/([0-9]+)/?$   index.php?p=news&date=$1&page=$2 [L,QSA]
      RewriteRule ^news/archive/(.*)/?$            index.php?p=news&date=$1 [L,QSA]
      RewriteRule ^news/(.*)/?$                    index.php?p=news&title=$1 [L,QSA] 
      ####
      RewriteRule ^(.*)/image/(thumb|[0-9]{1,4})/([^/\\]+)$    zp-core/i.php?a=$1&i=$3&s=$2 [L,QSA]
      RewriteRule ^(.*)/image/([^/\\]+)$          zp-core/i.php?a=$1&i=$2 [L,QSA]
      RewriteRule ^(.*)/album/(thumb|[0-9]{1,4})/([^/\\]+)$    zp-core/i.php?a=$1&i=$3&s=$2&album=true [L,QSA]
      ####
       
      # Catch-all - everything else gets handled in PHP for compatibility.
      RewriteRule ^(.*)/?$                        index.php?album=$1 [L,QSA]
    </IfModule>
    
    # # av:php5-engine
    AddHandler av-php5 .php
    Se non è così incollaci dentro questo contenuto e dovrebbe risolvere il problema.
    Ultima modifica di Gianluca : 20-08-2013 alle ore 19.33.46
    Gianluca

  9. #9
    Guest

    Predefinito

    Citazione Originalmente inviato da Gianluca Visualizza messaggio
    Dalla gestione files visualizza il contenuto del file .htaccess localizzato nel folder /gallery e postalo qui.

    Se hai un backup precedente a quando il problema ha iniziato a presentarsi dovresti ripristinarlo, risolveresti probabilmente il problema.

    In ogni caso quel file deve contenere questo:

    Codice:
    # htaccess file version 1.4.1;
    # When Zenphoto requires changes to the rewrite rules:
    #		First make a copy of this file as 'oldhtaccess' in the zp-core folder so setup can test for unmodified files
    #		Update the above and the define in setup.php
    
    
    
    <IfModule mod_rewrite.c>
      RewriteEngine On
    
      RewriteBase /gallery
    
      RewriteRule	^admin/?$                       zp-core/admin.php [R,L]
      
      RewriteCond %{REQUEST_FILENAME} -d
      RewriteRule ^albums/?(.+/?)?$ $1 [R=301,L] 
    
      RewriteCond %{REQUEST_FILENAME} -f [OR]
      RewriteCond %{REQUEST_FILENAME} -d
      RewriteRule ^.*$ - [L]
      
      ##### put no rules before this line #######
      
      
      #######################
      #Rewrite rules for removed sitemap.php
      RewriteRule	^sitemap\.php                  		index.php?sitemap [L,R=301]
      
      #Rewrite rules for removed RSS files
    	RewriteCond %{QUERY_STRING} albumtitle=(.*)&albumname=(.*)&lang=".$lang
    	RewriteRule	^rss\.php/?$                	index.php?rss&albumtitle=%1&albumname=%2&lang=%3 [L,R=301]
    	
    	RewriteCond %{QUERY_STRING} albumtitle=(.*)&folder=(.*)&lang=(.*)
    	RewriteRule	^rss\.php/?$                	index.php?rss&albumtitle=%1&folder=%2&lang=%3 [L,R=301]
    	
    	RewriteCond %{QUERY_STRING} albumtitle=(.*)&albumname=(.*)&lang=(.*)
    	RewriteRule	^rss\.php/?$                	index.php?rss&albumtitle=%1&albumname=%2&lang=%3 [L,R=301]
    	
    	RewriteCond %{QUERY_STRING} folder=(.*)&lang=(.*)&albumsmode
    	RewriteRule	^rss\.php/?$                	index.php?rss&folder%1&lang=%2&albumsmode [L,R=301]
    	
      RewriteCond %{QUERY_STRING} withimages&lang=(.*)
    	RewriteRule	^rss-news\.php/?$                	index.php?rss-news&withimages&lang=%1 [L,R=301]
    	
    	RewriteCond %{QUERY_STRING} id=(.*)&title=(.*)&type=(.*)&lang=(.*)
    	RewriteRule	^rss-comments\.php/?$                	index.php?rss-comments&id=%1&title=%2&type=%3&lang=%4 [L,R=301]
    	
      RewriteCond %{QUERY_STRING} type=(.*)&lang=(.*)
    	RewriteRule	^rss-comments\.php/?$                	index.php?rss-comments&type=%1&lang=%2 [L,R=301]
      
      RewriteCond %{QUERY_STRING} lang=(.*)&albumsmode
    	RewriteRule	^rss\.php/?$                	index.php?rss&lang=%1&albumsmode [L,R=301]
    
      RewriteCond %{QUERY_STRING} lang=(.*)&category=(.*)
    	RewriteRule	^rss-news\.php/?$                	index.php?rss-news&lang=%1&category=%2 [L,R=301]
      
      RewriteCond %{QUERY_STRING} lang=(.*)
    	RewriteRule	^rss\.php/?$                	index.php?rss&lang=%1 [L,R=301]
    	RewriteRule	^rss-news\.php/?$                	index.php?rss-news&lang=%1 [L,R=301]
      #######################
      #rewrite rule for tinyURLs
      RewriteRule ^tiny/([0-9]+)/?$               index.php?p=$1&t [L,QSA]
      
      RewriteRule index\.php$                     index.php [L,QSA]
      RewriteRule ^page/([0-9]+)/?$               index.php?page=$1 [L,QSA]
      RewriteRule ^page/([A-Za-z0-9_\-]+)/?$      index.php?p=$1 [L,QSA]
     	RewriteRule ^page/([A-Za-z0-9_\-]+)/([0-9]+)/?$      index.php?p=$1&page=$2 [L,QSA]
      RewriteRule ^(.*)/page/([0-9]+)/?$          index.php?album=$1&page=$2 [L,QSA]
      RewriteRule ^(.*)/page/([A-Za-z0-9_\-]+)/?$      index.php?album=$1&p=$2 [L,QSA]
       
      #### Rewrite rule addition for search
      RewriteRule ^page/search/fields([0-9]+)/(.*)/([0-9]+)/?$      index.php?p=search&searchfields=$1&words=$2&page=$3 [L,QSA]
      RewriteRule ^page/search/fields([0-9]+)/(.*)/?$      index.php?p=search&searchfields=$1&words=$2 [L,QSA]
      RewriteRule ^page/search/archive/(.*)/([0-9]+)/?$      index.php?p=search&date=$1&page=$2 [L,QSA]
      RewriteRule ^page/search/archive/(.*)/?$      index.php?p=search&date=$1 [L,QSA]
      RewriteRule ^page/search/tags/(.*)/([0-9]+)/?$  index.php?p=search&searchfields=tags&words=$1&page=$2 [L,QSA]
      RewriteRule ^page/search/tags/(.*)/?$ 					 index.php?p=search&searchfields=tags&words=$1 [L,QSA]
      RewriteRule ^page/search/(.*)/([0-9]+)/?$      index.php?p=search&words=$1&page=$2 [L,QSA]
      RewriteRule ^page/search/(.*)/?$      index.php?p=search&words=$1 [L,QSA]
      #### Rewrite additions for zenpage	
    	RewriteRule ^pages/?$      index.php?p=pages [L,QSA]
      RewriteRule ^pages/(.*)/?$                   index.php?p=pages&title=$1 [L,QSA]
      RewriteRule ^news/?$      		       index.php?p=news [L,QSA]
      RewriteRule ^news/([0-9]+)/?$                index.php?p=news&page=$1 [L,QSA]
      RewriteRule ^news/category/(.*)/([0-9]+)/?$  index.php?p=news&category=$1&page=$2 [L,QSA]
      RewriteRule ^news/category/(.*)/?$           index.php?p=news&category=$1 [L,QSA] 
      RewriteRule ^news/archive/(.*)/([0-9]+)/?$   index.php?p=news&date=$1&page=$2 [L,QSA]
      RewriteRule ^news/archive/(.*)/?$            index.php?p=news&date=$1 [L,QSA]
      RewriteRule ^news/(.*)/?$                    index.php?p=news&title=$1 [L,QSA] 
      ####
      RewriteRule ^(.*)/image/(thumb|[0-9]{1,4})/([^/\\]+)$    zp-core/i.php?a=$1&i=$3&s=$2 [L,QSA]
      RewriteRule ^(.*)/image/([^/\\]+)$          zp-core/i.php?a=$1&i=$2 [L,QSA]
      RewriteRule ^(.*)/album/(thumb|[0-9]{1,4})/([^/\\]+)$    zp-core/i.php?a=$1&i=$3&s=$2&album=true [L,QSA]
      ####
       
      # Catch-all - everything else gets handled in PHP for compatibility.
      RewriteRule ^(.*)/?$                        index.php?album=$1 [L,QSA]
    </IfModule>
    
    # # av:php5-engine
    AddHandler av-php5 .php
    Se non è così incollaci dentro questo contenuto e dovrebbe risolvere il problema.
    Dove lo trovo la gestione files? su riepilogo, opzioni ,etc...

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

    Predefinito

    http://it.altervista.org/cplogin.php

    Dopo esserti loggato c'è un pulsantone "Gestione files"
    Gianluca

Regole di scrittura

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