HEX
Server: Apache
System: Linux www3.pit.tblive.com 5.14.0-687.38.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Aug 12 17:19:12 EDT 2026 x86_64
User: awaldron (1020)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //proc/self/root/home/awaldron/public_html/archive/demo/upload/messages_en.php
<?php
/*##################################################################################
|                                                                                  |
|  upload script by http://www.reducedcomplexity.com                               |
|  if you use the script please send an email to scripts@reducedcomplexity.com     |
|  found a bug? please send me an email so i can fix it.                           |
|                                                                                  |
|  use at your own risk! reducedcomplexity.com gives absolutely no warranties.     |
|  copyright http://www.reducedcomplexity.com | Rudi Bieller                       |
|                                                                                  |
*/##################################################################################


// message output: file will be overwritten
$msgOver = "file will be overwritten...";
// message output: file will be renamed
$msgRen = "File Already Exists, Renaming to";
// // message output: file exists, no overwrite.
$msgQuit = "file already exists on server and you chose not to overwrite it. upload aborted.";
// message output: "rename" was checked but no new filename was given
$errMsgOver = "chose a new name for your file first, then submit. - mind the correct extension.";
// message output: renaming is not possible because a file with that name already exists
$errMsgRenex = "new filename is invalid. a file with the same name already exists.";
// message output: general error message in case of a failed upload.
$errMsgCpfail = "copy failed. try again.";
// message output: file size exceeds size limit
$errMsgToobig = error("Upload not successful. File exceeds maximum filesize of $maxSize bytes.");
// message nothing was uploaded
$errMsgNoup = error("Upload not successful. Nothing was uploaded.");
// message output: upload was successful
$msgSuccess = "";
// message output: no local file selected for an upload
$msgPunk = error("Upload not successful. Nothing was uploaded.");
// message output: wrong password was given
$msgPwd = "password is not correct. please try again. - remember: passwords are case-sensitive.";
// message if no file was chosen for delete but del-button was pressed anyway
$msgNofchosen = "please chose a file to be deleted.";
// file-browser: success message when file was deleted successfully
$msgDelsuccess = "delete was successful";
// message for invalid characters
$preg_err_say0 = error("Upload not successful. It is not possible to create a file with one of the following character(s): &quot; "); // edit
$preg_err_say1 = "&quot;.<br>please go back and try again."; // edit
// message for invalid extensions
$msgInvExt = error("Upload not successful. The chosen filetype is not permitted for upload.");

// text to be displayed inside the <form></form>
$txt_file4up = "search file to be uploaded!";
$txt_newname = "give file new name? - don't forget the extension!";
$txt_fileexists = "if selected file and/or new filename exists:";
$txt_overwrite = "overwrite?";
$txt_rename = "rename?";
$txt_quit = "quit?";
$txt_autorename = "rename automatically (filename_000.extension)?";
$txt_pass = "password:";
$txt_go = "upload!";

?>