Bonjour
Après mise à jour automatique, j'ai le message d'erreur suivant
Notice: Undefined index: high_filesize in \galerie\include\category_cats.inc.php on line 351
Merci de votre aide
Cordialement
Hors ligne
Bonjour marcophilie56,
Je ne reproduis pas le soucis, et pourtant j'ai testé de mettre une miniature représentante qui n'a pas de haute définition associée.
Peux tu vérifier que tu as bien la colonne high_filesize dans la table piwigo_images de ta base de données ?
Hors ligne
Bonjour
J'ai bien le champ filesize et non high_filesize dans la table images
Par contre, je crois me rappeler que j'ai mis un format TEXT car j'utilise ce champ pour trier mes images
Le problème vient peut-être de là
Merci de votre aide
Cordialement
Dernière modification par marcophilie56 (2011-11-08 10:36:13)
Hors ligne
La colonne piwigo_images.high_filesize a été ajoutée dans Piwigo 1.7.0 (alors nommé PhpWebGallery). Ce n'est pas du tout normal de ne pas l'avoir :-/
Hors ligne
Voici la structure de ma table images
CREATE TABLE IF NOT EXISTS `img_images` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`file` varchar(255) NOT NULL,
`date_available` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`date_creation` datetime DEFAULT NULL,
`tn_ext` varchar(4) DEFAULT '',
`name` varchar(255) DEFAULT NULL,
`comment` text,
`author` varchar(255) DEFAULT NULL,
`hit` int(10) unsigned NOT NULL DEFAULT '0',
`filesize` text,
`width` smallint(9) unsigned DEFAULT NULL,
`height` smallint(9) unsigned DEFAULT NULL,
`representative_ext` varchar(4) DEFAULT NULL,
`date_metadata_update` date DEFAULT NULL,
`rating_score` float(5,2) unsigned DEFAULT NULL,
`has_high` enum('true') DEFAULT NULL,
`path` varchar(255) NOT NULL DEFAULT '',
`storage_category_id` smallint(5) unsigned DEFAULT NULL,
`level` tinyint(3) unsigned NOT NULL DEFAULT '0',
`md5sum` char(32) DEFAULT NULL,
`added_by` smallint(5) NOT NULL,
`high_width` smallint(9) unsigned DEFAULT NULL,
`high_height` smallint(9) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `images_i2` (`date_available`),
KEY `images_i3` (`rating_score`),
KEY `images_i4` (`hit`),
KEY `images_i5` (`date_creation`),
KEY `images_i1` (`storage_category_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=18151 ;
Merci de me dire comment la mettre en version 2.3.1
Cordialement
Hors ligne