views:

63

answers:

1

When I upload a file, where is the immediate place the file will go to on the webserver? Is there anyway to configure this place?

+7  A: 

In case of PHP they go to upload_tmp_dir or system default (usually /tmp).

See http://www.php.net/manual/en/features.file-upload.post-method.php

vartec