Файловый менеджер - Редактировать - /var/www/jonas-eriksen.dk/result/static/upload.php
Назад
<?php require_once('../include.php'); include ("upload_class.php"); //classes is the map where the class file is stored (one above the root) $admin = new admin($db); $user = new user($db); $log = new log($db); $admin->passwordResetCheck(); if (!$admin->admin_level(0)) { header("location: /static/401.php"); die(); } $users = $user->getAllUsers(0); include('header.php'); $my_upload = new file_upload_class; $my_upload->upload_dir = "profile-picture/"; // "files" is the folder for the uploaded files (you have to create this folder) $my_upload->extensions = array(".jpg", ".JPG"); // specify the allowed extensions here // $my_upload->extensions = "de"; // use this to switch the messages into an other language (translate first!!!) $my_upload->max_length_filename = 50; // change this value to fit your field length in your database (standard 100) $my_upload->rename_file = true; if(isset($_POST['Submit'])) { $my_upload->the_temp_file = $_FILES['upload']['tmp_name']; $my_upload->the_file = $_FILES['upload']['name']; $my_upload->http_error = $_FILES['upload']['error']; $my_upload->replace = (isset($_POST['replace'])) ? $_POST['replace'] : "n"; // because only a checked checkboxes is true $my_upload->do_filename_check = (isset($_POST['check'])) ? $_POST['check'] : "n"; // use this boolean to check for a valid filename $new_name = (isset($_POST['name'])) ? $_POST['name'] : ""; if ($my_upload->upload($new_name)) { // new name is an additional filename information, use this to rename the uploaded file $full_path = $my_upload->upload_dir.$my_upload->file_copy; $info = $my_upload->get_uploaded_file_info($full_path); $log->addLog($_SESSION['userId'], "Nyt billede oploadet", "Admin", "/user/profile.php?user=" . $_POST['name']); ?> <script> window.location.replace("/user/profile.php?user=<?php echo $_POST['name'] ?>"); </script> <?php // ... or do something like insert the filename to the database } } ?> <style type="text/css"> label { float:left; display:block; width:120px; } input { float:left; } </style> </head> <body> <h3>Opload billede af skytte</h3> <form name="form1" enctype="multipart/form-data" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>"> <label for="upload">Vælg en fil</label><input type="file" name="upload" size="30"><br clear="all"> <label for="name">Vælg skytte</label> <select name="name"> <?php foreach ($users as $user) { ?> <option value="<?php echo $user[0] ?>"><?php echo $user[3] ?></option> <?php } ?> </select> <br clear="all"> <input type="checkbox" name="replace" value="y" checked hidden> <input name="check" type="checkbox" value="y" checked hidden> <input style="margin-left:120px;" type="submit" name="Submit" value="Submit"> </form> <br clear="all"> <p><?php echo $my_upload->show_error_string(); ?></p> <?php if (isset($info)) echo "<blockquote>".nl2br($info)."</blockquote>"; ?> </body> </html> <?php include('footer.php');
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Генерация страницы: 0.05 |
proxy
|
phpinfo
|
Настройка