socalnate Posted November 2, 2007 Share Posted November 2, 2007 How do you move files from a sub domain to a main domain? It gives me an error and won't allow it even though I've changed my folder permission to 777. move_uploaded_file($_FILES["file_name"]["tmp_name"],"http://www.maindomain.com/titles/$new_file_name" ); It works though if I make the paths relative to the sub-domain. (I've got a development server dev.maindomain.com and all the paths are relative...so I made all absolute paths to write to but it doesn't work. I'm linuxed based..) Nathan Link to comment https://forums.phpfreaks.com/topic/75855-php-move_uploaded_file-from-subdomain-to-main-domain/ Share on other sites More sharing options...
teng84 Posted November 2, 2007 Share Posted November 2, 2007 whats the error? you can paste it here ! Link to comment https://forums.phpfreaks.com/topic/75855-php-move_uploaded_file-from-subdomain-to-main-domain/#findComment-383929 Share on other sites More sharing options...
socalnate Posted November 2, 2007 Author Share Posted November 2, 2007 Here's the error: Warning: move_uploaded_file(http://www.mydomain.com/titles/a5eeb0c9dea193531ddd45d2d2e0acc9_welcome.swf) [function.move-uploaded-file]: failed to open stream: HTTP wrapper does not support writeable connections. in /var/www/vhosts/mydomain.com/subdomains/dev/httpdocs/upload.php on line 541 Link to comment https://forums.phpfreaks.com/topic/75855-php-move_uploaded_file-from-subdomain-to-main-domain/#findComment-383933 Share on other sites More sharing options...
socalnate Posted November 3, 2007 Author Share Posted November 3, 2007 Figured out the problem: Yeah when you write you can't use HTTP headers. You have to use the local file path name: EG /var/www/vhosts/yourdomain.com/httpdocs/folder/$new_file_name UGH now I'm getting a SAFE MODE error. I seriously hate SAFE MODE. lol Link to comment https://forums.phpfreaks.com/topic/75855-php-move_uploaded_file-from-subdomain-to-main-domain/#findComment-383957 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.