/    Sign up×
Community /Pin to ProfileBookmark

Copy file from server local to remote server

Hello,
I do not know if you can do in php, maybe Show me another language:

I have a local wamp server (apache / php / mysql) where there are web pages accessible by loca network.

I have a remote server on a hosting Linux and MySQL where there are the same pages of the local server.

How do I copy some files from the local server to remote server automatically? For example, at a certain time.
The network where there is’ the local server does not allow me to use FTP.
how can I do?
Thanks in advance

to post a comment
PHP

2 Comments(s)

Copy linkTweet thisAlerts:
@hastxNov 13.2010 — The easiest way is to just use fopen() the same way you would use on a local server. But some servers might block the ability to use remote fopen() calls, I have run into that before, if that is the case you should be able to do it using cURL. cURL is a bit more involved, but will usually get the job done.

Once you have the file content save it to the localserver and to do it automatically on a schedule, set up a cron job.

See here for some basic info
Copy linkTweet thisAlerts:
@cusnaauthorNov 16.2010 — Hello,

I'm trying with this code but

does not work, I have a problem with squid

Authentication, I try also not NTML:

[code=php]<?php
$target_url = 'http://www.xxxxx.com/receive.php';

$file_name_with_full_path = realpath('file_to_upload.pdf');
$post = array('extra_info' => 'sono info
extra','file_contents'=>'@'.$file_name_with_full_path);
$fp=fopen('stderr.txt', 'w');
$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_VERBOSE, 1);
$r=curl_setopt($ch, CURLOPT_STDERR, $fp);
curl_setopt($ch, CURLOPT_URL,$target_url);
curl_setopt($ch, CURLOPT_POST,1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);

curl_setopt($ch, CURLOPT_PROXYAUTH, CURLAUTH_NTLM);

curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1);
curl_setopt($ch, CURLOPT_PROXY, 'proxy.xx.xxx:3128');
curl_setopt($ch, CURLOPT_PROXYUSERPWD, 'mypassword');
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);

$result=curl_exec ($ch);
curl_close ($ch);
fclose($fp);
echo $result;
?>[/code]


in the file sdterr.txt:

[CODE] About to connect() to proxy proxy.xx.xxx port 3128 (#0)
* Trying 192.168.2.14... * connected
* Connected to proxy.xx.xxx (192.168.2.14) port 3128 (#0)
* Establish HTTP proxy tunnel to www.xxxxx.com:80
* Proxy auth using Basic with user 'username'
> CONNECT www.xxxxx.com:80 HTTP/1.1
Host: www.xxxxx.com:80
Proxy-Authorization: Basic bW9cZmVybmFuZG8uYm9jY2lhOkNsYXVkaW8yMDEw
Proxy-Connection: Keep-Alive

< HTTP/1.0 403 Forbidden
< Server: squid/2.7.STABLE7
< Date: Mon, 15 Nov 2010 17:01:35 GMT
< Content-Type: text/html
< Content-Length: 1045
< X-Squid-Error: ERR_ACCESS_DENIED 0
< X-Cache: MISS from squid
< X-Cache-Lookup: NONE from squid:3128
< Via: 1.0 squid:3128 (squid/2.7.STABLE7)
< Connection: close
<
* Received HTTP code 403 from proxy after CONNECT
* Closing connection #0

[/CODE]
×

Success!

Help @cusna spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.27,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...