opendirectory-v10

Gesponsorde koppelingen

PHP script bestanden

  1. opendirectory-v10

« Lees de omschrijving en reacties

//INHOUD VAN HET INDEX.PHP BESTAND

Code (php)
PHP script in nieuw venster Selecteer het PHP script
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
<?php
  include "workdir/config.php";

  //BEGIN DIR CHECK
  if ( !isset($_GET['dir']) )
  {

    $subpad = "./";
  }

  else
  {
    $dir = trim($_GET['dir']);
    $subpad = "$dir/";
    $correct = true;
    if ($dir == "")
    {

      $subpad = "./";
      $correct = false;
    }

    if ( (strlen($dir) > 0) AND (($dir[0] == ".") OR ($dir[0] == "/")) OR (is_numeric(strpos($dir, '..' ))) )
    {

      $subpad  = "./";
      $correct = false;
    }

    $outputsubpad = "&dir=$dir";
  }

  //END DIR CHECK

  //BEGIN CREATE SESSION

  $uploadsession = false;
  if (isset($_GET['upload']) AND !isset($_POST['upload']))
  {

    if (isset($_GET['dir']))
    {

      $uploaddir = $_GET['dir'];
    }

    $outputuploadform  = "<FORM METHOD=\"POST\" ACTION=\"index.php?upload=admin$outputsubpad\" ENCTYPE=\"multipart/form-data\">";
    $outputuploadform .= "$uploadfiletext<INPUT TYPE=\"file\" NAME=\"uploadfile\">&nbsp;&nbsp;&nbsp;";
    $outputuploadform .= "$uploadpasswordtext<INPUT TYPE=\"password\" NAME=\"password\">&nbsp;&nbsp;&nbsp;";
    $outputuploadform .= "<INPUT TYPE=\"submit\" VALUE=\"$uploadfiletext2\">";
    $outputuploadform .= "</FORM><br>";
    $uploadsession = true;
  }

  //END CREATE SESSION

  //BEGIN UPLOAD FILE

  if(isset($_POST['password']))
  {

    $uploadcomplete     = true;
    $passcorrect    = false;
    $passentered      = $_POST['password'];
    $directorytocopyto  = $subpad;
    if($_POST['password'] == $password)
    {

      $passcorrect = true;
    }

    if ($passcorrect == true)
    {

      if (isset($HTTP_POST_FILES['uploadfile']))
      {

        if (is_uploaded_file($HTTP_POST_FILES['uploadfile']['tmp_name']))
        {

          $res = copy($HTTP_POST_FILES['uploadfile']['tmp_name'], $directorytocopyto . $HTTP_POST_FILES['uploadfile']['name']);
          if (!$res)
          {

            $uploadcomplete = false;
          }
        }
      }
    }
  }

  //END UPLOAD FILE

  //BEGIN DELETE SESSION

  $deletesession = false;
  if (isset($_GET['delete']))
  {

    $deletesession = true;
  }

  //END DELETE SESSION

  //BEGIN DELETE FILE

  function delDir($dirName)
  {

    if(empty($dirName))
    {

      return true;
    }

    if(file_exists($dirName))
    {

      $dir = dir($dirName);
      while($file = $dir->read())
      {

        if($file != '.' && $file != '..')
        {

          if(is_dir($dirName.'/'.$file))
          {

            delDir($dirName.'/'.$file);
          }

          else
          {
            @
unlink($dirName.'/'.$file) or die('File '.$dirName.'/'.$file.' couldn\'t be deleted!');
          }
        }
      }

      $dir->close();
      @
rmdir($dirName) or die('Folder '.$dirName.' couldn\'t be deleted!');
    }

    else
    {
      return false;
    }

    return true;
  }


  if(isset($_POST['delpassword']))
  {

    $passcorrect         = false;
    $filetodelete        = $_POST['choosefile'];
    if($_POST['delpassword'] == $password)    
    {

      $passcorrect = true;
    }

    if ($passcorrect == true)
    {

      if (is_dir("$subpad$filetodelete"))
      {

         delDir("$subpad$filetodelete");
      }

      else
      {
        unlink("$subpad$filetodelete");        
      }      
    }    
  }

  //END DELETE FILE

  //BEGIN CREATE DIRECTORY

  $createdirsession = false;
  if (isset($_GET['createdir']))
  {

    $outputcreatedir    = "<FORM METHOD=POST ACTION=\"index.php?createdir=admin$outputsubpad\">";
    $outputcreatedir   .= "$newdirectory&nbsp;&nbsp;&nbsp;";
    $outputcreatedir   .= "<INPUT TYPE=\"text\" NAME=\"directoryname\">&nbsp;&nbsp;&nbsp;";
    $outputcreatedir   .= "$uploadpasswordtext<INPUT TYPE=\"password\" NAME=\"createpassword\">&nbsp;&nbsp;&nbsp;";
    $outputcreatedir   .= "<INPUT TYPE=\"submit\" VALUE=\"$newdirectorycreate\">";
    $outputcreatedir   .= "</FORM><br>";
    $createdirsession   = true;
  }

  //END CREATE DIRECTORY
 
  //BEGIN ACTUAL DIRECTORY CREATION

  if(isset($_POST['directoryname']))
  {

    $createdircomplete     = true;
    $passcorrect           = false;
    $passentered         = $_POST['createpassword'];
    if($_POST['createpassword'] == $password)
    {

      $passcorrect = true;
    }

    if ($passcorrect == true)
    {

      $directoryexists = false;
      $createpath = $subpad . $_POST['directoryname'];
      if (file_exists("$createpath"))
      {

        $directoryexists = true;
      }

      else
      {
        mkdir("$createpath");
      }          
    }
  }


?>

<HTML>
<HEAD>
<TITLE>
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<?php echo $title; ?>
</TITLE>
<link rel="stylesheet" type="text/css" href="workdir/style.css">
</HEAD>
<BODY>

<table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%"
<tr>
<td class="colorbar" height="55">
<table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%">
<tr>
<td valign="top" width="250"><img src="workdir/logo.png"></td>
<td><font color="white" size="2">
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<?php echo $currently; ?>
<b>
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
10
<?php
  if($subpad == "./")
  {

    echo $rootdir;
  }

  else
  {
    echo $rootdir . $subpad;
  }

?>

</b></font></td>
</tr>
</table>

</td>
</tr>
<tr>
<td class="colorbar2" height="5"><img src="workdir/spacer.htm" height="5" width="1"></td>
</tr>
<tr>
<td class="maincontent" height="*" valign="top">





<p></p>
<table border="0" align="left" width="700" >
<tr>
<td bgcolor="#F4F4F4"><center><b>
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<?php echo $filename; ?>
</b></center></td>
<td bgcolor="#F4F4F4"><center><b>
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<?php echo $type; ?>
</b></center></td>
<td bgcolor="#F4F4F4"><center><b>
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<?php echo $size; ?>
</b></center></td>
<td bgcolor="#F4F4F4"><center><b>
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<?php echo $filedir ?>
</b></center></td>
</tr>
<tr>
<td bgcolor="#F4F4F4"><center><b><a href="index.php?sort=filename&type=asc
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<?php echo $outputsubpad; ?>
"><img src="workdir/up.png" border="0"></a> | <a href="index.php?sort=filename&type=desc
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<?php echo $outputsubpad; ?>
"><img src="workdir/down.png" border="0"></a></b></center></td>
<td bgcolor="#F4F4F4"><center><b><a href="index.php?sort=type&type=asc
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<?php echo $outputsubpad; ?>
"><img src="workdir/up.png" border="0"></a> | <a href="index.php?sort=type&type=desc
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<?php echo $outputsubpad; ?>
"><img src="workdir/down.png" border="0"></a></b></center></td>
<td bgcolor="#F4F4F4"><center><b><a href="index.php?sort=size&type=asc
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<?php echo $outputsubpad; ?>
"><img src="workdir/up.png" border="0"></a> | <a href="index.php?sort=size&type=desc
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<?php echo $outputsubpad; ?>
"><img src="workdir/down.png" border="0"></a></b></center></td>
<td bgcolor="#F4F4F4"><center><b><a href="index.php?sort=filedir&type=asc
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<?php echo $outputsubpad; ?>
"><img src="workdir/up.png" border="0"></a> | <a href="index.php?sort=filedir&type=desc
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<?php echo $outputsubpad; ?>
"><img src="workdir/down.png" border="0"></a></b></center></td>
</tr>
Code (php)
PHP script in nieuw venster Selecteer het PHP script
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
<?php
  function size_translate($filesize)
  {

     $array = array(
         'YB' => 1024 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024,
         'ZB' => 1024 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024,
         'EB' => 1024 * 1024 * 1024 * 1024 * 1024 * 1024,
         'PB' => 1024 * 1024 * 1024 * 1024 * 1024,
         'TB' => 1024 * 1024 * 1024 * 1024,
         'GB' => 1024 * 1024 * 1024,
         'MB' => 1024 * 1024,
         'KB' => 1024,
     );

     if($filesize <= 1024)
     {

         $filesize = $filesize . ' Bytes';
     }

     foreach($array AS $name => $size)
     {

         if($filesize > $size || $filesize == $size)
         {

             $filesize = round((round($filesize / $size * 100) / 100), 2) . ' ' . $name;
         }
     }

     return $filesize;
  }

    if (($dp = opendir("$subpad")) != false)
    {

      $list = array();
      while (($file = readdir($dp)) != false)
      {

        if ($file[0] != ".")
        {

          array_push($list, $file);
        }
      }

      closedir($dp);
      sort($list);
      echo "<ul>";
      $totalsize = 0;
      $index = 0;
      foreach ($list as $file)
      {

        if (($file <> "index.php") AND ($file <> "workdir"))
        {

          $ext = strtolower("." . substr(strrchr($file, "."), 1));
          $subsize = filesize("$subpad$file");
          $totalsize = $totalsize + $subsize;
          $bestandarray[$index]['filename'] = "$file";
          $bestandarray[$index]['type'] = "$ext";
          $bestandarray[$index]['size'] = "$subsize";
          if (is_dir("$subpad$file")) { $filediroutput = $filedir_dir; } else { $filediroutput = $filedir_file; }
          $bestandarray[$index]['filedir'] = "$filediroutput";
          $index++;
        }
      }
    
      
      if( count($bestandarray) > 0 )
      {

        if (isset($_GET['sort']))
        {

          $sort = $_GET['sort'];
          $sorttype = $_GET['type'];
          if (($sort == "filename") AND ($sorttype == "asc"))
          {

            foreach($bestandarray as $res) $sortAux[] = $res['filename'];
            array_multisort($sortAux, SORT_ASC, $bestandarray);
            echo "<b>$sorted</b>$sortfilename - $sortasc<br><br>";
          }

          else if (($sort == "filename") AND ($sorttype == "desc"))
          {

            foreach($bestandarray as $res) $sortAux[] = $res['filename'];
            array_multisort($sortAux, SORT_DESC, $bestandarray);
            echo "<b>$sorted</b>$sortfilename - $sortdesc<br><br>";
          }

          else if (($sort == "type") AND ($sorttype == "asc"))
          {

            foreach($bestandarray as $res) $sortAux[] = $res['type'];
            array_multisort($sortAux, SORT_ASC, $bestandarray);
            echo "<b>$sorted</b>$sorttypefile - $sortasc<br><br>";
          }

          else if (($sort == "type") AND ($sorttype == "desc"))
          {

            foreach($bestandarray as $res) $sortAux[] = $res['type'];
            array_multisort($sortAux, SORT_DESC, $bestandarray);
            echo "<b>$sorted</b>$sorttypefile - $sortdesc<br><br>";
          }

          else if (($sort == "size") AND ($sorttype == "asc"))
          {

            foreach($bestandarray as $res) $sortAux[] = $res['size'];
            array_multisort($sortAux, SORT_ASC, $bestandarray);
            echo "<b>$sorted</b>$sortsize - $sortasc<br><br>";
          }

          else if (($sort == "size") AND ($sorttype == "desc"))
          {

            foreach($bestandarray as $res) $sortAux[] = $res['size'];
            array_multisort($sortAux, SORT_DESC, $bestandarray);
            echo "<b>$sorted</b>$sortsize - $sortdesc<br><br>";
          }

          else if (($sort == "filedir") AND ($sorttype == "asc"))
          {

            foreach($bestandarray as $res) $sortAux[] = $res['filedir'];
            array_multisort($sortAux, SORT_ASC, $bestandarray);
            echo "<b>$sorted</b>$sortfiledir - $sortasc<br><br>";
          }

          else if (($sort == "filedir") AND ($sorttype == "desc"))
          {

            foreach($bestandarray as $res) $sortAux[] = $res['filedir'];
            array_multisort($sortAux, SORT_DESC, $bestandarray);
            echo "<b>$sorted</b>$sortfiledir - $sortdesc<br><br>";
          }

          else
          {
            foreach($bestandarray as $res) $sortAux[] = $res['filedir'];
            array_multisort($sortAux, SORT_ASC, $bestandarray);
            echo "<b>$welcomemessage</b><br><br>";
          }
       }

       else
       {
         foreach($bestandarray as $res) $sortAux[] = $res['filedir'];
         array_multisort($sortAux, SORT_ASC, $bestandarray);
         echo "<b>$welcomemessage</b><br><br>";
       }
    }

    else
    {
      echo "<b>$welcomemessage</b><br><br>$nofiles<br><br>";
    }
      

    if ($uploadsession == true)
    {

      echo $outputuploadform;
    }


    if ($createdirsession == true)
    {

      echo $outputcreatedir;
    }


    if (isset($_POST['password']))
    {

      if ($passcorrect == false)
      {

        echo "$passnotcorrect<br><br>";
      }

      else if ($uploadcomplete == true)
      {

        echo "$uploadfilefinished<br><br>";
      }

      else
      {
        echo "$uploadfilenotfinished<br><br>";
      }
    }

  
    if($deletesession == true AND count($bestandarray) > 0)
    {

      echo "<form method=post action=index.php?delete=admin$outputsubpad>";
      echo "<select name=\"choosefile\">";
      for ($i=0; $i < count($bestandarray); $i++)
      {

        $outputfilenametext = $bestandarray[$i]['filename'];
        echo "<option value=\"$outputfilenametext\">$outputfilenametext";
      }

      echo "</select>";
      echo "&nbsp;&nbsp;&nbsp;$uploadpasswordtext<INPUT TYPE=\"password\" name=\"delpassword\">&nbsp;&nbsp;&nbsp;<INPUT TYPE=\"submit\" VALUE=\"Delete File\">";
      echo "</form><br>";
    }


    if(isset($_POST['delpassword']))
    {

      if ($passcorrect == false)
      {

        echo "<br>$passnotcorrect<br><br>";
      }

      else
      {
        echo "<br>$deletefinished<br><br>";  
      }
    }


    if(isset($_POST['createpassword']))
    {

      if ($passcorrect == false)
      {

        echo "<br>$passnotcorrect<br><br>";
      }

      else if ($directoryexists == true)
      {

        echo "$newdirectoryexistsalready<br><br>";  
      }

      else
      {
        echo "$newdirectorycreated<br><br>";
      }
    }





      //CHECK
      if (isset($_GET['dir']) AND ($correct == true))
      {

        $directory = $_GET['dir'];
        $slashes = 0;
        $positie = 0;
        for ($i=0; $i < strlen($directory); $i++)
        {

          if ($directory[$i] == "/")
          {

            $slashes++;
            $positie = $i;
          }
        }

        if ($slashes == 0)
        {

          $directory = "./";
        }

        else
        {
          $directory = substr($directory, 0, $positie);
        }

        echo "<a href=\"index.php?dir=$directory\">$levelup</a><br><br>";
      }

      //END CHECK

      $countarray = count($bestandarray);
      for($i = 0; $i < $countarray; $i++)
      {

        $outputfilename =  $bestandarray[$i]['filename'];
        $outputfiletype =  $bestandarray[$i]['type'];
        $outputfilesize =  $bestandarray[$i]['size'];
        $outputfilesize =  size_translate($outputfilesize);
        $outputfiledir  =  $bestandarray[$i]['filedir'];
    
        echo "<tr>";
        if(is_dir("$subpad$outputfilename"))
        {

          if($subpad <> "./")
          {

             echo "<td bgcolor=#F9F9F9><center><a href=\"index.php?dir=$dir/$outputfilename\">$outputfilename</a></center></td>";            
          }

          else
          {
             echo "<td bgcolor=#F9F9F9><center><a href=\"index.php?dir=$outputfilename\">$outputfilename</a></center></td>";                        
          }
        }

        else
        {
             echo "<td bgcolor=#F9F9F9><center><a href=\"$rootdir$subpad$outputfilename\" target=\"_blank\">$outputfilename</a></center></td>";
        }

        echo "<td bgcolor=#F9F9F9><center>$outputfiletype</center></td>";
        echo "<td bgcolor=#F9F9F9><center>$outputfilesize</center></td>";
        echo "<td bgcolor=#F9F9F9><center>$outputfiledir</center></td>";
        echo "</tr>";
      }

          

        $totalsize = size_translate($totalsize);
        echo "<tr>";
        echo "<td bgcolor=#FFFFFF></td>";
        echo "<td bgcolor=#FFFFFF></td>";
        echo "<td bgcolor=#F4F4F4><center><b>$totalsize</b></center></td>";
        echo "<td bgcolor=#FFFFFF></td>";
        echo "</tr>";
    }

?>

</table>


</td>

</tr>

<tr>
<td class="hrz_line" height="1"><img src="workdir/spacer.htm" height="1" width="1"></td>
</tr>
<tr>
<td class="foot" align="right" height="50">
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<?php echo $created; ?>
<a href="http://www.dutchville.com" target="_new">DutchVille.com</a>. Copyright © 2005. [ <acronym title="
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<?php echo $uploadtext; ?>
"><a href="index.php?upload=admin
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<?php echo $outputsubpad; ?>
" border="0">
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<?php echo $uploadlink; ?>
</a> | </acronym><acronym title="
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<?php echo $deletetext; ?>
"><a href="index.php?delete=admin
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<?php echo $outputsubpad; ?>
" border="0">
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<?php echo $deletelink; ?>
</a></acronym> | </acronym><acronym title="
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<?php echo $directorytext ?>
"><a href="index.php?createdir=admin
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<?php echo $outputsubpad; ?>
" border="0">
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<?php echo $directorylink; ?>
</a></acronym>]</td>
</tr>
</table>

</body></html>

//INHOUD VAN HET CONFIG.PHP BESTAND
Code (php)
PHP script in nieuw venster Selecteer het PHP script
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
<?php
  //THE ROOTDIR VARIABLE WILL BE SHOWN AT THE TOP
  //PLEASE NOTE: STRING MUST END WITH A SLASH, "/"

  $rootdir = "http://localhost/mydir/";
 
  //PASSWORD IS USED FOR UPLOADING FILES. ADVISE: CREATE A PASSWORD LONGER THAN 8 CHARS!
  $password = "pass";

  //LANGUAGE SETTINGS - CHOOSE english OR dutch
  $language = "english";

  //DO NOT EDIT ANYTHING BEHIND THIS LINE IF YOU DONT KNOW ANYTHING ABOUT PHP
  if ($language == "english")
  {

  //ENGLISH LANGUAGE
  $title             = "[ OpenDirectory v1.0 - Created By DutchVille ]";
  $welcomemessage        = "Welcome to my Open Directory! [ <a href=index.php>home</a> ]";
  $nofiles            = "<font color=red>There are no files in this directory right now!</font>";
  $currently             = "You are currently in directory: ";
  $filename            = "Filename:";
  $type                = "Type:";
  $size                = "Size:";
  $filedir            = "File/Directory:";  
  $filedir_file         = "File";
  $filedir_dir            = "<<i>DIR</i>>";
  $created            = "Script Created By ";
  $sorted            = "Files are currently sorted on: ";
  $sortfilename            = "Filename";
  $sorttypefile            = "Type";
  $sortsize            = "Size";
  $sortfiledir            = "File/Directory";
  $sortasc            = "Ascending";
  $sortdesc            = "Descending";
  $levelup            = "<< BACK";
  $passnotcorrect               = "<font color=red>The password is not correct. Please try again</font>";
  $uploadfiletext        = "File: ";
  $uploadpasswordtext        = "Password: ";
  $uploadfiletext2        = "Upload File!";
  $uploadfilefinished        = "<font color=blue>The file has been uploaded!</font>";
  $uploadfilenotfinished    = "<font color=red>The file could not be uploaded. Please try again!</font>";
  $uploadlink            = "U";
  $uploadtext             = "Upload a file to the current directory";
  $deletelink            = "D";
  $deletetext            = "Delete a file from the current directory";
  $directorylink        = "C";
  $directorytext        = "Create a new directory in the current one";
  $deletefinished        = "<font color=blue>The file has been deleted!</font>";
  $newdirectory            = "Directory Name";
  $newdirectorycreate        = "Create Directory";
  $newdirectorycreated        = "<font color=blue>The new directory has been created!</font>";
  $newdirectoryexistsalready    = "<font color=red>The directory already exists!</font>";
  }

?>

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.