|
|
| |
1. Problem with file download |
|
Reply |
|
|
 DonLimo | 2013-01-04 01:19:26 |
Hi,
I have a problem with file download. If I try to download a single file, I get it with a 0 byte dimension. If I download the entire folder (zipped), I can read the content of the files.
Any suggestion?
Thanks in advance |
| |
2. Re: Problem with file download |
|
Reply |
|
|
 DonLimo | 2013-01-04 01:23:53 - In reply to message 1 from DonLimo |
| I forgot to say that I'm using 2.9.1b version of smbwebclient running on apache 2.2 and debian 6.0.6 |
| |
3. Re: Problem with file download |
|
Reply |
|
|
 DonLimo | 2013-01-09 22:47:45 - In reply to message 2 from DonLimo |
I solved the problem changing line 1419.
before:
$this->_SmbClient('get "'.$this->name.'" \"-\" "', $this->parent, '', true);
after:
$this->_SmbClient('get "'.$this->name.'" - "', $this->parent, '', true); |
|