Não lista imagens do diretório e sub-diretório
Olá,
Estou com este problema não consigo resolver porque não lista as imagens do direito e sub-diretório.
Link para vocês verem o erro.
http://hotbr.com.br/bg/eventos/1272/treino-moto-show.html
Lista imagens
<?php
$imgDir = "$url_Geral_sebarra/upload/eventos/$cidade/$dados[pasta]/";
$thumbDir = "$url_Geral_sebarra/upload/eventos/$cidade/$dados[pasta]/thumbs/";
$images = scandir($imgDir);
$thumbs = scandir($thumbDir);
$ignore = array( ".", ".." );
for($i = 0; $i < count($images); $i++) {
if(count($thumbs) > $i) {
if(!in_array($images[$i], $ignore) && !in_array($thumbs[$i], $ignore)) {
echo"$imgDir";
?>
<li>
<?php echo "<a class='thumb' href=\"$url_Geral_sebarra/upload/eventos/$cidade/$dados[pasta]/{$images[$i]}\"><img src=\"$url_Geral_sebarra/upload/eventos/$cidade/$dados[pasta]/thumbs/{$thumbs[$i]}\" alt=\"\" width='45' height='40' /></a>"; ?></li>
<?php
}
}
}
?>
Erro
Warning: scandir() [function.scandir]: URL file-access is disabled in the server configuration in /home/hotbrcom/public_html/bg/paginas/galerias/exibe.php on line 113
Warning: scandir(http://hotbr.com.br/upload/eventos/1/2014_01_06005935/) [function.scandir]: failed to open dir: no suitable wrapper could be found in /home/hotbrcom/public_html/bg/paginas/galerias/exibe.php on line 113
Warning: scandir() [function.scandir]: (errno 0): Success in /home/hotbrcom/public_html/bg/paginas/galerias/exibe.php on line 113
Warning: scandir() [function.scandir]: URL file-access is disabled in the server configuration in /home/hotbrcom/public_html/bg/paginas/galerias/exibe.php on line 114
Warning: scandir(http://hotbr.com.br/upload/eventos/1/2014_01_06005935/thumbs/) [function.scandir]: failed to open dir: no suitable wrapper could be found in /home/hotbrcom/public_html/bg/paginas/galerias/exibe.php on line 114
Warning: scandir() [function.scandir]: (errno 0): Success in /home/hotbrcom/public_html/bg/paginas/galerias/exibe.php on line 114
Discussão (4)
Carregando comentários...