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

Langage PHP Discussion :

Suppression plugin JQuery File Upload


Sujet :

Langage PHP

  1. #1
    Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Janvier 2012
    Messages
    91
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Service public

    Informations forums :
    Inscription : Janvier 2012
    Messages : 91
    Points : 62
    Points
    62
    Par défaut Suppression plugin JQuery File Upload
    Bonjour à tous,

    Alors voila, j'utilise le plugin JQuety File Upload pour uploader plusieurs images et je voudrais que lors de l'Upload de la photo, le nom de l'image s'insère dans la base de donnée. Jusque la pas de problème. Le problème viens du Bouton "Delete" . C'est lorsque je veux supprimer l'image de la base qu'une erreur "DELETE http://localhost/jQuery-File-Upload-master/fonctions/?file=LogoParis13tt%20%281%29.jpg"
    Je ne comprend pas pourquoi le chemin lors de l'insertion de l'image dans le dossier est le bon et lors de la suppression le mauvais...

    En faite j'ai un peu modifier le code du constructeur pour faire en sorte de récupérer une url via une liste déroulante qui selon le choix va vers tel ou tel dossier.
    Alors dans le formulaire j'ai ajouté ce code
    Code html : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    <select size=1 name="url">
    	<option value=1>Gallerie 1</option>
    	<option value=2>Gallerie 2</option>
    </select>

    Puis ensuite je récupère en POST la valeur :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    if(isset($url))
    {
    	$lien = '/../img/gallerie1/';
    	if($url == 2)
    	{
    		$lien = '/../img/gallerie2/';
    	}
    	$upload_handler = new UploadHandler($lien);
    }
    J'ai donc modifier le constructeur de UploadHandler afin de faire en sorte qu'il prenne en compte une url en parametre et je l'insert dans la ligne 'upload_dir' et 'upload_url' :

    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
     function __construct($url = null, $options = null, $initialize = true, $error_messages = null) {
            $this->options = array(
    			'database' => 'siterencontres',  
    			'host' => 'localhost',  
    			'username' => 'root',  
    			'password' => '',  
                'script_url' => $this->get_full_url().'/',
                'upload_dir' => dirname($_SERVER['SCRIPT_FILENAME']).$url,
                'upload_url' => $this->get_full_url().$url,
                'user_dirs' => false,
                'mkdir_mode' => 0755,
                'param_name' => 'files',
                // Set the following option to 'POST', if your server does not support
                // DELETE requests. This is a parameter sent to the client:
                'delete_type' => 'DELETE',
                'access_control_allow_origin' => '*',
                'access_control_allow_credentials' => false,
                'access_control_allow_methods' => array(
                    'OPTIONS',
                    'HEAD',
                    'GET',
                    'POST',
                    'PUT',
                    'PATCH',
                    'DELETE'
                ),
                'access_control_allow_headers' => array(
                    'Content-Type',
                    'Content-Range',
                    'Content-Disposition'
                ),
                // Enable to provide file downloads via GET requests to the PHP script:
                'download_via_php' => false,
                // Defines which files can be displayed inline when downloaded:
                'inline_file_types' => '/\.(gif|jpe?g|png)$/i',
                // Defines which files (based on their names) are accepted for upload:
                'accept_file_types' => '/.+$/i',
                // The php.ini settings upload_max_filesize and post_max_size
                // take precedence over the following max_file_size setting:
                'max_file_size' => null,
                'min_file_size' => 1,
                // The maximum number of files for the upload directory:
                'max_number_of_files' => null,
                // Image resolution restrictions:
                'max_width' => null,
                'max_height' => null,
                'min_width' => 1,
                'min_height' => 1,
                // Set the following option to false to enable resumable uploads:
                'discard_aborted_uploads' => true,
                // Set to true to rotate images based on EXIF meta data, if available:
                'orient_image' => false,
                'image_versions' => array(
                    // Uncomment the following version to restrict the size of
                    // uploaded images:
                    /*
                    '' => array(
                        'max_width' => 1920,
                        'max_height' => 1200,
                        'jpeg_quality' => 95
                    ),
                    */
                    // Uncomment the following to create medium sized images:
                    /*
                    'medium' => array(
                        'max_width' => 800,
                        'max_height' => 600,
                        'jpeg_quality' => 80
                    ),
                    */
                    'thumbnail' => array(
                        'max_width' => 80,
                        'max_height' => 80
                    )
                )
            );
    Donc tout marche bien, j'ai crée une fonction delete :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    function delete_img($delimg)  
    	{  
    		$delete_from_db = $this->query("DELETE FROM images WHERE url = '$delimg'") or die(mysql_error());  
    		return $delete_from_db;  
    	}
    et enfin la fonction qui permet d’appeler la fonction delete_img :
    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
     public function delete($print_response = true) 
    	{
            $file_name = $this->get_file_name_param();
            $file_path = $this->get_upload_path($file_name);
            $success = is_file($file_path) && $file_name[0] !== '.' && unlink($file_path);
            if ($success) 
    		{
    			$this->delete_img($file_name);
                foreach($this->options['image_versions'] as $version => $options) {
                    if (!empty($version)) {
                        $file = $this->get_upload_path($file_name, $version);
                        if (is_file($file)) {
                            unlink($file);
                        }
                    }
                }
            }
            return $this->generate_response(array('success' => $success), $print_response);
        }
    Voila donc tout ce passe bien lors de l'insertion(dans la base et dans le bon dossier) mais impossible de supprimer..

    Si vous voulez plus de code demandé moi.

    Merci pour votre aide.

  2. #2
    Membre émérite
    Avatar de gene69
    Profil pro
    Inscrit en
    Janvier 2006
    Messages
    1 769
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations professionnelles :
    Secteur : High Tech - Produits et services télécom et Internet

    Informations forums :
    Inscription : Janvier 2006
    Messages : 1 769
    Points : 2 446
    Points
    2 446
    Par défaut
    tu fais bien des var_dump() de toutes les variables?
    si $success est à false tu ne vois rien...
    PHP fait nativement la validation d'adresse électronique .
    Celui qui a inventé mysql_connect(...) or die() est déjà mort plusieurs fois.

    Utilisez le bouton résolu!

  3. #3
    Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Janvier 2012
    Messages
    91
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Service public

    Informations forums :
    Inscription : Janvier 2012
    Messages : 91
    Points : 62
    Points
    62
    Par défaut
    Non, je ne fais pas de var_dump, je récupère juste le nom du fichier avec la fonction get_file_name_param(). Après je vous avouerez que j'ai juste récupérer le plugin et fait quelques modifications à la limite de mes connaissances...

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
     protected function get_file_name_param() {
            return isset($_GET['file']) ? basename(stripslashes($_GET['file'])) : null;
        }
    Puis récupère le chemin avec la fonction get_upload_path($file_name)

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
     protected function get_upload_path($file_name = null, $version = null) {
            $file_name = $file_name ? $file_name : '';
            $version_path = empty($version) ? '' : $version.'/';
            return $this->options['upload_dir'].$this->get_user_path()
                .$version_path.$file_name;
        }
    En faite tout ce code était déjà inclu dans le plugin j'ai juste fait quelque modification pour changé l'url et ajouter/supprimer le nom de l'image dans la base.

    Les seul modifications que j'ai faites sont celles que j'ai citées dans mon premier post. Sinon voila le code qui été à la base

    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
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
    756
    757
    758
    759
    760
    761
    762
    763
    764
    765
     
     
    class UploadHandler
    {
        protected $options;
        // PHP File Upload error message codes:
        // http://php.net/manual/en/features.file-upload.errors.php
        protected $error_messages = array(
            1 => 'The uploaded file exceeds the upload_max_filesize directive in php.ini',
            2 => 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form',
            3 => 'The uploaded file was only partially uploaded',
            4 => 'No file was uploaded',
            6 => 'Missing a temporary folder',
            7 => 'Failed to write file to disk',
            8 => 'A PHP extension stopped the file upload',
            'post_max_size' => 'The uploaded file exceeds the post_max_size directive in php.ini',
            'max_file_size' => 'File is too big',
            'min_file_size' => 'File is too small',
            'accept_file_types' => 'Filetype not allowed',
            'max_number_of_files' => 'Maximum number of files exceeded',
            'max_width' => 'Image exceeds maximum width',
            'min_width' => 'Image requires a minimum width',
            'max_height' => 'Image exceeds maximum height',
            'min_height' => 'Image requires a minimum height'
        );
     
        function __construct($options = null, $initialize = true, $error_messages = null) {
            $this->options = array(
                'script_url' => $this->get_full_url().'/',
                'upload_dir' => dirname($_SERVER['SCRIPT_FILENAME']).'/files/',
                'upload_url' => $this->get_full_url().'/files/',
                'user_dirs' => false,
                'mkdir_mode' => 0755,
                'param_name' => 'files',
                // Set the following option to 'POST', if your server does not support
                // DELETE requests. This is a parameter sent to the client:
                'delete_type' => 'DELETE',
                'access_control_allow_origin' => '*',
                'access_control_allow_credentials' => false,
                'access_control_allow_methods' => array(
                    'OPTIONS',
                    'HEAD',
                    'GET',
                    'POST',
                    'PUT',
                    'PATCH',
                    'DELETE'
                ),
                'access_control_allow_headers' => array(
                    'Content-Type',
                    'Content-Range',
                    'Content-Disposition'
                ),
                // Enable to provide file downloads via GET requests to the PHP script:
                'download_via_php' => false,
                // Defines which files can be displayed inline when downloaded:
                'inline_file_types' => '/\.(gif|jpe?g|png)$/i',
                // Defines which files (based on their names) are accepted for upload:
                'accept_file_types' => '/.+$/i',
                // The php.ini settings upload_max_filesize and post_max_size
                // take precedence over the following max_file_size setting:
                'max_file_size' => null,
                'min_file_size' => 1,
                // The maximum number of files for the upload directory:
                'max_number_of_files' => null,
                // Image resolution restrictions:
                'max_width' => null,
                'max_height' => null,
                'min_width' => 1,
                'min_height' => 1,
                // Set the following option to false to enable resumable uploads:
                'discard_aborted_uploads' => true,
                // Set to true to rotate images based on EXIF meta data, if available:
                'orient_image' => false,
                'image_versions' => array(
                    // Uncomment the following version to restrict the size of
                    // uploaded images:
                    /*
                    '' => array(
                        'max_width' => 1920,
                        'max_height' => 1200,
                        'jpeg_quality' => 95
                    ),
                    */
                    // Uncomment the following to create medium sized images:
                    /*
                    'medium' => array(
                        'max_width' => 800,
                        'max_height' => 600,
                        'jpeg_quality' => 80
                    ),
                    */
                    'thumbnail' => array(
                        'max_width' => 80,
                        'max_height' => 80
                    )
                )
            );
            if ($options) {
                $this->options = array_merge($this->options, $options);
            }
            if ($error_messages) {
                $this->error_messages = array_merge($this->error_messages, $error_messages);
            }
            if ($initialize) {
                $this->initialize();
            }
        }
     
        protected function initialize() {
            switch ($_SERVER['REQUEST_METHOD']) {
                case 'OPTIONS':
                case 'HEAD':
                    $this->head();
                    break;
                case 'GET':
                    $this->get();
                    break;
                case 'PATCH':
                case 'PUT':
                case 'POST':
                    $this->post();
                    break;
                case 'DELETE':
                    $this->delete();
                    break;
                default:
                    $this->header('HTTP/1.1 405 Method Not Allowed');
            }
        }
     
        protected function get_full_url() {
            $https = !empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off';
            return
                ($https ? 'https://' : 'http://').
                (!empty($_SERVER['REMOTE_USER']) ? $_SERVER['REMOTE_USER'].'@' : '').
                (isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : ($_SERVER['SERVER_NAME'].
                ($https && $_SERVER['SERVER_PORT'] === 443 ||
                $_SERVER['SERVER_PORT'] === 80 ? '' : ':'.$_SERVER['SERVER_PORT']))).
                substr($_SERVER['SCRIPT_NAME'],0, strrpos($_SERVER['SCRIPT_NAME'], '/'));
        }
     
        protected function get_user_id() {
            @session_start();
            return session_id();
        }
     
        protected function get_user_path() {
            if ($this->options['user_dirs']) {
                return $this->get_user_id().'/';
            }
            return '';
        }
     
        protected function get_upload_path($file_name = null, $version = null) {
            $file_name = $file_name ? $file_name : '';
            $version_path = empty($version) ? '' : $version.'/';
            return $this->options['upload_dir'].$this->get_user_path()
                .$version_path.$file_name;
        }
     
        protected function get_query_separator($url) {
            return strpos($url, '?') === false ? '?' : '&';
        }
     
        protected function get_download_url($file_name, $version = null) {
            if ($this->options['download_via_php']) {
                $url = $this->options['script_url']
                    .$this->get_query_separator($this->options['script_url'])
                    .'file='.rawurlencode($file_name);
                if ($version) {
                    $url .= '&version='.rawurlencode($version);
                }
                return $url.'&download=1';
            }
            $version_path = empty($version) ? '' : rawurlencode($version).'/';
            return $this->options['upload_url'].$this->get_user_path()
                .$version_path.rawurlencode($file_name);
        }
     
        protected function set_file_delete_properties($file) {
            $file->delete_url = $this->options['script_url']
                .$this->get_query_separator($this->options['script_url'])
                .'file='.rawurlencode($file->name);
            $file->delete_type = $this->options['delete_type'];
            if ($file->delete_type !== 'DELETE') {
                $file->delete_url .= '&_method=DELETE';
            }
            if ($this->options['access_control_allow_credentials']) {
                $file->delete_with_credentials = true;
            }
        }
     
        // Fix for overflowing signed 32 bit integers,
        // works for sizes up to 2^32-1 bytes (4 GiB - 1):
        protected function fix_integer_overflow($size) {
            if ($size < 0) {
                $size += 2.0 * (PHP_INT_MAX + 1);
            }
            return $size;
        }
     
        protected function get_file_size($file_path, $clear_stat_cache = false) {
            if ($clear_stat_cache) {
                clearstatcache(true, $file_path);
            }
            return $this->fix_integer_overflow(filesize($file_path));
     
        }
     
        protected function is_valid_file_object($file_name) {
            $file_path = $this->get_upload_path($file_name);
            if (is_file($file_path) && $file_name[0] !== '.') {
                return true;
            }
            return false;
        }
     
        protected function get_file_object($file_name) {
            if ($this->is_valid_file_object($file_name)) {
                $file = new stdClass();
                $file->name = $file_name;
                $file->size = $this->get_file_size(
                    $this->get_upload_path($file_name)
                );
                $file->url = $this->get_download_url($file->name);
                foreach($this->options['image_versions'] as $version => $options) {
                    if (!empty($version)) {
                        if (is_file($this->get_upload_path($file_name, $version))) {
                            $file->{$version.'_url'} = $this->get_download_url(
                                $file->name,
                                $version
                            );
                        }
                    }
                }
                $this->set_file_delete_properties($file);
                return $file;
            }
            return null;
        }
     
        protected function get_file_objects($iteration_method = 'get_file_object') {
            $upload_dir = $this->get_upload_path();
            if (!is_dir($upload_dir)) {
                return array();
            }
            return array_values(array_filter(array_map(
                array($this, $iteration_method),
                scandir($upload_dir)
            )));
        }
     
        protected function count_file_objects() {
            return count($this->get_file_objects('is_valid_file_object'));
        }
     
        protected function create_scaled_image($file_name, $version, $options) {
            $file_path = $this->get_upload_path($file_name);
            if (!empty($version)) {
                $version_dir = $this->get_upload_path(null, $version);
                if (!is_dir($version_dir)) {
                    mkdir($version_dir, $this->options['mkdir_mode'], true);
                }
                $new_file_path = $version_dir.'/'.$file_name;
            } else {
                $new_file_path = $file_path;
            }
            list($img_width, $img_height) = @getimagesize($file_path);
            if (!$img_width || !$img_height) {
                return false;
            }
            $scale = min(
                $options['max_width'] / $img_width,
                $options['max_height'] / $img_height
            );
            if ($scale >= 1) {
                if ($file_path !== $new_file_path) {
                    return copy($file_path, $new_file_path);
                }
                return true;
            }
            $new_width = $img_width * $scale;
            $new_height = $img_height * $scale;
            $new_img = @imagecreatetruecolor($new_width, $new_height);
            switch (strtolower(substr(strrchr($file_name, '.'), 1))) {
                case 'jpg':
                case 'jpeg':
                    $src_img = @imagecreatefromjpeg($file_path);
                    $write_image = 'imagejpeg';
                    $image_quality = isset($options['jpeg_quality']) ?
                        $options['jpeg_quality'] : 75;
                    break;
                case 'gif':
                    @imagecolortransparent($new_img, @imagecolorallocate($new_img, 0, 0, 0));
                    $src_img = @imagecreatefromgif($file_path);
                    $write_image = 'imagegif';
                    $image_quality = null;
                    break;
                case 'png':
                    @imagecolortransparent($new_img, @imagecolorallocate($new_img, 0, 0, 0));
                    @imagealphablending($new_img, false);
                    @imagesavealpha($new_img, true);
                    $src_img = @imagecreatefrompng($file_path);
                    $write_image = 'imagepng';
                    $image_quality = isset($options['png_quality']) ?
                        $options['png_quality'] : 9;
                    break;
                default:
                    $src_img = null;
            }
            $success = $src_img && @imagecopyresampled(
                $new_img,
                $src_img,
                0, 0, 0, 0,
                $new_width,
                $new_height,
                $img_width,
                $img_height
            ) && $write_image($new_img, $new_file_path, $image_quality);
            // Free up memory (imagedestroy does not delete files):
            @imagedestroy($src_img);
            @imagedestroy($new_img);
            return $success;
        }
     
        protected function get_error_message($error) {
            return array_key_exists($error, $this->error_messages) ?
                $this->error_messages[$error] : $error;
        }
     
        function get_config_bytes($val) {
            $val = trim($val);
            $last = strtolower($val[strlen($val)-1]);
            switch($last) {
                case 'g':
                    $val *= 1024;
                case 'm':
                    $val *= 1024;
                case 'k':
                    $val *= 1024;
            }
            return $this->fix_integer_overflow($val);
        }
     
        protected function validate($uploaded_file, $file, $error, $index) {
            if ($error) {
                $file->error = $this->get_error_message($error);
                return false;
            }
            $content_length = $this->fix_integer_overflow(intval($_SERVER['CONTENT_LENGTH']));
            $post_max_size = $this->get_config_bytes(ini_get('post_max_size'));
            if ($post_max_size && ($content_length > $post_max_size)) {
                $file->error = $this->get_error_message('post_max_size');
                return false;
            }
            if (!preg_match($this->options['accept_file_types'], $file->name)) {
                $file->error = $this->get_error_message('accept_file_types');
                return false;
            }
            if ($uploaded_file && is_uploaded_file($uploaded_file)) {
                $file_size = $this->get_file_size($uploaded_file);
            } else {
                $file_size = $content_length;
            }
            if ($this->options['max_file_size'] && (
                    $file_size > $this->options['max_file_size'] ||
                    $file->size > $this->options['max_file_size'])
                ) {
                $file->error = $this->get_error_message('max_file_size');
                return false;
            }
            if ($this->options['min_file_size'] &&
                $file_size < $this->options['min_file_size']) {
                $file->error = $this->get_error_message('min_file_size');
                return false;
            }
            if (is_int($this->options['max_number_of_files']) && (
                    $this->count_file_objects() >= $this->options['max_number_of_files'])
                ) {
                $file->error = $this->get_error_message('max_number_of_files');
                return false;
            }
            list($img_width, $img_height) = @getimagesize($uploaded_file);
            if (is_int($img_width)) {
                if ($this->options['max_width'] && $img_width > $this->options['max_width']) {
                    $file->error = $this->get_error_message('max_width');
                    return false;
                }
                if ($this->options['max_height'] && $img_height > $this->options['max_height']) {
                    $file->error = $this->get_error_message('max_height');
                    return false;
                }
                if ($this->options['min_width'] && $img_width < $this->options['min_width']) {
                    $file->error = $this->get_error_message('min_width');
                    return false;
                }
                if ($this->options['min_height'] && $img_height < $this->options['min_height']) {
                    $file->error = $this->get_error_message('min_height');
                    return false;
                }
            }
            return true;
        }
     
        protected function upcount_name_callback($matches) {
            $index = isset($matches[1]) ? intval($matches[1]) + 1 : 1;
            $ext = isset($matches[2]) ? $matches[2] : '';
            return ' ('.$index.')'.$ext;
        }
     
        protected function upcount_name($name) {
            return preg_replace_callback(
                '/(?:(?: \(([\d]+)\))?(\.[^.]+))?$/',
                array($this, 'upcount_name_callback'),
                $name,
                1
            );
        }
     
        protected function get_unique_filename($name, $type, $index, $content_range) {
            while(is_dir($this->get_upload_path($name))) {
                $name = $this->upcount_name($name);
            }
            // Keep an existing filename if this is part of a chunked upload:
            $uploaded_bytes = $this->fix_integer_overflow(intval($content_range[1]));
            while(is_file($this->get_upload_path($name))) {
                if ($uploaded_bytes === $this->get_file_size(
                        $this->get_upload_path($name))) {
                    break;
                }
                $name = $this->upcount_name($name);
            }
            return $name;
        }
     
        protected function trim_file_name($name, $type, $index, $content_range) {
            // Remove path information and dots around the filename, to prevent uploading
            // into different directories or replacing hidden system files.
            // Also remove control characters and spaces (\x00..\x20) around the filename:
            $name = trim(basename(stripslashes($name)), ".\x00..\x20");
            // Use a timestamp for empty filenames:
            if (!$name) {
                $name = str_replace('.', '-', microtime(true));
            }
            // Add missing file extension for known image types:
            if (strpos($name, '.') === false &&
                preg_match('/^image\/(gif|jpe?g|png)/', $type, $matches)) {
                $name .= '.'.$matches[1];
            }
            return $name;
        }
     
        protected function get_file_name($name, $type, $index, $content_range) {
            return $this->get_unique_filename(
                $this->trim_file_name($name, $type, $index, $content_range),
                $type,
                $index,
                $content_range
            );
        }
     
        protected function handle_form_data($file, $index) {
            // Handle form data, e.g. $_REQUEST['description'][$index]
        }
     
        protected function orient_image($file_path) {
            if (!function_exists('exif_read_data')) {
                return false;
            }
            $exif = @exif_read_data($file_path);
            if ($exif === false) {
                return false;
            }
            $orientation = intval(@$exif['Orientation']);
            if (!in_array($orientation, array(3, 6, 8))) {
                return false;
            }
            $image = @imagecreatefromjpeg($file_path);
            switch ($orientation) {
                case 3:
                    $image = @imagerotate($image, 180, 0);
                    break;
                case 6:
                    $image = @imagerotate($image, 270, 0);
                    break;
                case 8:
                    $image = @imagerotate($image, 90, 0);
                    break;
                default:
                    return false;
            }
            $success = imagejpeg($image, $file_path);
            // Free up memory (imagedestroy does not delete files):
            @imagedestroy($image);
            return $success;
        }
     
        protected function handle_file_upload($uploaded_file, $name, $size, $type, $error,
                $index = null, $content_range = null) {
            $file = new stdClass();
            $file->name = $this->get_file_name($name, $type, $index, $content_range);
            $file->size = $this->fix_integer_overflow(intval($size));
            $file->type = $type;
            if ($this->validate($uploaded_file, $file, $error, $index)) {
                $this->handle_form_data($file, $index);
                $upload_dir = $this->get_upload_path();
                if (!is_dir($upload_dir)) {
                    mkdir($upload_dir, $this->options['mkdir_mode'], true);
                }
                $file_path = $this->get_upload_path($file->name);
                $append_file = $content_range && is_file($file_path) &&
                    $file->size > $this->get_file_size($file_path);
                if ($uploaded_file && is_uploaded_file($uploaded_file)) {
                    // multipart/formdata uploads (POST method uploads)
                    if ($append_file) {
                        file_put_contents(
                            $file_path,
                            fopen($uploaded_file, 'r'),
                            FILE_APPEND
                        );
                    } else {
                        move_uploaded_file($uploaded_file, $file_path);
                    }
                } else {
                    // Non-multipart uploads (PUT method support)
                    file_put_contents(
                        $file_path,
                        fopen('php://input', 'r'),
                        $append_file ? FILE_APPEND : 0
                    );
                }
                $file_size = $this->get_file_size($file_path, $append_file);
                if ($file_size === $file->size) {
                    if ($this->options['orient_image']) {
                        $this->orient_image($file_path);
                    }
                    $file->url = $this->get_download_url($file->name);
                    foreach($this->options['image_versions'] as $version => $options) {
                        if ($this->create_scaled_image($file->name, $version, $options)) {
                            if (!empty($version)) {
                                $file->{$version.'_url'} = $this->get_download_url(
                                    $file->name,
                                    $version
                                );
                            } else {
                                $file_size = $this->get_file_size($file_path, true);
                            }
                        }
                    }
                } else if (!$content_range && $this->options['discard_aborted_uploads']) {
                    unlink($file_path);
                    $file->error = 'abort';
                }
                $file->size = $file_size;
                $this->set_file_delete_properties($file);
            }
            return $file;
        }
     
        protected function readfile($file_path) {
            return readfile($file_path);
        }
     
        protected function body($str) {
            echo $str;
        }
     
        protected function header($str) {
            header($str);
        }
     
        protected function generate_response($content, $print_response = true) {
            if ($print_response) {
                $json = json_encode($content);
                $redirect = isset($_REQUEST['redirect']) ?
                    stripslashes($_REQUEST['redirect']) : null;
                if ($redirect) {
                    $this->header('Location: '.sprintf($redirect, rawurlencode($json)));
                    return;
                }
                $this->head();
                if (isset($_SERVER['HTTP_CONTENT_RANGE'])) {
                    $files = isset($content[$this->options['param_name']]) ?
                        $content[$this->options['param_name']] : null;
                    if ($files && is_array($files) && is_object($files[0]) && $files[0]->size) {
                        $this->header('Range: 0-'.($this->fix_integer_overflow(intval($files[0]->size)) - 1));
                    }
                }
                $this->body($json);
            }
            return $content;
        }
     
        protected function get_version_param() {
            return isset($_GET['version']) ? basename(stripslashes($_GET['version'])) : null;
        }
     
        protected function get_file_name_param() {
            return isset($_GET['file']) ? basename(stripslashes($_GET['file'])) : null;
        }
     
        protected function get_file_type($file_path) {
            switch (strtolower(pathinfo($file_path, PATHINFO_EXTENSION))) {
                case 'jpeg':
                case 'jpg':
                    return 'image/jpeg';
                case 'png':
                    return 'image/png';
                case 'gif':
                    return 'image/gif';
                default:
                    return '';
            }
        }
     
        protected function download() {
            if (!$this->options['download_via_php']) {
                $this->header('HTTP/1.1 403 Forbidden');
                return;
            }
            $file_name = $this->get_file_name_param();
            if ($this->is_valid_file_object($file_name)) {
                $file_path = $this->get_upload_path($file_name, $this->get_version_param());
                if (is_file($file_path)) {
                    if (!preg_match($this->options['inline_file_types'], $file_name)) {
                        $this->header('Content-Description: File Transfer');
                        $this->header('Content-Type: application/octet-stream');
                        $this->header('Content-Disposition: attachment; filename="'.$file_name.'"');
                        $this->header('Content-Transfer-Encoding: binary');
                    } else {
                        // Prevent Internet Explorer from MIME-sniffing the content-type:
                        $this->header('X-Content-Type-Options: nosniff');
                        $this->header('Content-Type: '.$this->get_file_type($file_path));
                        $this->header('Content-Disposition: inline; filename="'.$file_name.'"');
                    }
                    $this->header('Content-Length: '.$this->get_file_size($file_path));
                    $this->header('Last-Modified: '.gmdate('D, d M Y H:i:s T', filemtime($file_path)));
                    $this->readfile($file_path);
                }
            }
        }
     
        protected function send_content_type_header() {
            $this->header('Vary: Accept');
            if (isset($_SERVER['HTTP_ACCEPT']) &&
                (strpos($_SERVER['HTTP_ACCEPT'], 'application/json') !== false)) {
                $this->header('Content-type: application/json');
            } else {
                $this->header('Content-type: text/plain');
            }
        }
     
        protected function send_access_control_headers() {
            $this->header('Access-Control-Allow-Origin: '.$this->options['access_control_allow_origin']);
            $this->header('Access-Control-Allow-Credentials: '
                .($this->options['access_control_allow_credentials'] ? 'true' : 'false'));
            $this->header('Access-Control-Allow-Methods: '
                .implode(', ', $this->options['access_control_allow_methods']));
            $this->header('Access-Control-Allow-Headers: '
                .implode(', ', $this->options['access_control_allow_headers']));
        }
     
        public function head() {
            $this->header('Pragma: no-cache');
            $this->header('Cache-Control: no-store, no-cache, must-revalidate');
            $this->header('Content-Disposition: inline; filename="files.json"');
            // Prevent Internet Explorer from MIME-sniffing the content-type:
            $this->header('X-Content-Type-Options: nosniff');
            if ($this->options['access_control_allow_origin']) {
                $this->send_access_control_headers();
            }
            $this->send_content_type_header();
        }
     
        public function get($print_response = true) {
            if ($print_response && isset($_GET['download'])) {
                return $this->download();
            }
            $file_name = $this->get_file_name_param();
            if ($file_name) {
                $response = array(
                    substr($this->options['param_name'], 0, -1) => $this->get_file_object($file_name)
                );
            } else {
                $response = array(
                    $this->options['param_name'] => $this->get_file_objects()
                );
            }
            return $this->generate_response($response, $print_response);
        }
     
        public function post($print_response = true) {
            if (isset($_REQUEST['_method']) && $_REQUEST['_method'] === 'DELETE') {
                return $this->delete($print_response);
            }
            $upload = isset($_FILES[$this->options['param_name']]) ?
                $_FILES[$this->options['param_name']] : null;
            // Parse the Content-Disposition header, if available:
            $file_name = isset($_SERVER['HTTP_CONTENT_DISPOSITION']) ?
                rawurldecode(preg_replace(
                    '/(^[^"]+")|("$)/',
                    '',
                    $_SERVER['HTTP_CONTENT_DISPOSITION']
                )) : null;
            // Parse the Content-Range header, which has the following form:
            // Content-Range: bytes 0-524287/2000000
            $content_range = isset($_SERVER['HTTP_CONTENT_RANGE']) ?
                preg_split('/[^0-9]+/', $_SERVER['HTTP_CONTENT_RANGE']) : null;
            $size =  $content_range ? $content_range[3] : null;
            $files = array();
            if ($upload && is_array($upload['tmp_name'])) {
                // param_name is an array identifier like "files[]",
                // $_FILES is a multi-dimensional array:
                foreach ($upload['tmp_name'] as $index => $value) {
                    $files[] = $this->handle_file_upload(
                        $upload['tmp_name'][$index],
                        $file_name ? $file_name : $upload['name'][$index],
                        $size ? $size : $upload['size'][$index],
                        $upload['type'][$index],
                        $upload['error'][$index],
                        $index,
                        $content_range
                    );
                }
            } else {
                // param_name is a single object identifier like "file",
                // $_FILES is a one-dimensional array:
                $files[] = $this->handle_file_upload(
                    isset($upload['tmp_name']) ? $upload['tmp_name'] : null,
                    $file_name ? $file_name : (isset($upload['name']) ?
                            $upload['name'] : null),
                    $size ? $size : (isset($upload['size']) ?
                            $upload['size'] : $_SERVER['CONTENT_LENGTH']),
                    isset($upload['type']) ?
                            $upload['type'] : $_SERVER['CONTENT_TYPE'],
                    isset($upload['error']) ? $upload['error'] : null,
                    null,
                    $content_range
                );
            }
            return $this->generate_response(
                array($this->options['param_name'] => $files),
                $print_response
            );
        }
     
        public function delete($print_response = true) {
            $file_name = $this->get_file_name_param();
            $file_path = $this->get_upload_path($file_name);
            $success = is_file($file_path) && $file_name[0] !== '.' && unlink($file_path);
            if ($success) {
                foreach($this->options['image_versions'] as $version => $options) {
                    if (!empty($version)) {
                        $file = $this->get_upload_path($file_name, $version);
                        if (is_file($file)) {
                            unlink($file);
                        }
                    }
                }
            }
            return $this->generate_response(array('success' => $success), $print_response);
        }
     
    }
    Et avant que je ne modifie l'URL ( 'upload_dir' et 'upload_url' ),cela fonctionné très bien.

  4. #4
    Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Janvier 2012
    Messages
    91
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Service public

    Informations forums :
    Inscription : Janvier 2012
    Messages : 91
    Points : 62
    Points
    62
    Par défaut
    Voila le lien si vous voulez télécharger le plugin pour tester.
    https://github.com/blueimp/jQuery-Fi...oad/wiki/Setup

Discussions similaires

  1. [UI] Comment passer à jQuery File Upload ?
    Par antoinegui dans le forum jQuery
    Réponses: 2
    Dernier message: 25/03/2014, 23h01
  2. utilisation jquery file upload avec codeigniter
    Par skawll dans le forum Langage
    Réponses: 1
    Dernier message: 26/03/2013, 23h07
  3. Uploadify : un plugin jQuery d'upload utilisant l'HTML5
    Par FirePrawn dans le forum jQuery
    Réponses: 1
    Dernier message: 14/02/2013, 16h13
  4. blueimp jQuery-File-Upload Drag'n'drop
    Par KiranoO dans le forum jQuery
    Réponses: 1
    Dernier message: 03/09/2011, 20h37
  5. ouverture de box dans jquery file upload
    Par doud180878 dans le forum jQuery
    Réponses: 9
    Dernier message: 17/08/2011, 07h32

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