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 :

Problème fichier après upload


Sujet :

Langage PHP

  1. #1
    Membre émérite Avatar de Madfrix
    Profil pro
    Inscrit en
    Juin 2007
    Messages
    2 326
    Détails du profil
    Informations personnelles :
    Localisation : France, Gironde (Aquitaine)

    Informations forums :
    Inscription : Juin 2007
    Messages : 2 326
    Points : 2 566
    Points
    2 566
    Par défaut Problème fichier après upload
    Bonjour,

    j'aide actuellement quelqu'un à mettre en place sur son serveur une application utilisant Zend Framework et Zend_Amf_Server.

    Après upload sur son site, j'obtiens cette erreur :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    Parse error: syntax error, unexpected T_STRING, expecting '{' in XXX/ZendFramework/library/Zend/Amf/Server.php on line 58
    erreur somme toute assez classique sauf que je suis sur à 100% que le fichier Server.php est valide. En effet, il provient du package Zend et je n'ai effectué aucune modification dessus. De plus, si je rapatrie tout en local, cela marche parfaitement.

    J'ai pensé à un soucis de transfert de type de fichier via filezilla. J'ai donc tout réuploadé avec l'option, "automatique", "ASCII" ou "binaire" mais cela ne change rien. Je ne vois pas du tout d'où pourrait venir le problème...

    Qui pourrait me donner une piste ?

    Merci

    EDIT: cela pourrait il venir du fait que j'utilise le package .zip de zend et pas le tar.gz ?

  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
    Un problème de version de PHP ?

  3. #3
    Membre émérite Avatar de Madfrix
    Profil pro
    Inscrit en
    Juin 2007
    Messages
    2 326
    Détails du profil
    Informations personnelles :
    Localisation : France, Gironde (Aquitaine)

    Informations forums :
    Inscription : Juin 2007
    Messages : 2 326
    Points : 2 566
    Points
    2 566
    Par défaut
    Hmm possible en effet je n'y avais pas pensé.

    Voici la classe posant problème :

    Code php : 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
    766
    767
    768
    769
    770
    771
    772
    773
    774
    775
    776
    777
    778
    779
    780
    781
    782
    783
    784
    785
    786
    787
    788
    789
    790
    791
    792
    793
    794
    795
    796
    797
    798
    799
    800
    801
    802
    803
    804
    805
    806
    807
    808
    809
    810
    811
    812
    813
    814
    815
    816
    817
    818
    819
    820
    821
    822
    823
    824
    825
    826
    827
    828
    829
    830
    831
    832
    833
    834
    835
    836
    837
    838
    839
    840
    841
    842
    843
    844
    845
    846
    847
    848
    849
    850
    851
    852
    853
    854
    855
    856
    857
    858
    859
    860
    861
    862
    863
    864
    865
    866
    867
    868
    869
    870
    871
    872
    873
    874
    875
    876
    877
    878
    879
    880
    881
    882
    883
    884
    885
    886
    887
    888
    889
    890
    891
    892
    893
    894
    895
    896
    897
    898
    899
    900
    901
    902
    903
    904
    905
    906
    907
    908
    909
    910
    911
    912
    913
    914
    915
    916
    917
    918
    919
    920
    921
    922
    923
    924
    925
    926
    927
    928
    929
    930
    931
    932
    933
    934
    935
    936
    937
     
    <?php
    /**
     * Zend Framework
     *
     * LICENSE
     *
     * This source file is subject to the new BSD license that is bundled
     * with this package in the file LICENSE.txt.
     * It is also available through the world-wide-web at this URL:
     * http://framework.zend.com/license/new-bsd
     * If you did not receive a copy of the license and are unable to
     * obtain it through the world-wide-web, please send an email
     * to license@zend.com so we can send you a copy immediately.
     *
     * @category   Zend
     * @package    Zend_Amf
     * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
     * @license    http://framework.zend.com/license/new-bsd     New BSD License
     * @version    $Id: Server.php 23256 2010-10-26 12:51:54Z alexander $
     */
     
    /** @see Zend_Server_Interface */
    require_once 'Zend/Server/Interface.php';
     
    /** @see Zend_Server_Reflection */
    require_once 'Zend/Server/Reflection.php';
     
    /** @see Zend_Amf_Constants */
    require_once 'Zend/Amf/Constants.php';
     
    /** @see Zend_Amf_Value_MessageBody */
    require_once 'Zend/Amf/Value/MessageBody.php';
     
    /** @see Zend_Amf_Value_MessageHeader */
    require_once 'Zend/Amf/Value/MessageHeader.php';
     
    /** @see Zend_Amf_Value_Messaging_CommandMessage */
    require_once 'Zend/Amf/Value/Messaging/CommandMessage.php';
     
    /** @see Zend_Loader_PluginLoader */
    require_once 'Zend/Loader/PluginLoader.php';
     
    /** @see Zend_Amf_Parse_TypeLoader */
    require_once 'Zend/Amf/Parse/TypeLoader.php';
     
    /** @see Zend_Auth */
    require_once 'Zend/Auth.php';
    /**
     * An AMF gateway server implementation to allow the connection of the Adobe Flash Player to
     * Zend Framework
     *
     * @todo       Make the reflection methods cache and autoload.
     * @package    Zend_Amf
     * @subpackage Server
     * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
     * @license    http://framework.zend.com/license/new-bsd     New BSD License
     */
    class Zend_Amf_Server implements Zend_Server_Interface
    {
        /**
         * Array of dispatchables
         * @var array
         */
        protected $_methods = array();
     
        /**
         * Array of classes that can be called without being explicitly loaded
         *
         * Keys are class names.
         *
         * @var array
         */
        protected $_classAllowed = array();
     
        /**
         * Loader for classes in added directories
         * @var Zend_Loader_PluginLoader
         */
        protected $_loader;
     
        /**
         * @var bool Production flag; whether or not to return exception messages
         */
        protected $_production = true;
     
        /**
         * Request processed
         * @var null|Zend_Amf_Request
         */
        protected $_request = null;
     
        /**
         * Class to use for responses
         * @var null|Zend_Amf_Response
         */
        protected $_response;
     
        /**
         * Dispatch table of name => method pairs
         * @var array
         */
        protected $_table = array();
     
        /**
         *
         * @var bool session flag; whether or not to add a session to each response.
         */
        protected $_session = false;
     
        /**
         * Namespace allows all AMF calls to not clobber other PHP session variables
         * @var Zend_Session_NameSpace default session namespace zend_amf
         */
        protected $_sesionNamespace = 'zend_amf';
     
        /**
         * Set the default session.name if php_
         * @var string
         */
        protected $_sessionName = 'PHPSESSID';
     
        /**
         * Authentication handler object
         *
         * @var Zend_Amf_Auth_Abstract
         */
        protected $_auth;
        /**
         * ACL handler object
         *
         * @var Zend_Acl
         */
        protected $_acl;
        /**
         * The server constructor
         */
        public function __construct()
        {
            Zend_Amf_Parse_TypeLoader::setResourceLoader(new Zend_Loader_PluginLoader(array("Zend_Amf_Parse_Resource" => "Zend/Amf/Parse/Resource")));
        }
     
        /**
         * Set authentication adapter
         *
         * @param  Zend_Amf_Auth_Abstract $auth
         * @return Zend_Amf_Server
         */
        public function setAuth(Zend_Amf_Auth_Abstract $auth)
        {
            $this->_auth = $auth;
            return $this;
        }
       /**
         * Get authentication adapter
         *
         * @return Zend_Amf_Auth_Abstract
         */
        public function getAuth()
        {
            return $this->_auth;
        }
     
        /**
         * Set ACL adapter
         *
         * @param  Zend_Acl $acl
         * @return Zend_Amf_Server
         */
        public function setAcl(Zend_Acl $acl)
        {
            $this->_acl = $acl;
            return $this;
        }
       /**
         * Get ACL adapter
         *
         * @return Zend_Acl
         */
        public function getAcl()
        {
            return $this->_acl;
        }
     
        /**
         * Set production flag
         *
         * @param  bool $flag
         * @return Zend_Amf_Server
         */
        public function setProduction($flag)
        {
            $this->_production = (bool) $flag;
            return $this;
        }
     
        /**
         * Whether or not the server is in production
         *
         * @return bool
         */
        public function isProduction()
        {
            return $this->_production;
        }
     
        /**
         * @param namespace of all incoming sessions defaults to Zend_Amf
         * @return Zend_Amf_Server
         */
        public function setSession($namespace = 'Zend_Amf')
        {
            require_once 'Zend/Session.php';
            $this->_session = true;
            $this->_sesionNamespace = new Zend_Session_Namespace($namespace);
            return $this;
        }
     
        /**
         * Whether of not the server is using sessions
         * @return bool
         */
        public function isSession()
        {
            return $this->_session;
        }
     
        /**
         * Check if the ACL allows accessing the function or method
         *
         * @param string|object $object Object or class being accessed
         * @param string $function Function or method being accessed
         * @return unknown_type
         */
        protected function _checkAcl($object, $function)
        {
            if(!$this->_acl) {
                return true;
            }
            if($object) {
                $class = is_object($object)?get_class($object):$object;
                if(!$this->_acl->has($class)) {
                    require_once 'Zend/Acl/Resource.php';
                    $this->_acl->add(new Zend_Acl_Resource($class));
                }
                $call = array($object, "initAcl");
                if(is_callable($call) && !call_user_func($call, $this->_acl)) {
                    // if initAcl returns false, no ACL check
                    return true;
                }
            } else {
                $class = null;
            }
     
            $auth = Zend_Auth::getInstance();
            if($auth->hasIdentity()) {
                $role = $auth->getIdentity()->role;
            } else {
                if($this->_acl->hasRole(Zend_Amf_Constants::GUEST_ROLE)) {
                    $role = Zend_Amf_Constants::GUEST_ROLE;
                } else {
                    require_once 'Zend/Amf/Server/Exception.php';
                    throw new Zend_Amf_Server_Exception("Unauthenticated access not allowed");
                }
            }
            if($this->_acl->isAllowed($role, $class, $function)) {
                return true;
            } else {
                require_once 'Zend/Amf/Server/Exception.php';
                throw new Zend_Amf_Server_Exception("Access not allowed");
            }
        }
     
        /**
         * Get PluginLoader for the Server
         *
         * @return Zend_Loader_PluginLoader
         */
        protected function getLoader()
        {
            if(empty($this->_loader)) {
                require_once 'Zend/Loader/PluginLoader.php';
                $this->_loader = new Zend_Loader_PluginLoader();
            }
            return $this->_loader;
        }
     
        /**
         * Loads a remote class or method and executes the function and returns
         * the result
         *
         * @param  string $method Is the method to execute
         * @param  mixed $param values for the method
         * @return mixed $response the result of executing the method
         * @throws Zend_Amf_Server_Exception
         */
        protected function _dispatch($method, $params = null, $source = null)
        {
            if($source) {
                if(($mapped = Zend_Amf_Parse_TypeLoader::getMappedClassName($source)) !== false) {
                    $source = $mapped;
                }
            }
            $qualifiedName = empty($source) ? $method : $source . '.' . $method;
     
            if (!isset($this->_table[$qualifiedName])) {
                // if source is null a method that was not defined was called.
                if ($source) {
                    $className = str_replace('.', '_', $source);
                    if(class_exists($className, false) && !isset($this->_classAllowed[$className])) {
                        require_once 'Zend/Amf/Server/Exception.php';
                        throw new Zend_Amf_Server_Exception('Can not call "' . $className . '" - use setClass()');
                    }
                    try {
                        $this->getLoader()->load($className);
                    } catch (Exception $e) {
                        require_once 'Zend/Amf/Server/Exception.php';
                        throw new Zend_Amf_Server_Exception('Class "' . $className . '" does not exist: '.$e->getMessage(), 0, $e);
                    }
                    // Add the new loaded class to the server.
                    $this->setClass($className, $source);
                }
     
                if (!isset($this->_table[$qualifiedName])) {
                    // Source is null or doesn't contain specified method
                    require_once 'Zend/Amf/Server/Exception.php';
                    throw new Zend_Amf_Server_Exception('Method "' . $method . '" does not exist');
                }
            }
     
            $info = $this->_table[$qualifiedName];
            $argv = $info->getInvokeArguments();
     
            if (0 < count($argv)) {
                $params = array_merge($params, $argv);
            }
     
            if ($info instanceof Zend_Server_Reflection_Function) {
                $func = $info->getName();
                $this->_checkAcl(null, $func);
                $return = call_user_func_array($func, $params);
            } elseif ($info instanceof Zend_Server_Reflection_Method) {
                // Get class
                $class = $info->getDeclaringClass()->getName();
                if ('static' == $info->isStatic()) {
                    // for some reason, invokeArgs() does not work the same as
                    // invoke(), and expects the first argument to be an object.
                    // So, using a callback if the method is static.
                    $this->_checkAcl($class, $info->getName());
                    $return = call_user_func_array(array($class, $info->getName()), $params);
                } else {
                    // Object methods
                    try {
                        $object = $info->getDeclaringClass()->newInstance();
                    } catch (Exception $e) {
                        require_once 'Zend/Amf/Server/Exception.php';
                        throw new Zend_Amf_Server_Exception('Error instantiating class ' . $class . ' to invoke method ' . $info->getName() . ': '.$e->getMessage(), 621, $e);
                    }
                    $this->_checkAcl($object, $info->getName());
                    $return = $info->invokeArgs($object, $params);
                }
            } else {
                require_once 'Zend/Amf/Server/Exception.php';
                throw new Zend_Amf_Server_Exception('Method missing implementation ' . get_class($info));
            }
     
            return $return;
        }
     
        /**
         * Handles each of the 11 different command message types.
         *
         * A command message is a flex.messaging.messages.CommandMessage
         *
         * @see    Zend_Amf_Value_Messaging_CommandMessage
         * @param  Zend_Amf_Value_Messaging_CommandMessage $message
         * @return Zend_Amf_Value_Messaging_AcknowledgeMessage
         */
        protected function _loadCommandMessage(Zend_Amf_Value_Messaging_CommandMessage $message)
        {
            require_once 'Zend/Amf/Value/Messaging/AcknowledgeMessage.php';
            switch($message->operation) {
                case Zend_Amf_Value_Messaging_CommandMessage::DISCONNECT_OPERATION :
                case Zend_Amf_Value_Messaging_CommandMessage::CLIENT_PING_OPERATION :
                    $return = new Zend_Amf_Value_Messaging_AcknowledgeMessage($message);
                    break;
                case Zend_Amf_Value_Messaging_CommandMessage::LOGIN_OPERATION :
                    $data = explode(':', base64_decode($message->body));
                    $userid = $data[0];
                    $password = isset($data[1])?$data[1]:"";
                    if(empty($userid)) {
                        require_once 'Zend/Amf/Server/Exception.php';
                        throw new Zend_Amf_Server_Exception('Login failed: username not supplied');
                    }
                    if(!$this->_handleAuth($userid, $password)) {
                        require_once 'Zend/Amf/Server/Exception.php';
                        throw new Zend_Amf_Server_Exception('Authentication failed');
                    }
                    $return = new Zend_Amf_Value_Messaging_AcknowledgeMessage($message);
                    break;
               case Zend_Amf_Value_Messaging_CommandMessage::LOGOUT_OPERATION :
                    if($this->_auth) {
                        Zend_Auth::getInstance()->clearIdentity();
                    }
                    $return = new Zend_Amf_Value_Messaging_AcknowledgeMessage($message);
                    break;
                default :
                    require_once 'Zend/Amf/Server/Exception.php';
                    throw new Zend_Amf_Server_Exception('CommandMessage::' . $message->operation . ' not implemented');
                    break;
            }
            return $return;
        }
     
        /**
         * Create appropriate error message
         *
         * @param int $objectEncoding Current AMF encoding
         * @param string $message Message that was being processed when error happened
         * @param string $description Error description
         * @param mixed $detail Detailed data about the error
         * @param int $code Error code
         * @param int $line Error line
         * @return Zend_Amf_Value_Messaging_ErrorMessage|array
         */
        protected function _errorMessage($objectEncoding, $message, $description, $detail, $code, $line)
        {
            $return = null;
            switch ($objectEncoding) {
                case Zend_Amf_Constants::AMF0_OBJECT_ENCODING :
                    return array (
                            'description' => ($this->isProduction ()) ? '' : $description,
                            'detail' => ($this->isProduction ()) ? '' : $detail,
                            'line' => ($this->isProduction ()) ? 0 : $line,
                            'code' => $code
                    );
                case Zend_Amf_Constants::AMF3_OBJECT_ENCODING :
                    require_once 'Zend/Amf/Value/Messaging/ErrorMessage.php';
                    $return = new Zend_Amf_Value_Messaging_ErrorMessage ( $message );
                    $return->faultString = $this->isProduction () ? '' : $description;
                    $return->faultCode = $code;
                    $return->faultDetail = $this->isProduction () ? '' : $detail;
                    break;
            }
            return $return;
        }
     
        /**
         * Handle AMF authentication
         *
         * @param string $userid
         * @param string $password
         * @return boolean
         */
        protected function _handleAuth( $userid,  $password)
        {
            if (!$this->_auth) {
                return true;
            }
            $this->_auth->setCredentials($userid, $password);
            $auth = Zend_Auth::getInstance();
            $result = $auth->authenticate($this->_auth);
            if ($result->isValid()) {
                if (!$this->isSession()) {
                    $this->setSession();
                }
                return true;
            } else {
                // authentication failed, good bye
                require_once 'Zend/Amf/Server/Exception.php';
                throw new Zend_Amf_Server_Exception(
                    "Authentication failed: " . join("\n",
                        $result->getMessages()), $result->getCode());
            }
     
        }
     
        /**
         * Takes the deserialized AMF request and performs any operations.
         *
         * @todo   should implement and SPL observer pattern for custom AMF headers
         * @todo   DescribeService support
         * @param  Zend_Amf_Request $request
         * @return Zend_Amf_Response
         * @throws Zend_Amf_server_Exception|Exception
         */
        protected function _handle(Zend_Amf_Request $request)
        {
            // Get the object encoding of the request.
            $objectEncoding = $request->getObjectEncoding();
     
            // create a response object to place the output from the services.
            $response = $this->getResponse();
     
            // set response encoding
            $response->setObjectEncoding($objectEncoding);
     
            $responseBody = $request->getAmfBodies();
     
            $handleAuth = false;
            if ($this->_auth) {
                $headers = $request->getAmfHeaders();
                if (isset($headers[Zend_Amf_Constants::CREDENTIALS_HEADER]) &&
                    isset($headers[Zend_Amf_Constants::CREDENTIALS_HEADER]->userid)) {
                    $handleAuth = true;
                }
            }
     
            // Iterate through each of the service calls in the AMF request
            foreach($responseBody as $body)
            {
                try {
                    if ($handleAuth) {
                        if ($this->_handleAuth(
                            $headers[Zend_Amf_Constants::CREDENTIALS_HEADER]->userid,
                            $headers[Zend_Amf_Constants::CREDENTIALS_HEADER]->password)) {
                            // use RequestPersistentHeader to clear credentials
                            $response->addAmfHeader(
                                new Zend_Amf_Value_MessageHeader(
                                    Zend_Amf_Constants::PERSISTENT_HEADER,
                                    false,
                                    new Zend_Amf_Value_MessageHeader(
                                        Zend_Amf_Constants::CREDENTIALS_HEADER,
                                        false, null)));
                            $handleAuth = false;
                        }
                    }
     
                    if ($objectEncoding == Zend_Amf_Constants::AMF0_OBJECT_ENCODING) {
                        // AMF0 Object Encoding
                        $targetURI = $body->getTargetURI();
                        $message = '';
     
                        // Split the target string into its values.
                        $source = substr($targetURI, 0, strrpos($targetURI, '.'));
     
                        if ($source) {
                            // Break off method name from namespace into source
                            $method = substr(strrchr($targetURI, '.'), 1);
                            $return = $this->_dispatch($method, $body->getData(), $source);
                        } else {
                            // Just have a method name.
                            $return = $this->_dispatch($targetURI, $body->getData());
                        }
                    } else {
                        // AMF3 read message type
                        $message = $body->getData();
                        if ($message instanceof Zend_Amf_Value_Messaging_CommandMessage) {
                            // async call with command message
                            $return = $this->_loadCommandMessage($message);
                        } elseif ($message instanceof Zend_Amf_Value_Messaging_RemotingMessage) {
                            require_once 'Zend/Amf/Value/Messaging/AcknowledgeMessage.php';
                            $return = new Zend_Amf_Value_Messaging_AcknowledgeMessage($message);
                            $return->body = $this->_dispatch($message->operation, $message->body, $message->source);
                        } else {
                            // Amf3 message sent with netConnection
                            $targetURI = $body->getTargetURI();
     
                            // Split the target string into its values.
                            $source = substr($targetURI, 0, strrpos($targetURI, '.'));
     
                            if ($source) {
                                // Break off method name from namespace into source
                                $method = substr(strrchr($targetURI, '.'), 1);
                                $return = $this->_dispatch($method, $body->getData(), $source);
                            } else {
                                // Just have a method name.
                                $return = $this->_dispatch($targetURI, $body->getData());
                            }
                        }
                    }
                    $responseType = Zend_AMF_Constants::RESULT_METHOD;
                } catch (Exception $e) {
                    $return = $this->_errorMessage($objectEncoding, $message,
                        $e->getMessage(), $e->getTraceAsString(),$e->getCode(),  $e->getLine());
                    $responseType = Zend_AMF_Constants::STATUS_METHOD;
                }
     
                $responseURI = $body->getResponseURI() . $responseType;
                $newBody     = new Zend_Amf_Value_MessageBody($responseURI, null, $return);
                $response->addAmfBody($newBody);
            }
            // Add a session header to the body if session is requested.
            if($this->isSession()) {
               $currentID = session_id();
               $joint = "?";
               if(isset($_SERVER['QUERY_STRING'])) {
                   if(!strpos($_SERVER['QUERY_STRING'], $currentID) !== FALSE) {
                       if(strrpos($_SERVER['QUERY_STRING'], "?") !== FALSE) {
                           $joint = "&";
                       }
                   }
               }
     
                // create a new AMF message header with the session id as a variable.
                $sessionValue = $joint . $this->_sessionName . "=" . $currentID;
                $sessionHeader = new Zend_Amf_Value_MessageHeader(Zend_Amf_Constants::URL_APPEND_HEADER, false, $sessionValue);
                $response->addAmfHeader($sessionHeader);
            }
     
            // serialize the response and return serialized body.
            $response->finalize();
        }
     
        /**
         * Handle an AMF call from the gateway.
         *
         * @param  null|Zend_Amf_Request $request Optional
         * @return Zend_Amf_Response
         */
        public function handle($request = null)
        {
            // Check if request was passed otherwise get it from the server
            if ($request === null || !$request instanceof Zend_Amf_Request) {
                $request = $this->getRequest();
            } else {
                $this->setRequest($request);
            }
            if ($this->isSession()) {
                 // Check if a session is being sent from the amf call
                 if (isset($_COOKIE[$this->_sessionName])) {
                     session_id($_COOKIE[$this->_sessionName]);
                 }
            }
     
            // Check for errors that may have happend in deserialization of Request.
            try {
                // Take converted PHP objects and handle service call.
                // Serialize to Zend_Amf_response for output stream
                $this->_handle($request);
                $response = $this->getResponse();
            } catch (Exception $e) {
                // Handle any errors in the serialization and service  calls.
                require_once 'Zend/Amf/Server/Exception.php';
                throw new Zend_Amf_Server_Exception('Handle error: ' . $e->getMessage() . ' ' . $e->getLine(), 0, $e);
            }
     
            // Return the Amf serialized output string
            return $response;
        }
     
        /**
         * Set request object
         *
         * @param  string|Zend_Amf_Request $request
         * @return Zend_Amf_Server
         */
        public function setRequest($request)
        {
            if (is_string($request) && class_exists($request)) {
                $request = new $request();
                if (!$request instanceof Zend_Amf_Request) {
                    require_once 'Zend/Amf/Server/Exception.php';
                    throw new Zend_Amf_Server_Exception('Invalid request class');
                }
            } elseif (!$request instanceof Zend_Amf_Request) {
                require_once 'Zend/Amf/Server/Exception.php';
                throw new Zend_Amf_Server_Exception('Invalid request object');
            }
            $this->_request = $request;
            return $this;
        }
     
        /**
         * Return currently registered request object
         *
         * @return null|Zend_Amf_Request
         */
        public function getRequest()
        {
            if (null === $this->_request) {
                require_once 'Zend/Amf/Request/Http.php';
                $this->setRequest(new Zend_Amf_Request_Http());
            }
     
            return $this->_request;
        }
     
        /**
         * Public access method to private Zend_Amf_Server_Response reference
         *
         * @param  string|Zend_Amf_Server_Response $response
         * @return Zend_Amf_Server
         */
        public function setResponse($response)
        {
            if (is_string($response) && class_exists($response)) {
                $response = new $response();
                if (!$response instanceof Zend_Amf_Response) {
                    require_once 'Zend/Amf/Server/Exception.php';
                    throw new Zend_Amf_Server_Exception('Invalid response class');
                }
            } elseif (!$response instanceof Zend_Amf_Response) {
                require_once 'Zend/Amf/Server/Exception.php';
                throw new Zend_Amf_Server_Exception('Invalid response object');
            }
            $this->_response = $response;
            return $this;
        }
     
        /**
         * get a reference to the Zend_Amf_response instance
         *
         * @return Zend_Amf_Server_Response
         */
        public function getResponse()
        {
            if (null === ($response = $this->_response)) {
                require_once 'Zend/Amf/Response/Http.php';
                $this->setResponse(new Zend_Amf_Response_Http());
            }
            return $this->_response;
        }
     
        /**
         * Attach a class or object to the server
         *
         * Class may be either a class name or an instantiated object. Reflection
         * is done on the class or object to determine the available public
         * methods, and each is attached to the server as and available method. If
         * a $namespace has been provided, that namespace is used to prefix
         * AMF service call.
         *
         * @param  string|object $class
         * @param  string $namespace Optional
         * @param  mixed $arg Optional arguments to pass to a method
         * @return Zend_Amf_Server
         * @throws Zend_Amf_Server_Exception on invalid input
         */
        public function setClass($class, $namespace = '', $argv = null)
        {
            if (is_string($class) && !class_exists($class)){
                require_once 'Zend/Amf/Server/Exception.php';
                throw new Zend_Amf_Server_Exception('Invalid method or class');
            } elseif (!is_string($class) && !is_object($class)) {
                require_once 'Zend/Amf/Server/Exception.php';
                throw new Zend_Amf_Server_Exception('Invalid method or class; must be a classname or object');
            }
     
            $argv = null;
            if (2 < func_num_args()) {
                $argv = array_slice(func_get_args(), 2);
            }
     
            // Use the class name as the name space by default.
     
            if ($namespace == '') {
                $namespace = is_object($class) ? get_class($class) : $class;
            }
     
            $this->_classAllowed[is_object($class) ? get_class($class) : $class] = true;
     
            $this->_methods[] = Zend_Server_Reflection::reflectClass($class, $argv, $namespace);
            $this->_buildDispatchTable();
     
            return $this;
        }
     
        /**
         * Attach a function to the server
         *
         * Additional arguments to pass to the function at dispatch may be passed;
         * any arguments following the namespace will be aggregated and passed at
         * dispatch time.
         *
         * @param  string|array $function Valid callback
         * @param  string $namespace Optional namespace prefix
         * @return Zend_Amf_Server
         * @throws Zend_Amf_Server_Exception
         */
        public function addFunction($function, $namespace = '')
        {
            if (!is_string($function) && !is_array($function)) {
                require_once 'Zend/Amf/Server/Exception.php';
                throw new Zend_Amf_Server_Exception('Unable to attach function');
            }
     
            $argv = null;
            if (2 < func_num_args()) {
                $argv = array_slice(func_get_args(), 2);
            }
     
            $function = (array) $function;
            foreach ($function as $func) {
                if (!is_string($func) || !function_exists($func)) {
                    require_once 'Zend/Amf/Server/Exception.php';
                    throw new Zend_Amf_Server_Exception('Unable to attach function');
                }
                $this->_methods[] = Zend_Server_Reflection::reflectFunction($func, $argv, $namespace);
            }
     
            $this->_buildDispatchTable();
            return $this;
        }
     
     
        /**
         * Creates an array of directories in which services can reside.
         * TODO: add support for prefixes?
         *
         * @param string $dir
         */
        public function addDirectory($dir)
        {
            $this->getLoader()->addPrefixPath("", $dir);
        }
     
        /**
         * Returns an array of directories that can hold services.
         *
         * @return array
         */
        public function getDirectory()
        {
            return $this->getLoader()->getPaths("");
        }
     
        /**
         * (Re)Build the dispatch table
         *
         * The dispatch table consists of a an array of method name =>
         * Zend_Server_Reflection_Function_Abstract pairs
         *
         * @return void
         */
        protected function _buildDispatchTable()
        {
            $table = array();
            foreach ($this->_methods as $key => $dispatchable) {
                if ($dispatchable instanceof Zend_Server_Reflection_Function_Abstract) {
                    $ns   = $dispatchable->getNamespace();
                    $name = $dispatchable->getName();
                    $name = empty($ns) ? $name : $ns . '.' . $name;
     
                    if (isset($table[$name])) {
                        require_once 'Zend/Amf/Server/Exception.php';
                        throw new Zend_Amf_Server_Exception('Duplicate method registered: ' . $name);
                    }
                    $table[$name] = $dispatchable;
                    continue;
                }
     
                if ($dispatchable instanceof Zend_Server_Reflection_Class) {
                    foreach ($dispatchable->getMethods() as $method) {
                        $ns   = $method->getNamespace();
                        $name = $method->getName();
                        $name = empty($ns) ? $name : $ns . '.' . $name;
     
                        if (isset($table[$name])) {
                            require_once 'Zend/Amf/Server/Exception.php';
                            throw new Zend_Amf_Server_Exception('Duplicate method registered: ' . $name);
                        }
                        $table[$name] = $method;
                        continue;
                    }
                }
            }
            $this->_table = $table;
        }
     
     
     
        /**
         * Raise a server fault
         *
         * Unimplemented
         *
         * @param  string|Exception $fault
         * @return void
         */
        public function fault($fault = null, $code = 404)
        {
        }
     
        /**
         * Returns a list of registered methods
         *
         * Returns an array of dispatchables (Zend_Server_Reflection_Function,
         * _Method, and _Class items).
         *
         * @return array
         */
        public function getFunctions()
        {
            return $this->_table;
        }
     
        /**
         * Set server persistence
         *
         * Unimplemented
         *
         * @param  mixed $mode
         * @return void
         */
        public function setPersistence($mode)
        {
        }
     
        /**
         * Load server definition
         *
         * Unimplemented
         *
         * @param  array $definition
         * @return void
         */
        public function loadFunctions($definition)
        {
        }
     
        /**
         * Map ActionScript classes to PHP classes
         *
         * @param  string $asClass
         * @param  string $phpClass
         * @return Zend_Amf_Server
         */
        public function setClassMap($asClass, $phpClass)
        {
            require_once 'Zend/Amf/Parse/TypeLoader.php';
            Zend_Amf_Parse_TypeLoader::setMapping($asClass, $phpClass);
            return $this;
        }
     
        /**
         * List all available methods
         *
         * Returns an array of method names.
         *
         * @return array
         */
        public function listMethods()
        {
            return array_keys($this->_table);
        }
    }

    la ligne 58 correspond à celle ci :

    Code php : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    class Zend_Amf_Server implements Zend_Server_Interface

    Avec ce genre d'erreur, difficile de cerner avec précision la ligne incriminée mais une version ancienne de php pourrait elle bugger sur ce code d'après toi ?

    Merci

    Zend Framework requière au minimum la version 5.1.4 de PHP
    A tout les coup en effet la version est obsolète je vais lui demander de vérifier

  4. #4
    Membre émérite Avatar de Madfrix
    Profil pro
    Inscrit en
    Juin 2007
    Messages
    2 326
    Détails du profil
    Informations personnelles :
    Localisation : France, Gironde (Aquitaine)

    Informations forums :
    Inscription : Juin 2007
    Messages : 2 326
    Points : 2 566
    Points
    2 566
    Par défaut
    Bon et bien après vérif...

    PHP Version 4.4.9
    donc le soucis provient de là.

    Merci pour l'aide

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. [Wamp] Wamp 5 et nom de fichier après upload
    Par badraf dans le forum EDI, CMS, Outils, Scripts et API
    Réponses: 2
    Dernier message: 28/12/2011, 10h26
  2. Supprimer un fichier après upload
    Par campanophile dans le forum Langage
    Réponses: 6
    Dernier message: 18/03/2010, 08h53
  3. Problème de lecture d'un fichier après upload
    Par sissi25 dans le forum Langage
    Réponses: 1
    Dernier message: 10/02/2009, 11h51
  4. Libération d'un fichier aprés Upload
    Par zooffy dans le forum ASP.NET
    Réponses: 12
    Dernier message: 14/01/2009, 11h03
  5. [Upload] Mauvais nom de fichier apres upload
    Par chambiges dans le forum Langage
    Réponses: 2
    Dernier message: 29/07/2007, 21h28

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