Hukija Posted September 18, 2011 Share Posted September 18, 2011 Bonjour, apres mon installation, la boutique fonctionne bien mais pas la partie admin : erreur obtenue ! st['width'], $dest['height']); $white = imagecolorallocate($dest['ressource'], 255, 255, 255); imagecopyresampled($dest['ressource'], $src['ressource'], 0, 0, $dest['x'], $dest['y'], $dest['width'], $dest['height'], $dest['width'], $dest['height']); imagecolortransparent($dest['ressource'], $white); $return = returnDestImage($fileType, $dest['ressource'], $destFile); return ($return); } function createSrcImage($type, $filename) { switch ($type) { case 1: return imagecreatefromgif($filename); break; case 3: return imagecreatefrompng($filename); break; case 2: default: return imagecreatefromjpeg($filename); break; } } function createDestImage($width, $height) { $image = imagecreatetruecolor($width, $height); $white = imagecolorallocate($image, 255, 255, 255); imagefill($image, 0, 0, $white); return $image; } function returnDestImage($type, $ressource, $filename) { $flag = false; switch ($type) { case 'gif': $flag = imagegif($ressource, $filename); break; case 'png': $flag = imagepng($ressource, $filename, (int)Configuration::get('PS_PNG_QUALITY')); break; case 'jpeg': default: $flag = imagejpeg($ressource, $filename, (int)Configuration::get('PS_JPEG_QUALITY')); break; } imagedestroy($ressource); @chmod($filename, 0664); return $flag; } /** * Delete product or category image * * @param integer $id_item Product or category id * @param integer $id_image Image id * TODO This function will soon be deprecated. */ function deleteImage($id_item, $id_image = NULL) { // Category if (!$id_image) { $path = _PS_CAT_IMG_DIR_; $table = 'category'; if (file_exists(_PS_TMP_IMG_DIR_.$table.'_'.$id_item.'.jpg')) unlink(_PS_TMP_IMG_DIR_.$table.'_'.$id_item.'.jpg'); if (!$id_image AND file_exists($path.$id_item.'.jpg')) unlink($path.$id_item.'.jpg'); /* Auto-generated images */ $imagesTypes = ImageType::getImagesTypes(); foreach ($imagesTypes AS $k => $imagesType) if (file_exists($path.$id_item.'-'.$imagesType['name'].'.jpg')) unlink($path.$id_item.'-'.$imagesType['name'].'.jpg'); }else // Product { $path = _PS_PROD_IMG_DIR_; $table = 'product'; $image = new Image($id_image); $image->id_product = $id_item; if (file_exists($path.$image->getExistingImgPath().'.jpg')) unlink($path.$image->getExistingImgPath().'.jpg'); /* Auto-generated images */ $imagesTypes = ImageType::getImagesTypes(); foreach ($imagesTypes AS $k => $imagesType) if (file_exists($path.$image->getExistingImgPath().'-'.$imagesType['name'].'.jpg')) unlink($path.$image->getExistingImgPath().'-'.$imagesType['name'].'.jpg'); } /* BO "mini" image */ if (file_exists(_PS_TMP_IMG_DIR_.$table.'_mini_'.$id_item.'.jpg')) unlink(_PS_TMP_IMG_DIR_.$table.'_mini_'.$id_item.'.jpg'); return true; } Autre problème : http://shop.domaine.com/ => Me met http://shop.domaine.400.php/ Ps je tourne sous ubuntu Plesk 10 merci de votre aide ! Link to comment Share on other sites More sharing options...
Hukija Posted September 18, 2011 Author Share Posted September 18, 2011 UP Link to comment Share on other sites More sharing options...
Oron Posted September 18, 2011 Share Posted September 18, 2011 Bonjour L'installation que vous avez faite est-elle une installation neuve ou une mise à jour ? Ce qui apparait est la source de la page, sur quel page c'est afficher ? Vous avez essayer avec un autre navigateur ? Vous êtes sur un serveur dédié ? vu que vous précisez ubuntu plesk 10 ? Link to comment Share on other sites More sharing options...
Hukija Posted September 18, 2011 Author Share Posted September 18, 2011 Alors l'erreur c'est sur la page d’administration ( de base : nomdomaine.com/admin) est il me marque le truck & sinon je suis sur Dédier ubuntu Plesk 10 J'ai essayer avec d'autre logiciel Link to comment Share on other sites More sharing options...
Oron Posted September 19, 2011 Share Posted September 19, 2011 Bonjour Avez-vous essayer une nouvelle installation en supprimant tous les fichiers et la base de donnée (faire une copie de sauvegarde) ? Vous dites : j'ai essayer avec d'autre logiciel c'est a dire qu'appelez vous d'autre logiciel ? est-ce que votre boutique est en production ? Quel version de prestashop ? Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now