IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

JavaScript Discussion :

Script upload de fichiers photos


Sujet :

JavaScript

  1. #1
    Nouveau Candidat au Club
    Inscrit en
    Janvier 2009
    Messages
    4
    Détails du profil
    Informations forums :
    Inscription : Janvier 2009
    Messages : 4
    Points : 1
    Points
    1
    Par défaut Script upload de fichiers photos
    Bonjour a tous voila je voulais savoir si quelqu'un pourra m'aider sur un script que j'avais fait faire ?

    Voila mon problème :

    Le script fonctionnait très bien , quand je cliquai sur "Sélectionnez vos images" une fenêtre s'ouvrai et je pouvais sélectionnez plusieurs photos a uploadé.

    Et depuis deux ou trois jours Macromedia a fait des mises a jour et depuis se moment la je ne peux plus uploader d'image, car au moment ou je clic sur le bouton "Sélectionnez vos images" plus rien ne se passe ...

    Donc, j'ai essayé de contacter la personne qui a fait le script , mais je croie qu’il a disparu de la circulation

    Alors si quelqu'un pourrai m'aider a résoudre se problème ou me dire ou aller pour trouver quelqu'un sa manderai vraiment

    Merci de votre aide
    Amicalement

  2. #2
    Modérateur
    Avatar de sabotage
    Homme Profil pro
    Inscrit en
    Juillet 2005
    Messages
    29 208
    Détails du profil
    Informations personnelles :
    Sexe : Homme

    Informations forums :
    Inscription : Juillet 2005
    Messages : 29 208
    Points : 44 155
    Points
    44 155
    Par défaut
    Bonjour,

    Pourrais-tu nous montrer le script ?

  3. #3
    Rédacteur/Modérateur

    Avatar de SpaceFrog
    Homme Profil pro
    Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Inscrit en
    Mars 2002
    Messages
    39 644
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 74
    Localisation : Royaume-Uni

    Informations professionnelles :
    Activité : Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Secteur : Industrie

    Informations forums :
    Inscription : Mars 2002
    Messages : 39 644
    Points : 66 671
    Points
    66 671
    Billets dans le blog
    1
    Par défaut
    tout dépend de ce que tu fais ensuite des images mais fckeditor dispose d'un module d'upload intégré ...

    sinon je préssent que c'est plutot un problème php que javascript ...

  4. #4
    Expert confirmé
    Avatar de le_chomeur
    Profil pro
    Développeur informatique
    Inscrit en
    Février 2006
    Messages
    3 653
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Février 2006
    Messages : 3 653
    Points : 4 835
    Points
    4 835
    Par défaut
    je me permet de faire la promo d'un script d'upload TRES simple d'utilisation et a mettre en place, je pense qu'il corespondra a tes besoins :

    http://www.nasuploader.com/

    en javascript / flash / php

  5. #5
    Nouveau Candidat au Club
    Inscrit en
    Janvier 2009
    Messages
    4
    Détails du profil
    Informations forums :
    Inscription : Janvier 2009
    Messages : 4
    Points : 1
    Points
    1
    Par défaut
    Citation Envoyé par sabotage Voir le message
    Bonjour,

    Pourrais-tu nous montrer le script ?
    Alors je suis pas très doué donc je te montre le code du fichier index et le upload

    index.php

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    <?php
            session_start();
            $_SESSION["file_info"] = array();
            
            $sect = "0";
            $title = "S&eacute;lectionnez les images";      
            require("includes/header.php");
     
    ?>
    <script type="text/javascript" src="swfupload/swfupload.js"></script>
    <script type="text/javascript" src="js/handlers.js"></script>
    <script type="text/javascript">
    	var swfu;
    	window.onload = function () {
    		swfu = new SWFUpload({
    			// Backend Settings
    			upload_url: "../upload.php",	// Relative to the SWF file
    			post_params: {"PHPSESSID": "<?php echo session_id(); ?>"},
     
    			// File Upload Settings
    			file_size_limit : "2048",	// 2MB
    			file_types : "*.jpg",
    			file_types_description : "JPG Images",
    			file_upload_limit : "<?php echo $conf['max_images']; ?>",
     
    			// Event Handler Settings - these functions as defined in Handlers.js
    			//  The handlers are not part of SWFUpload but are part of my website and control how
    			//  my website reacts to the SWFUpload events.
    			file_queue_error_handler : fileQueueError,
    			file_dialog_complete_handler : fileDialogComplete,
    			upload_progress_handler : uploadProgress,
    			upload_error_handler : uploadError,
    			upload_success_handler : uploadSuccess,
    			upload_complete_handler : uploadComplete,
     
    			// Flash Settings
    			flash_url : "swfupload/swfupload_f9.swf",	// Relative to this file
     
    			custom_settings : {
    				upload_target : "divFileProgressContainer",
    				session_id: "<?php echo session_id(); ?>"
    			},
     
    			// Debug Settings
    			debug: false
    		});
    	}
    </script>
     
     
    <div style="margin: 0px 10px;">
       <div>
    			<form>
    				<button id="btnBrowse" type="button" style="padding: 5px;" onclick="swfu.selectFiles(); this.blur();"><img src="images/page_white_add.png" style="padding-right: 3px; vertical-align: bottom;"> S&eacute;lectionnez les images <span style="font-size: 7pt;">(2 MB Max)</span></button>
                    <div id="clear" style="display: none;"><input type="button" name="clearButton" id="clearButton" value="Clear Finished" onclick="window.location.reload()"/></div>
    			</form>
    	</div>
       <div id="divFileProgressContainer" style="height: 75px;"></div>
       <div id="thumbnails"></div>
       <div id="links" style="clear: both; margin-top: 50px;"></div>
    </div>
     
     
    <?php
            require("includes/footer.php");
    ?>

    Et Upload

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    <?php
            /* Note: This thumbnail creation script requires the GD PHP Extension.  
                    If GD is not installed correctly PHP does not render this page correctly
                    and SWFUpload will get "stuck" never calling uploadSuccess or uploadError
             */
     
            // Get the session Id passed from SWFUpload. We have to do this to work-around the Flash Player Cookie Bug
            if (isset($_POST["PHPSESSID"])) {
                    session_id($_POST["PHPSESSID"]);
            }
     
            session_start();
     
            // Check the upload
            if (!isset($_FILES["Filedata"]) || !is_uploaded_file($_FILES["Filedata"]["tmp_name"]) || $_FILES["Filedata"]["error"] != 0) {
                    header("HTTP/1.1 500 Internal Server Error");
                    echo "invalid upload";
                    exit(0);
            }
     
            // Get the image and create a thumbnail
            $img = @imagecreatefromjpeg($_FILES["Filedata"]["tmp_name"]);
            if (!$img) {
                    header("HTTP/1.1 500 Internal Server Error");
                    echo "could not create image handle";
                    exit(0);
            }
            
            //Upload
            
            require("includes/class.php");
            $A = new CImage;
            
            $time = time();
            
            mysql_query("INSERT INTO `imageids` (`state`, `date`) VALUES('false', '$time')");
            $id = mysql_insert_id();
            
            $image_name = $id."-".basename($_FILES["Filedata"]["name"]);
            
            mysql_query("UPDATE `imageids` SET `state` = 'true' WHERE `id` = '$id'");
            $old = $time - 15 * 60;
            mysql_query("DELETE FROM `imageids` WHERE `date` < '$old' AND `state` = 'false'");
                                                    
            $patterns[0] = '/ /';
            $patterns[1] = '/\'/';
            $patterns[2] = '/\"/';
            $patterns[3] = '/\+/';
            $patterns[4] = '/\-/';
            $replacements[0] = '-';
            $replacements[1] = '-';
            $replacements[2] = '-';
            $replacements[3] = '-';
            $replacements[4] = '-';
            $image_name = preg_replace($patterns, $replacements, $image_name);
            
            move_uploaded_file($_FILES["Filedata"]["tmp_name"], "images/uploaded/".$image_name);
     
            
     
            
            //End of upload
            
            $width = imageSX($img);
            $height = imageSY($img);
     
            if (!$width || !$height) {
                    header("HTTP/1.1 500 Internal Server Error");
                    echo "Invalid width or height";
                    exit(0);
            }
     
            // Build the thumbnail
            $target_width = 100;
            $target_height = 133;
            $target_ratio = $target_width / $target_height;
     
            $img_ratio = $width / $height;
     
            if ($target_ratio > $img_ratio) {
                    $new_height = $target_height;
                    $new_width = $img_ratio * $target_height;
            } else {
                    $new_height = $target_width / $img_ratio;
                    $new_width = $target_width;
            }
     
            if ($new_height > $target_height) {
                    $new_height = $target_height;
            }
            if ($new_width > $target_width) {
                    $new_height = $target_width;
            }
            
            
            $conf_query = mysql_query("SELECT * FROM `configuration` WHERE `id` = '1'");
            $conf = mysql_fetch_assoc($conf_query);
                    
            $new_img = ImageCreateTrueColor($new_width, $new_height);
            $color = imagecolorallocate($new_img, hexdec('0x' . $conf['content_color']{0} . $conf['content_color']{1}), hexdec('0x' . $conf['content_color']{2} . $conf['content_color']{3}), hexdec('0x' . $conf['content_color']{4} . $conf['content_color']{5}));
            if (!@imagefilledrectangle($new_img, 0, 0, $new_width-1, $new_height-1, $color)) {      // Fill the image black
                    header("HTTP/1.1 500 Internal Server Error");
                    echo "Could not fill new image";
                    exit(0);
            }
     
            if (!@imagecopyresampled($new_img, $img, 0, 0, 0, 0, $new_width, $new_height, $width, $height)) {
                    header("HTTP/1.0 500 Internal Server Error");
                    echo "Could not resize image";
                    exit(0);
            }
     
            if (!isset($_SESSION["file_info"])) {
                    $_SESSION["file_info"] = array();
            }
     
            // Use a output buffering to load the image into a variable
            ob_start();
            imagejpeg($new_img);
            $imagevariable = ob_get_contents();
            ob_end_clean();
     
            $file_id = md5($_FILES["Filedata"]["tmp_name"] + rand()*100000);
            
            //upload the thumb
            
            $image_name = $id."-".basename($_FILES["Filedata"]["name"]);
            
            $patterns[0] = '/ /';
            $patterns[1] = '/\'/';
            $patterns[2] = '/\"/';
            $patterns[3] = '/\+/';
            $patterns[4] = '/\-/';
            $replacements[0] = '-';
            $replacements[1] = '-';
            $replacements[2] = '-';
            $replacements[3] = '-';
            $replacements[4] = '-';
            $image_name = preg_replace($patterns, $replacements, $image_name);
            
            move_uploaded_file($new_img, "images/thumbs/".$image_name);
            $myFile = "images/thumbs/".$image_name;
            $fh = fopen($myFile, 'w') or die("can't open file");
            fwrite($fh, $imagevariable);
            fclose($fh);
            
            //end of upload the thumb
            
            $_SESSION["file_info"][$file_id] = $imagevariable;
            
            $time = time();
            
            @mysql_query("INSERT INTO `images` (`image`, `date`) VALUES('$image_name', '$time')");
            $image_id = mysql_insert_id();
            
            if ($_SESSION['logged'] == "true")
            {
                    $session_id = session_id();
                    $query = mysql_query("SELECT * FROM `gallery` WHERE `user_id` = '$_SESSION[user_id]' AND `session_id` = '$session_id' LIMIT 1");
                    if (mysql_num_rows($query) > 0)
                    {
                            $row = mysql_fetch_assoc($query);
                            mysql_query("UPDATE `gallery` SET `images` = CONCAT(`images`, ',$image_id') WHERE `id` = '$row[id]' LIMIT 1");
                            $gallery_id = $row['id'];
                            mysql_query("UPDATE `images` SET `gallery_id` = '$gallery_id' WHERE `id` = '$image_id' LIMIT 1");
                    }
                    else
                    {
                            mysql_query("INSERT INTO `gallery` (`images`, `user_id`, `session_id`) VALUES ('$image_id', '$_SESSION[user_id]', '$session_id')");
                            $gallery_id = mysql_insert_id();
                            mysql_query("UPDATE `images` SET `gallery_id` = '$gallery_id' WHERE `id` = '$image_id' LIMIT 1");
                    }
            }
            else
            {
                    $session_id = session_id();
                    $query = mysql_query("SELECT * FROM `gallery` WHERE `session_id` = '$session_id' LIMIT 1");
                    if (mysql_num_rows($query) > 0)
                    {
                            $row = mysql_fetch_assoc($query);
                            mysql_query("UPDATE `gallery` SET `images` = CONCAT(`images`, ',$image_id') WHERE `id` = '$row[id]' LIMIT 1");
                            $gallery_id = $row['id'];
                            mysql_query("UPDATE `images` SET `gallery_id` = '$gallery_id' WHERE `id` = '$image_id' LIMIT 1");
                    }
                    else
                    {
                            $session_id = session_id();
                            mysql_query("INSERT INTO `gallery` (`images`, `session_id`) VALUES ('$image_id', '$session_id')");
                            $gallery_id = mysql_insert_id();
                            mysql_query("UPDATE `images` SET `gallery_id` = '$gallery_id' WHERE `id` = '$image_id' LIMIT 1");
                    }
            }
            
            
            echo $file_id// Return the file id to the script
    ?>

  6. #6
    Nouveau Candidat au Club
    Inscrit en
    Janvier 2009
    Messages
    4
    Détails du profil
    Informations forums :
    Inscription : Janvier 2009
    Messages : 4
    Points : 1
    Points
    1

  7. #7
    Nouveau Candidat au Club
    Inscrit en
    Janvier 2009
    Messages
    4
    Détails du profil
    Informations forums :
    Inscription : Janvier 2009
    Messages : 4
    Points : 1
    Points
    1
    Par défaut
    Citation Envoyé par le_chomeur Voir le message
    je me permet de faire la promo d'un script d'upload TRES simple d'utilisation et a mettre en place, je pense qu'il corespondra a tes besoins :

    http://www.nasuploader.com/

    en javascript / flash / php
    Merci pour le lien mais je préfère garder se scripts, si j'arrive bien sur a trouver le problème

Discussions similaires

  1. Script Upload problème d'emplacement du fichier uploadé
    Par Phoenix0007 dans le forum Serveurs (Apache, IIS,...)
    Réponses: 7
    Dernier message: 09/10/2007, 20h52
  2. Réponses: 2
    Dernier message: 14/08/2007, 16h20
  3. exécution d'un script d'upload de fichier coté client
    Par cyril911 dans le forum EDI, CMS, Outils, Scripts et API
    Réponses: 4
    Dernier message: 02/04/2007, 19h38
  4. [Upload] script d'upload de fichiers
    Par zais_ethael dans le forum Langage
    Réponses: 5
    Dernier message: 28/09/2006, 00h48
  5. [Upload] Upload de fichier avec un script PHP
    Par largolgd dans le forum Langage
    Réponses: 7
    Dernier message: 23/04/2006, 16h21

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo