26 lines
580 B
PHP
26 lines
580 B
PHP
<?php
|
|
// upload_config.php - Konfiguration für Upload
|
|
|
|
// Upload-Einstellungen
|
|
$max_file_size = 10 * 1024 * 1024; // 10MB
|
|
$upload_dir = 'VEROuploads/';
|
|
|
|
// Erlaubte Dateitypen
|
|
$allowed_types = array('application/pdf');
|
|
|
|
// Datenbankeinstellungen (falls verwendet)
|
|
$db_config = array(
|
|
'host' => 'localhost',
|
|
'database' => 'your_database',
|
|
'username' => 'your_username',
|
|
'password' => 'your_password'
|
|
);
|
|
|
|
// Dokumenttypen
|
|
$document_types = array(
|
|
'publikation' => 'Publikation',
|
|
'benotung' => 'Benotung',
|
|
'andere_nachweise' => 'Andere Nachweise'
|
|
);
|
|
?>
|