Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5

ESET mirror update 2.0
#10

Hi there!

Got Centos 4.8 with PHP 5.1.6. With some modifications I got your script working(almost)
Firstly I had to change the shell exec from
Code:
unrar-free -x /tmp/file.rar /tmp/
to
Code:
unrar x /tmp/file.rar /tmp/

After that I discovered that curl didn't return any size information from curl_exec($ch);, so I used curl_getinfo($ch) instead and thereby don't have to mess around with preg_match().

Code:
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_NOBODY, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // resets direct FILE output
curl_setopt($ch, CURLOPT_URL, 'http://'.$eset_server.$upd_file);
$data = curl_exec($ch);
$info = curl_getinfo($ch);//get info

$time_modified = $info['filetime'];//file time
$size = $info['download_content_length'];//file lenght

The only problem left for me right now is that size_real is 0 for every file downloaded. Down in this case is $info['download_content_length'], and Real is the size on disk via php.
Code:
Launched: 2011-01-06 21:14:41
- trying to download http://89.202.157.227/eset_upd/update.ver
Successfully connected to server 89.202.157.227.
- downloading: /download/engine3/em000_32_l0.nup
0Warning: Filesize of /download/engine3/em000_32_l0.nup is different than expected, will be retried on next run. Down: 6865 Real: 0
- downloading: /download/engine3/em001_32_l0.nup
0Warning: Filesize of /download/engine3/em001_32_l0.nup is different than expected, will be retried on next run. Down: 6865 Real: 0
- downloading: /download/engine3/em001_32_l1.nup
0Warning: Filesize of /download/engine3/em001_32_l1.nup is different than expected, will be retried on next run. Down: 6865 Real: 0
- downloading: /download/engine3/em001_32_l2.nup
0Warning: Filesize of /download/engine3/em001_32_l2.nup is different than expected, will be retried on next run. Down: 6865 Real: 0
- downloading: /download/engine3/em001_32_n1.nup
0Warning: Filesize of /download/engine3/em001_32_n1.nup is different than expected, will be retried on next run. Down: 6865 Real: 0
- downloading: /download/engine3/em001_32_n2.nup


Any idea?
Reply


Messages In This Thread



Users browsing this thread: 1 Guest(s)