6.1.2011 10:23
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 to
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().
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.
Any idea?
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/
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?