Ok sinon et ben impec je vois que ça roule ...
Je vous remercie encore toi et vdigital pour votre aide et excusez moi encore !
Mike !
C'est normal que tu puisse pas les ouvrir puisqu'il te faut word. Dans le meilleur des cas il y est et ça le lance dans le pire des cas ça le télécharge. Mais si c'est le premier cas et que cela marche pas je ne sais pas d'où ça vient... Et d'un autre côté c'est pas plus mal que ça le télécharge, ça évite que tout le monde ouvrent n'importe quoi et soit infecté par des macro-virus.
Ok ça marche seul couac j'ai transférer un fichier en .doc et je ne peux l'ouvrir mais il n'y a rien ?
ça viens de quoi ?
Eps je viens de comprendre en fait on ne peux aps les voir mais les télécharger c'est ça ??
Bon je relis tout ça après je vais chgercher ma fille a l'école ...
Encore merci !!
Au niveau mise en page j'ai gardé et enlevé ce qu'il fallait?
Si tu veux juste modifier les valeurs pour les extensions il faut juste faire ce que tu a fais. Tu peux éventuellement enlever :
// +-----------------------------------------------------------------------+ // | PhpWebGallery - a PHP based picture gallery | // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | // | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net | // +-----------------------------------------------------------------------+ // | branch : BSF (Best So Far) // | file : $RCSfile$ // | last update : $Date: 2005-11-08 22:23:20 +0100 (mar, 08 nov 2005) $ // | last modifier : $Author: plg $ // | revision : $Revision: 928 $ // +-----------------------------------------------------------------------+ // | This program is free software; you can redistribute it and/or modify | // | it under the terms of the GNU General Public License as published by | // | the Free Software Foundation | // | | // | This program is distributed in the hope that it will be useful, but | // | WITHOUT ANY WARRANTY; without even the implied warranty of | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | // | General Public License for more details. | // | | // | You should have received a copy of the GNU General Public License | // | along with this program; if not, write to the Free Software | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | // | USA. | // +-----------------------------------------------------------------------+ /** * configuration page * * Set configuration parameters that are not in the table config. In the * application, configuration parameters are considered in the same way * coming from config table or config_default.inc.php. * * It is recommended to let config_default.inc.php as provided and to * overwrite configuration in your local configuration file * config_local.inc.php. See tools/config_local.inc.php as an example. * * Why having some parameters in config table and others in * config_*.inc.php? Modifying config_*.inc.php is a "hard" task for low * skilled users, they need a GUI for this : admin/configuration. But only * parameters that might be modified by low skilled users are in config * table, other parameters are in config_*.inc.php */
Sinon je met tout ça dans include et hop ça devrais tourner ?
oui
Une autre question je viens de trouver un fichier nommé config_local.inc.php dans le dossier tools, il me semble
avoir lu en anglais que je pouvais m'en servir pour mettrre mes infos dedans et ensuite le transférer dans le
dossier include.... C'est possible ? (je suis pas une flêche en anglais)...!!
C'est un modèle.
Oupps exact j'ai mis une virgule de trop a la fin !!!!Bien vu Flip Flip, sinon c'est tout ok ce que j'ai écrit ??
Au niveau mise en page j'ai gardé et enlevé ce qu'il fallait?
Sinon je met tout ça dans include et hop ça devrais tourner ?
MIKE !!
Une autre question je viens de trouver un fichier nommé config_local.inc.php dans le dossier tools, il me semble
avoir lu en anglais que je pouvais m'en servir pour mettrre mes infos dedans et ensuite le transférer dans le
dossier include.... C'est possible ? (je suis pas une flêche en anglais)...!!
Si une erreur, regarde bien la structure d'origine :
$conf['file_ext'] = array('jpg','JPG','png','PNG','gif','GIF','mpg','zip', 'avi','mp3','ogg');
et celle que tu propose :
$conf['file_ext'] = array('jpg','JPG','png','PNG','gif','GIF','mpg','zip', 'avi','mp3','ogg','doc','DOC','xls','XLS',);
Attention la différence est subtile et ne concerne pas les extensions rajoutées mais un certain caractère en trop...
Autre remarque je rajouterais les extensions en majuscule pour tout les formats.
$conf['file_ext'] = array('jpg','JPG','png','PNG','gif','GIF','mpg','MPG','zip','ZIP', 'avi','AVI','mp3','MP3','ogg','OGG','doc','DOC','xls','XLS');
Bonjour, après avoir suivi les conseils de VDIGITAL et de FLIP FLIP, je viens de créer un fichier nommé
config_local.inc.php avec ce contenu, afin de pouvoir rajouter dans mon site des fichiers texte (.xls et .doc).
Je voulais juste avoir votre avis avant de le mettre sur le site via FTP....(si je ne me trompe pas encore!!).
<?php // +-----------------------------------------------------------------------+ // | PhpWebGallery - a PHP based picture gallery | // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | // | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net | // +-----------------------------------------------------------------------+ // | branch : BSF (Best So Far) // | file : $RCSfile$ // | last update : $Date: 2005-11-08 22:23:20 +0100 (mar, 08 nov 2005) $ // | last modifier : $Author: plg $ // | revision : $Revision: 928 $ // +-----------------------------------------------------------------------+ // | This program is free software; you can redistribute it and/or modify | // | it under the terms of the GNU General Public License as published by | // | the Free Software Foundation | // | | // | This program is distributed in the hope that it will be useful, but | // | WITHOUT ANY WARRANTY; without even the implied warranty of | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | // | General Public License for more details. | // | | // | You should have received a copy of the GNU General Public License | // | along with this program; if not, write to the Free Software | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | // | USA. | // +-----------------------------------------------------------------------+ /** * configuration page * * Set configuration parameters that are not in the table config. In the * application, configuration parameters are considered in the same way * coming from config table or config_default.inc.php. * * It is recommended to let config_default.inc.php as provided and to * overwrite configuration in your local configuration file * config_local.inc.php. See tools/config_local.inc.php as an example. * * Why having some parameters in config table and others in * config_*.inc.php? Modifying config_*.inc.php is a "hard" task for low * skilled users, they need a GUI for this : admin/configuration. But only * parameters that might be modified by low skilled users are in config * table, other parameters are in config_*.inc.php */ // file_ext : file extensions (case sensitive) authorized $conf['file_ext'] = array('jpg','JPG','png','PNG','gif','GIF','mpg','zip', 'avi','mp3','ogg','doc','DOC','xls','XLS',); ?>
Merci de m edire si je ne me suis pas planté...!!
MIKE.