2023-03-22 23:10:33 +01:00
|
|
|
<?php
|
|
|
|
|
2023-03-23 11:15:05 +01:00
|
|
|
// Title
|
2023-03-22 23:10:33 +01:00
|
|
|
$title = "imgpaste by gideonstar";
|
|
|
|
|
|
|
|
// Displayed text
|
2023-03-23 00:35:35 +01:00
|
|
|
$text = "Click or drop image here...";
|
2023-03-22 23:10:33 +01:00
|
|
|
|
2023-03-23 11:15:05 +01:00
|
|
|
// Writeable directory for images. Will be created if it does not exist.
|
2023-03-22 23:10:33 +01:00
|
|
|
$datadir = "i";
|
|
|
|
|
2023-03-23 11:15:05 +01:00
|
|
|
// Length of the generated file names
|
2023-03-23 07:41:12 +01:00
|
|
|
$length = 8;
|
2023-03-22 23:10:33 +01:00
|
|
|
|
2023-03-23 13:41:28 +01:00
|
|
|
// Image lifetime in seconds
|
|
|
|
$lifetime = 3600;
|
|
|
|
|
2023-03-22 23:10:33 +01:00
|
|
|
?>
|