Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
function SetImgSize($img, $width, $height)
{
//получаем тип файла
if(ereg("jpg$", $img)) $srcImage = ImageCreateFromJPEG($img);
if(ereg("JPG$", $img)) $srcImage = ImageCreateFromJPEG($img);
if(ereg("jpeg$", $img)) $srcImage = ImageCreateFromJPEG($img);
if(ereg("JPEG$", $img)) $srcImage = ImageCreateFromJPEG($img);
if(ereg("gif$", $img)) $srcImage = ImageCreateFromGIF($img);
if(ereg("GIF$", $img)) $srcImage = ImageCreateFromGIF($img);
$srcWidth = ImageSX($srcImage);
$srcHeight = ImageSY($srcImage);
if(($width < $srcWidth) || ($height < $srcHeight))
{
$ratioWidth = $srcWidth/$width;
$ratioHeight = $srcHeight/$height;
if($ratioWidth < $ratioHeight)
{
$destWidth = $srcWidth/$ratioHeight;
$destHeight = $height;
}
else
{
$destWidth = $width;
$destHeight = $srcHeight/$ratioWidth;
}
//вот где собака порылась - везде стоит функция ImageCreate(...)
$resImage = ImageCreateTrueColor($destWidth, $destHeight);
ImageCopyResampled($resImage, $srcImage, 0, 0, 0, 0, $destWidth, $destHeight, $srcWidth, $srcHeight);
unlink($img);
if(ereg("jpg$", $img)) ImageJPEG($resImage, $img, 100);
if(ereg("JPG$", $img)) ImageJPEG($resImage, $img, 100);
if(ereg("jpeg$", $img)) ImageJPEG($resImage, $img, 100);
if(ereg("JPEG$", $img)) ImageJPEG($resImage, $img, 100);
if(ereg("gif$", $img)) ImageGIF($resImage, $img);
if(ereg("GIF$", $img)) ImageGIF($resImage, $img);
ImageDestroy($srcImage);
ImageDestroy($resImage);
}
}
<tr>
<td {if $main_content_template == "feedback.tpl.html"}
bgcolor="#FFD7OO"{/if}><table width="100%" border="0"
cellpadding="0" cellspacing="0">
<tr>
<td><a href="index.php?feedback=yes" class=lightmenu>
{$smarty.const.STRING_FEEDBACK}
</a></td>
</tr>
</table></td>
</tr>
{if $main_content_template == "feedback.tpl.html"}
bgcolor="#FFD7OO"{/if}
У меня после этого вообще пропали поля для ввода... В чём может быть проблема?зайди в products.php, найди
include_once($_SERVER['DOCUMENT_ROOT'].'/FCKeditor/fckeditor.php');
замени на:
include_once($_SERVER['DOCUMENT_ROOT'].'/shop/FCKeditor/fckeditor.php');
файл \FCKeditor\fckeditor.php
найди
$this->BasePath = '/FCKeditor/' ;
замени на
$this->BasePath = '/shop/FCKeditor/' ;
наверное ты оперой пользуешься?У меня после этого вообще пропали поля для ввода... В чём может быть проблема?
То, наверное моя, другой не нашел!
Помогите с фильтрами - ну очень нужно!