enramos Posted February 5, 2015 Share Posted February 5, 2015 Estoy intentando que PrestaShop admita formatos de archivo PDF en los campos de personalización del producto de tipo archivos (por defecto solo admite formatos tipo imágenes).. ¿Alguna ayuda/sugerencia?. Link to comment Share on other sites More sharing options...
tuk66 Posted February 5, 2015 Share Posted February 5, 2015 Estos son los lugares en código para cambiarlo. El paso final es en el método isRealImage. Here are the places in code to change it. The final step is in the isRealImage method. /controllers/front/ProductController.phppictureUpload()if ($error = ImageManager::validateUpload($file, (int)Configuration::get('PS_PRODUCT_PICTURE_MAX_SIZE'))) $this->errors[] = $error; /classess/ImageManager.phppictureUpload()if (!ImageManager::isRealImage($file['tmp_name'], $file['type']) || !ImageManager::isCorrectImageFileExt($file['name'], $types))return Tools::displayError('Image format not recognized, allowed formats are: .gif, .jpg, .png'); /classess/ImageManager.phpisRealImage() Link to comment Share on other sites More sharing options...
Recommended Posts