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 :

elfinder gestion des fichiers


Sujet :

Langage PHP

  1. #1
    Membre confirmé
    Profil pro
    Inscrit en
    Mai 2004
    Messages
    107
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2004
    Messages : 107
    Par défaut elfinder gestion des fichiers
    Bonjour voila je suis la recherche une solution.

    J'ai installé elfinder gestionnaire de fichier telecharger sur se site http://elfinder.org/.

    J'ai réussi à l'installer et je cherche maintenant à verrouiller un dossier comme dans la version démo mais je n'arrive pas à trouver comment et où le faire si vous pouvez m'aider merci.

    Voici les sources de elfinder

    https://github.com/Studio-42/elFinder


    Merci à vous.

  2. #2
    Rédacteur

    Avatar de Bovino
    Homme Profil pro
    Développeur Web
    Inscrit en
    Juin 2008
    Messages
    23 647
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 55
    Localisation : France, Gironde (Aquitaine)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juin 2008
    Messages : 23 647
    Billets dans le blog
    20
    Par défaut
    Il suffit de consulter la doc...
    Pas de question technique par MP !
    Tout le monde peut participer à developpez.com, vous avez une idée, contactez-moi !
    Mes formations video2brain : La formation complète sur JavaScriptJavaScript et le DOM par la pratiquePHP 5 et MySQL : les fondamentaux
    Mon livre sur jQuery
    Module Firefox / Chrome d'intégration de JSFiddle et CodePen sur le forum

  3. #3
    Membre confirmé
    Profil pro
    Inscrit en
    Mai 2004
    Messages
    107
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2004
    Messages : 107
    Par défaut
    merci pour ta réponse généreuse mais j'ai dejat essayé çà

    mais ca marche pas

  4. #4
    Expert confirmé Avatar de papajoker
    Homme Profil pro
    Développeur Web
    Inscrit en
    Septembre 2013
    Messages
    2 334
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Nièvre (Bourgogne)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Septembre 2013
    Messages : 2 334
    Par défaut
    montre le code !
    quel pattern a tu mis ?

  5. #5
    Membre confirmé
    Profil pro
    Inscrit en
    Mai 2004
    Messages
    107
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2004
    Messages : 107
    Par défaut
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    <?php
    array(
    	'driver' => 'LocalFileSystem', // driver for accessing file system (REQUIRED)
    	'path'   => 'path/to/files',   // path to files (REQUIRED)
    	'attributes' => array(
    		array(
    			'pattern' => '/^TEST$/', //You can also set permissions for file types by adding, for example, .jpg inside pattern.
    			'read'    => false,
    			'write'   => false,
    			'locked'  => true
    		)
    	)
    ),

    mais le problème je ne sais pas ou je dois le mettre extactement y a pleins de fichier php

    j'ai essayé dans connector.php mais ca marche pas

  6. #6
    Expert confirmé Avatar de papajoker
    Homme Profil pro
    Développeur Web
    Inscrit en
    Septembre 2013
    Messages
    2 334
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Nièvre (Bourgogne)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Septembre 2013
    Messages : 2 334
    Par défaut
    Oui c'est bien dans /php/connector.php
    Non, je ne répond pas pas MP

    j'ai essayé dans connector.php mais ca marche pas
    bien sur c'est pour cela que tu ne nous montres pas ton connector.php ($opts = array )

    merci pour ta réponse généreuse mais j'ai dejat essayé çà
    bien sur c'est pour cela que tu nous fais un copier/coller de la doc

  7. #7
    Membre confirmé
    Profil pro
    Inscrit en
    Mai 2004
    Messages
    107
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2004
    Messages : 107
    Par défaut
    déjat je suis pas top en php et si je savais les truc je le ferai moi même

    mais vu je suis bloqué je cherche de l'aide pas de reproche ou autre

    et si je dis que j'ai testé tous c'est que j'ai fais apres tu me dis que je fais copier collé de la doc j'ai deja trouvé ce que tu ma envoyé et que j'ai collé le code source

    voila mais bon !!!

  8. #8
    Membre confirmé
    Profil pro
    Inscrit en
    Mai 2004
    Messages
    107
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2004
    Messages : 107
    Par défaut
    et pour mon connector.php

    mon dossier que j'ai mis c'est dossier nommé test

    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
     
    <?php
     
    set_time_limit(0); // just in case it too long, not recommended for production
    error_reporting(E_ALL | E_STRICT); // Set E_ALL for debuging
    ini_set('max_file_uploads', 50);   // allow uploading up to 50 files at once
     
    // needed for case insensitive search to work, due to broken UTF-8 support in PHP
    ini_set('mbstring.internal_encoding', 'UTF-8');
    ini_set('mbstring.func_overload', 2);
     
    if (function_exists('date_default_timezone_set')) {
    	date_default_timezone_set('Europe/Moscow');
    }
     
    include_once dirname(__FILE__).DIRECTORY_SEPARATOR.'elFinderConnector.class.php';
    include_once dirname(__FILE__).DIRECTORY_SEPARATOR.'elFinder.class.php';
    include_once dirname(__FILE__).DIRECTORY_SEPARATOR.'elFinderVolumeDriver.class.php';
    include_once dirname(__FILE__).DIRECTORY_SEPARATOR.'elFinderVolumeLocalFileSystem.class.php';
    include_once dirname(__FILE__).DIRECTORY_SEPARATOR.'elFinderVolumeMySQL.class.php';
    include_once dirname(__FILE__).DIRECTORY_SEPARATOR.'elFinderVolumeFTP.class.php';
     
    function debug($o) {
    	echo '<pre>';
    	print_r($o);
    }
     
     
     
    /**
     * Smart logger function
     * Demonstrate how to work with elFinder event api
     *
     * @param  string   $cmd       command name
     * @param  array    $result    command result
     * @param  array    $args      command arguments from client
     * @param  elFinder $elfinder  elFinder instance
     * @return void|true
     * @author Troex Nevelin
     **/
    function logger($cmd, $result, $args, $elfinder) {
    	$log = sprintf('[%s] %s:', date('r'), strtoupper($cmd));
    	foreach ($result as $key => $value) {
    		if (empty($value)) {
    			continue;
    		}
    		$data = array();
    		if (in_array($key, array('error', 'warning'))) {
    			array_push($data, implode(' ', $value));
    		} else { // changes made to files
    			foreach ($value as $file) {
    				$filepath = (isset($file['realpath']) ? $file['realpath'] : $elfinder->realpath($file['hash']));
    				array_push($data, $filepath);
    			}
    		}
    		$log .= sprintf(' %s(%s)', $key, implode(', ', $data));
    	}
    	$log .= "\n";
     
    	$logfile = '../files/temp/log.txt';
    	$dir = dirname($logfile);
    	if (!is_dir($dir) && !mkdir($dir)) {
    		return;
    	}
    	if (($fp = fopen($logfile, 'a'))) {
    		fwrite($fp, $log);
    		fclose($fp);
    	}
    }
     
     
    /**
     * Simple logger function.
     * Demonstrate how to work with elFinder event api.
     *
     * @package elFinder
     * @author Dmitry (dio) Levashov
     **/
    class elFinderSimpleLogger {
     
    	/**
    	 * Log file path
    	 *
    	 * @var string
    	 **/
    	protected $file = '';
     
    	/**
    	 * constructor
    	 *
    	 * @return void
    	 * @author Dmitry (dio) Levashov
    	 **/
    	public function __construct($path) {
    		$this->file = $path;
    		$dir = dirname($path);
    		if (!is_dir($dir)) {
    			mkdir($dir);
    		}
    	}
     
    	/**
    	 * Create log record
    	 *
    	 * @param  string   $cmd       command name
    	 * @param  array    $result    command result
    	 * @param  array    $args      command arguments from client
    	 * @param  elFinder $elfinder  elFinder instance
    	 * @return void|true
    	 * @author Dmitry (dio) Levashov
    	 **/
    	public function log($cmd, $result, $args, $elfinder) {
    		$log = $cmd.' ['.date('d.m H:s')."]\n";
     
    		if (!empty($result['error'])) {
    			$log .= "\tERROR: ".implode(' ', $result['error'])."\n";
    		}
     
    		if (!empty($result['warning'])) {
    			$log .= "\tWARNING: ".implode(' ', $result['warning'])."\n";
    		}
     
    		if (!empty($result['removed'])) {
    			foreach ($result['removed'] as $file) {
    				// removed file contain additional field "realpath"
    				$log .= "\tREMOVED: ".$file['realpath']."\n";
    			}
    		}
     
    		if (!empty($result['added'])) {
    			foreach ($result['added'] as $file) {
    				$log .= "\tADDED: ".$elfinder->realpath($file['hash'])."\n";
    			}
    		}
     
    		if (!empty($result['changed'])) {
    			foreach ($result['changed'] as $file) {
    				$log .= "\tCHANGED: ".$elfinder->realpath($file['hash'])."\n";
    			}
    		}
     
    		$this->write($log);
    	}
     
    	/**
    	 * Write log into file
    	 *
    	 * @param  string  $log  log record
    	 * @return void
    	 * @author Dmitry (dio) Levashov
    	 **/
    	protected function write($log) {
     
    		if (($fp = @fopen($this->file, 'a'))) {
    			fwrite($fp, $log."\n");
    			fclose($fp);
    		}
    	}
     
     
    } // END class 
     
     
    /**
     * Simple function to demonstrate how to control file access using "accessControl" callback.
     * This method will disable accessing files/folders starting from  '.' (dot)
     *
     * @param  string  $attr  attribute name (read|write|locked|hidden)
     * @param  string  $path  file path relative to volume root directory started with directory separator
     * @return bool|null
     **/
    function access($attr, $path, $data, $volume) {
    	return strpos(basename($path), '.') === 0       // if file/folder begins with '.' (dot)
    		? !($attr == 'read' || $attr == 'write')    // set read+write to false, other (locked+hidden) set to true
    		:  null;                                    // else elFinder decide it itself
    }
     
    /**
     * Access control example class
     *
     * @author Dmitry (dio) Levashov
     **/
    class elFinderTestACL {
     
    	/**
    	 * make dotfiles not readable, not writable, hidden and locked
    	 *
    	 * @param  string  $attr  attribute name (read|write|locked|hidden)
    	 * @param  string  $path  file path. Attention! This is path relative to volume root directory started with directory separator.
    	 * @param  mixed   $data  data which seted in 'accessControlData' elFinder option
    	 * @param  elFinderVolumeDriver  $volume  volume driver
    	 * @return bool
    	 * @author Dmitry (dio) Levashov
    	 **/
    	public function fsAccess($attr, $path, $data, $volume) {
     
    		if ($volume->name() == 'localfilesystem') {
    			return strpos(basename($path), '.') === 0
    				? !($attr == 'read' || $attr == 'write')
    				: $attr == 'read' || $attr == 'write';
    		}
     
    		return true;
    	}
     
    } // END class 
     
    $acl = new elFinderTestACL();
     
    function validName($name) {
    	return strpos($name, '.') !== 0;
    }
     
     
    $logger = new elFinderSimpleLogger('../root/temp/log.txt');
     
     
     
    $opts = array(
    	'locale' => 'en_US.UTF-8',
    	'bind' => array(
    		'mkdir mkfile rename duplicate upload rm paste' => 'logger'
    	),
    	'debug' => true,
    	'roots' => array(
    		array(
    			'driver'     => 'LocalFileSystem',
    			'path'       => '../root/test',
    			'startPath'  => '../root/test/',
    			'URL'        => dirname($_SERVER['PHP_SELF']) . '/../root/test',
    			// 'alias'      => 'File system',
    			'mimeDetect' => 'internal',
    			'tmbPath'    => '.tmb',
    			'utf8fix'    => true,
    			'tmbCrop'    => false,
    			'tmbBgColor' => 'transparent',
    			'accessControl' => 'access',
    			// 'uploadDeny' => array('application', 'text/xml')
    		),
    		// array(
    		// 	'driver'     => 'LocalFileSystem',
    		// 	'path'       => '/root/test',
    		// 	// 'URL'        => dirname($_SERVER['PHP_SELF']) . '/root/test',
    		// 	'alias'      => 'File system',
    		// 	'mimeDetect' => 'internal',
    		// 	'tmbPath'    => '.tmb',
    		// 	'utf8fix'    => true,
    		// 	'tmbCrop'    => false,
    		// 	'startPath'  => '/root/test',
    		// 	// 'separator' => ':',
    		// 	'attributes' => array(
    		// 		array(
    		// 			'pattern' => '~/\.~',
    		// 			// 'pattern' => '/^\/\./',
    		// 			'read' => true,
    		// 			'write' => true,
    		// 			'hidden' => false,
    		// 			'locked' => false
    		// 		),
    		// 		array(
    		// 			'pattern' => '~/replace/.+png$~',
    		// 			// 'pattern' => '/^\/\./',
    		// 			'read' => true,
    		// 			'write' => true,
    		// 			// 'hidden' => true,
    		// 			'locked' => true
    		// 		)
    		// 	),
    		// 	// 'defaults' => array('read' => false, 'write' => true)
    		// ),
     
     
    		// array(
    		// 	'driver'     => 'LocalFileSystem',
    		// 	'path'       => '../root/test',
    		// 	'URL'        => dirname($_SERVER['PHP_SELF']) . '/../root2/',
    		// 	'alias'      => 'root',
    		// 	'mimeDetect' => 'internal',
    		// 	'tmbPath'    => '.tmb',
    		// 	// 'copyOverwrite' => false,
    		// 	'utf8fix'    => true,
    		// 	'attributes' => array(
    		// 		array(
    		// 			'pattern' => '~/\.~',
    		// 			// 'pattern' => '/^\/\./',
    		// 			// 'read' => false,
    		// 			// 'write' => false,
    		// 			'hidden' => false,
    		// 			'locked' => true
    		// 		),
    		// 	)
    		// ),
     
    		array(
    			'driver' => 'MySQL2',
    			'path' => 1,
    			// 'treeDeep' => 2,
    			'socket'          => '/opt/local/var/run/mysql5/mysqld.sock',
    			'user' => 'root',
    			'pass' => 'hane',
    			'db' => 'elfinder',
    			'user_id' => 1,
    			// 'accessControl' => 'access',
    			// 'separator' => ':',
    			'tmbCrop'         => true,
    			// thumbnails background color (hex #rrggbb or 'transparent')
    			'tmbBgColor'      => '#000000',
    			'root_table' => 'elfinder_file',
    			// 'imgLib' => 'imagick',
    			// 'uploadOverwrite' => false,
    			// 'copyTo' => false,
    			// 'URL'    => 'http://localhost/git/elfinder',
    			'tmpPath' => '../rootdb/tmp',
    			'tmbPath' => '../rootdb/tmb',
    			'tmbURL' => dirname($_SERVER['PHP_SELF']) . '/../rootdb/tmb/',
    			// 'attributes' => array(
    			// 	array(),
    			// 	array(
    			// 		'pattern' => '/\.jpg$/',
    			// 		'read' => false,
    			// 		'write' => false,
    			// 		'locked' => true,
    			// 		'hidden' => true
    			// 	)
    			// )
     
    		)
    	)
     
    );
     
     
     
    // sleep(3);
    header('Access-Control-Allow-Origin: *');
    $connector = new elFinderConnector(new elFinder($opts), true);
    $connector->run();
     
    // echo '<pre>';
    // print_r($connector);
    Images attachées Images attachées  

  9. #9
    Expert confirmé Avatar de papajoker
    Homme Profil pro
    Développeur Web
    Inscrit en
    Septembre 2013
    Messages
    2 334
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Nièvre (Bourgogne)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Septembre 2013
    Messages : 2 334
    Par défaut
    à verrouiller un dossier comme dans la version démo
    ce qui veux dire ?
    comme dans la démo, tu désires un multi root ?

    dans "roots"
    il faut avoir entré 'path' => 'path/to/files/first_root',
    si tu ne le fournis pas
    toi tu as du mettre "/www/tondossier/tesfichiers/" a la place de "path/to/files/first_root" ????
    mais je ne suis pas devin, donc je ne peux pas t'aider si tu ne m'aides pas

    mon dossier que j'ai mis c'est dossier nommé test
    enfin des infos
    ca marche bien ? et tu désires en plus ?

    ajout d'un second home :
    https://github.com/Studio-42/elFinde...Multiple-Roots

  10. #10
    Membre confirmé
    Profil pro
    Inscrit en
    Mai 2004
    Messages
    107
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2004
    Messages : 107
    Par défaut
    dans la structure du dossier elfinder j'ai ça apres dans le dossier root j'ai crée mon dossier test ou il comporte des couverture de livre comme sur les photos

    1- je veux ce dossier sois verrouillez contre suppression
    Images attachées Images attachées   

  11. #11
    Expert confirmé Avatar de papajoker
    Homme Profil pro
    Développeur Web
    Inscrit en
    Septembre 2013
    Messages
    2 334
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Nièvre (Bourgogne)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Septembre 2013
    Messages : 2 334
    Par défaut
    tu changes attributes dans le dossier

    ligne 238, ajoute par exemple :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    'attributes' => array(
    				array(
    					'pattern' => '/\.js$/', // uniquement pour fichiers .js
    					'read' => true,
    					'write' => false
    				),
    				array(
    					'pattern' => '/^\/icons$/',
    					'read' => true,
    					'write' => false,
                                            'locked'  => true
    				)
    			)
    ce qui était dit dans page :
    https://github.com/Studio-42/elFinde...ssions-control

  12. #12
    Membre confirmé
    Profil pro
    Inscrit en
    Mai 2004
    Messages
    107
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2004
    Messages : 107
    Par défaut
    voila ce que je veux faire vraiment c'est pour cela je veux faire verrouillage par connector.php les images et quelque dossiers verouillé


    je vous remercie pour les réponses

    merci
    Images attachées Images attachées  

Discussions similaires

  1. Gestion des fichiers
    Par babar56 dans le forum C
    Réponses: 10
    Dernier message: 15/04/2006, 10h34
  2. [VBA-E] gestion des fichiers ouverts ...
    Par SpaceFrog dans le forum Macros et VBA Excel
    Réponses: 24
    Dernier message: 20/01/2006, 17h10
  3. [FTP] Gestion des fichiers Online ?
    Par MaTHieU_ dans le forum Langage
    Réponses: 9
    Dernier message: 23/10/2005, 15h16
  4. Gestion des fichiers
    Par roger12 dans le forum Administration système
    Réponses: 2
    Dernier message: 19/10/2005, 09h01

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