I've been constructing a web interface for my cousin to use on his site. One of the functions of this interface is to allow news items in the form of text and pictures to be uploaded to the site, via the browser using html form tags and PHP/MYSQL.
The problem I've encountered is that to upload files within html forms using php requires them to be loaded into a temporary file on the server, before being placed in the sites home directories.
This temporary upload directory is enabled within php by setting "upload_tmp_dir" in the php.ini file to a suitable directory.
The web hosting company in question will not set this up on their server as they say that they have in the past, and it was regularly abused(?)
Does anyone know of an alternative php upload method via a web browser interface.
Cheers.
The problem I've encountered is that to upload files within html forms using php requires them to be loaded into a temporary file on the server, before being placed in the sites home directories.
This temporary upload directory is enabled within php by setting "upload_tmp_dir" in the php.ini file to a suitable directory.
The web hosting company in question will not set this up on their server as they say that they have in the past, and it was regularly abused(?)
Does anyone know of an alternative php upload method via a web browser interface.
Cheers.