A volte può capitare che non si visualizzano le immagini, ne da frontend,
ne da backend, presenti nella cartella /media.
Per cui ad esempio, oltre a non vedersi le immagini in un template, non si vedono nennemo dal browser media.
Oltre ai soliti CHMOD che vanno controllati (in genere 755 ma dipende dal server) ,
il problema probabilmnete risiede nel file .htaccess dentro la cartella /media stessa,
vanno infatti commentate le righe
Options All -Indexes
e
Options +FollowSymLinks
In questo modo:
#Options All -Indexes
<IfModule mod_php5.c>
php_flag engine 0
</IfModule>
AddHandler cgi-script .php .pl .py .jsp .asp .htm .shtml .sh .cgi
Options -ExecCGI
<IfModule mod_rewrite.c>
############################################
## enable rewrites
#Options +FollowSymLinks
RewriteEngine on
############################################
## never rewrite for existing files
RewriteCond %{REQUEST_FILENAME} !-f
############################################
## rewrite everything else to index.php
RewriteRule .* ../get.php [L]
</IfModule>
ne da backend, presenti nella cartella /media.
Per cui ad esempio, oltre a non vedersi le immagini in un template, non si vedono nennemo dal browser media.
Oltre ai soliti CHMOD che vanno controllati (in genere 755 ma dipende dal server) ,
il problema probabilmnete risiede nel file .htaccess dentro la cartella /media stessa,
vanno infatti commentate le righe
Options All -Indexes
e
Options +FollowSymLinks
In questo modo:
#Options All -Indexes
<IfModule mod_php5.c>
php_flag engine 0
</IfModule>
AddHandler cgi-script .php .pl .py .jsp .asp .htm .shtml .sh .cgi
Options -ExecCGI
<IfModule mod_rewrite.c>
############################################
## enable rewrites
#Options +FollowSymLinks
RewriteEngine on
############################################
## never rewrite for existing files
RewriteCond %{REQUEST_FILENAME} !-f
############################################
## rewrite everything else to index.php
RewriteRule .* ../get.php [L]
</IfModule>
Commenti
Posta un commento