Quote:
Originally Posted by Golzarion
It is on your forum's root and the folder name is : " mp3";
It may be because of your server configuration ... double check the folder "mp3" permission ( you should have sufficient permission to upload file via php on this folder ) and also check server " temp " folder name on your php.ini ...
If you do not access "php.ini" on your server ,please ask your hosting company about the temp folder for uploading via php and then on "mp3.php" find :
Code:
move_uploaded_file($_FILES["SelectedFile1"]["tmp_name"],"mp3/".$fname) or die("<b>Error! Check folder permission!</b>");
and change " tmp_name" to the correct name of temp folder depending on your server configuration .
I hope it helps ...
/
I have installed this mod on two forums personally whith default setting and no chages was required !
It works perfect .
|
my php.ini is located in:
/usr/php4/lib/
snippet from php.ini
;;;;;;;;;;;;;;;;
; File Uploads ;
;;;;;;;;;;;;;;;;
; Whether to allow HTTP file uploads.
file_uploads = On
; Temporary directory for HTTP uploaded files (will use system default if not
; specified).
;upload_tmp_dir =
; Maximum allowed size for uploaded files.
upload_max_filesize = 6M
my forum is not located under root....was changed long ago for security reasons....can I point the red text to any folder of my choosing where the forums are located?