Adding Xenforo Uploader to Custom addon

Nudaii

Well-known member
howdy i am working on a custom addon for my role play forum, i need to upload some files from a front end page to a folder on server

I have managed to get as far as the form and uploading to the servers temp fodler, but i need it to be a file structure thats 1) accessible to download later by others, and 2) able to pull the list of files into an array

any suggestions which varibles are avaible to pull from Zend_File_Transfer_Adapter_Http() to accomplish this? or is there a better way?
 
The Zend_File_Transfer_Adapter_Http() takes only 1 parameter (array):
PHP:
public function __construct($options = array())

Maybe this could help you :)
 
Top Bottom