Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've split the resources on a WP site into two servers: Server A with administration files, Server B with public files. They are connected by the data base.

Are there any way that will cause media that I upload from the WP admin installation on Server A to be stored over on Server B? Whit this, that media will be served from Server B ("public site").

If possible, other than through an FTP connection, my client doesn't want a FTP in the public site :-(

Thanks in advance!

share|improve this question

1 Answer

up vote 1 down vote accepted

First, create a remote storage service where you can post the file and return a URL addressing the file on server B. Then you can use wp filters to attain the url from server A.

You can hook into this filter: "wp_handle_upload"

    apply_filters{
      'wp_handle_upload'
       array( 'file' => $new_file, 'url' => $url, 'type' => $type ), 'upload' 
     )

just replace the URL to the new one

share|improve this answer
1  
Where do you place the credentials of the other server? – hitautodestruct Sep 24 '12 at 7:25
This method does not require credentials. Look up "POST method file uploads". You need to setup your server accordingly, this will be Cross Domain so you would need to get around that somehow (CORS,AMF or cross-domain XHR). The easier way is to do FTP upload using something like: ftp_put($conn_id, $server_path, $file, FTP_BINARY) – ama2 Sep 25 '12 at 7:23
Any chance you can update your answer and elaborate a little? – hitautodestruct Sep 26 '12 at 10:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.