Quote:
Originally Posted by Durtay
When I upload files, i get the message "File Successfully Added", but the header puts out the error codes:
"WARNING: move_upload_file(home/public_html/downloads/GFX asdf basdft [].rar): failed to open stream: No such file or directory in /includes/dl_add.php on line 54"
and
"WARNING: move_upload_file(): Unable to move '/tmp/phpdy7S0I' to 'home/public_html/downloads/GFX asdf basdft [].rar' in /includes/dl_add.php on line 54"
I have my upload URL as: /home/public_html/downloads/
and my download URL as: /downloads/
the actual presence of the download is there, but when I click download to download it, it brings me to a 404 error page: http://www.mydomain.com/radio/downlo...&id=3&act=down
|
I cant think of anything right now... if those are the true paths then everything should be working. You can try chmodding the download folder so that it is readable and writable by the public and by the server. As long as those are the actual paths everything should work.
Are there any spaces in the filename, directory name, or file author? If you upload to 'GFX file author.rar' but it gets saved in the database as 'GFX file author.rar' you would get the download error... but that upload error doesnt make sense.
Just to clarify... when you upload the file, does it upload every file correctly but give you the same error message?
Could you try uploading to your forum url /downloads/ and see if that works (i.e. forum/downloads/). In that case, you don't need to use the actual paths, but can use relative paths such as './downloads/'. You can always use relative paths, but I didnt want to confuse people.