Jump to content

PHP move_uploaded_file from subdomain to main domain.


socalnate

Recommended Posts

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

Here's the error:  :P

 

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.