Author |
|
jhiteknx Newbie
Joined: 24 September 2014 Location: United States
Online Status: Offline Posts: 3
|
Posted: 24 September 2014 at 10:20am | IP Logged
|
|
|
I've searched and found similar issues but not mine exactly. Not much of a PHP guy so I don't know what this means. Here are the apache logs:
[Wed Sep 24 12:54:32 2014] [warn] [client 216.235.224.152] mod_fcgid: stderr: PHP Warning: fread() [<a href='function.fread'>function.fread</a>]: \\MailSo\\Base\\StreamWrappers\\SubStreams::stream_read - read 40
bytes more data than requested (8232 read, 8192 max) - excess data will be lost in /var/www/vhosts/domain.tld/httpdocs/webmail/libraries/MailSo/Base/Utils.php on line 1286, referer: http://www.domain.tld/webmail/
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 25 September 2014 at 1:48am | IP Logged
|
|
|
That looks like a non-critical error, you can suppress it by modifying libraries\MailSo\Base\StreamWrappers\SubStreams.php file, replace that line 1286:
Code:
$sReadResult = fread($mCurrentPart, 8192); |
|
|
with:
Code:
$sReadResult = @fread($mCurrentPart, 8192); |
|
|
Hope this helps!
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
jhiteknx Newbie
Joined: 24 September 2014 Location: United States
Online Status: Offline Posts: 3
|
Posted: 25 September 2014 at 6:14am | IP Logged
|
|
|
Well I would ignore it but this error is generated when a user tries to send an email and the email fails. She is getting the data transfer has failed message.
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 25 September 2014 at 6:17am | IP Logged
|
|
|
You'll need to enable logging in WebMail itself, that can be done in AdminPanel, make sure log verbosity is set to Debug, and check the logs once the error occurs.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|