Warning: Division by zero in /home/waznechwile/domains/waznechwile.futurehost.pl/public_html/ustawienia/global.php on line 165
Warning: Division by zero in /home/waznechwile/domains/waznechwile.futurehost.pl/public_html/ustawienia/global.php on line 167
Warning: imagecreatefromjpeg(http://www.waznechwile.futurehost.pl/uploads/11/min) [function.imagecreatefromjpeg]: failed to open stream: HTTP request failed! HTTP/1.1 403 Forbidden in /home/waznechwile/domains/waznechwile.futurehost.pl/public_html/ustawienia/global.php on line 169
Warning: imagecreatetruecolor() [function.imagecreatetruecolor]: Invalid image dimensions in /home/waznechwile/domains/waznechwile.futurehost.pl/public_html/ustawienia/global.php on line 170
Warning: imagecopyresampled() expects parameter 1 to be resource, boolean given in /home/waznechwile/domains/waznechwile.futurehost.pl/public_html/ustawienia/global.php on line 171
Warning: imagejpeg() expects parameter 1 to be resource, boolean given in /home/waznechwile/domains/waznechwile.futurehost.pl/public_html/ustawienia/global.php on line 172
Warning: imagedestroy() expects parameter 1 to be resource, boolean given in /home/waznechwile/domains/waznechwile.futurehost.pl/public_html/ustawienia/global.php on line 173
Warning: imagedestroy() expects parameter 1 to be resource, boolean given in /home/waznechwile/domains/waznechwile.futurehost.pl/public_html/ustawienia/global.php on line 174
Warning: Cannot modify header information - headers already sent by (output started at /home/waznechwile/domains/waznechwile.futurehost.pl/public_html/ustawienia/global.php:169) in /home/waznechwile/domains/waznechwile.futurehost.pl/public_html/admin/galeria.php on line 39
Wywala mi taki błędy, Oto kod php
function zmiana_rozmiaru($kat,$file,$width_min,$height_min) { $min = '..'.$kat.'min/'.$file ; $foto = 'http://www.waznechwile.futurehost.pl'.$kat.$file; $width = $check[0]; $height = $check[1]; if($width > $height) { $factor = $width/$height; $x_scale = $width_min; } else { $factor = $height/$width; $y_scale = $height_min; } $im = ImageCreateFromJpeg($foto); $thumb = ImageCreateTrueColor($x_scale,$y_scale); ImageCopyResampled($thumb, $im, 0, 0, 0, 0, $x_scale, $y_scale, $width, $height); ImageJPEG($thumb, $min , 80); imagedestroy($im); imagedestroy($thumb); } } function gal($kat,$scierzka) { $i=0; $opis = '<div id="gallery">' ; if($file != '.' && $file != '..') { zmiana_rozmiaru($scierzka,$file,100,150) ; $org = 'http://waznechwile.futurehost.pl'.$scierzka.$file ; $min = 'http://waznechwile.futurehost.pl'.$scierzka.'min/'.$file ; $opis .= '<div class="pic"><a href="'.$org.'" title="'.$file.'"> <img src="'.$min.'" alt="'.$file.'" /></a></div>'; }} $opis .= '</div>' ; $zwrot[0] = $i ; $zwrot[1] = $opis ; return $zwrot ; }
$i = gal(ustaw_katalog(),$_SESSION['dir']) ;