此问题正在页面上发生:admin / settings / htmlmail / test
测试发送类:HTMLMailSystem
看门狗表中的原始错误是:echo "120h2m12s" | sed -e 's/\([a-zA-Z]\)\([0-9]\)/\1 \2/g'
所以我试图调试为什么会发生此错误,并且归结为fsockopen函数给出了错误。但是,我仍然收到电子邮件。
调用堆栈:
Uri imageUri = set your image Uri;
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_STREAM, imageUri);
shareIntent.setType("image/jpeg");
shareIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(Intent.createChooser(shareIntent, "send"));
。
var CheckedVal = [];
$("."+inputclass+":checked").each(function() {
CheckedVal.push($(this).val());
});
return CheckedVal;
fsockopen的调用是:
The %echo function did not return any text. Please check the page template of your %theme theme for errors.
错误:
HTMLMailSystem.format() -> echo_themed_page() -> drupal_http_request() -> fsockopen()
PHP错误
$uri:
Array
(
[scheme] => https
[host] => example.com
[port] => 81
[path] => /echo
)
PHP信息设置:
fsockopen('ssl://'. 'example.com', 81, $errno, $errstr, 30);
如果您需要其他信息,请告诉我,我将其添加到问题中。