Probleme beim Dateiupload
Eingetragen von jahwe2000 (10)
am 03.05.2006 - 13:09 Uhr in
am 03.05.2006 - 13:09 Uhr in
Hallo,
ich hab ein riesiges Problem beim Dateiupload. Kurz gesagt: es klappt nicht ;-)
ich habe ein formular mit der neuen Forms API auf Drupal 4.7 (gestern nochmal auf die final geupdated) zusammengebaut, aber ich habe keinen blassen schimmer wie ich an die hochgeladenen Dateien ran komme. Das $_FILES array ist leer und file_check_upload() mit diversen kombinationen bringt auch immer nur nen fehler :(
Ich hoffe hier hat jemand schonmal ein bischen damit rumgespielt.
vielen dank für alle tipps im voraus :)
Grüße,
Philip
<?php
$form['translation_upload'] = array(
'#type' => 'fieldset',
'#title' => t('Upload Translation'),
'#tree' => TRUE,
);
$form['translation_upload']['version'] = array(
'#type' => 'select',
'#title' => t('Upload version'),
'#options' => $versions,
'#default_value' => array_search($highest,$versions),
);
$form['translation_upload']['upload'] = array(
'#type' => 'file',
'#title' => t('Translation file'),
'#size' => 60,
'#description' => t("You may upload following translations: ".join(", ",getValidTranslations())),
);
$form['translation_upload']['overwrite'] = array(
'#type' => 'checkbox',
'#title' => t('Update existing translation'),
'#default_value' => 0,
);
$form['submit'] = array('#type' => 'submit', '#value' => t('Upload'));
?>
- Anmelden oder Registrieren um Kommentare zu schreiben
gelöst
am 05.05.2006 - 11:07 Uhr
ich hab des rätsels lösung gefunden. durch hinzufügen von $form['#attributes'] = array('enctype' => 'multipart/form-data'); klappte alles