刚才安装了whm/cpanel,创建了一些帐户,在其中一个帐户中创建了邮件帐户,然后输入squirrelmail来检查邮件。
不幸的是,它给了我一个错误:
Warning: fsockopen() [function.fsockopen]: php_network_getaddresses: getaddrinfo failed: Name or service not known in /usr/local/cpanel/base/3rdparty/squirrelmail/plugins/login_auth/functions.php on line 129
Warning: fsoc
我使用此代码检查了fsockopen,该功能已启用。
<?php
if(function_exists('fsockopen')) {
echo "fsockopen function is enabled";
}
else {
echo "fsockopen is not enabled";
}
?>
下面是我需要使用的脚本使用的代码。返回错误: fsockopen-function不工作,错误: 110连接超时-失败
if (isset($_SERVER['HTTPS']) &&
我有一个关于fsockopen()的问题。
当我从编写代码时,它不工作,并且我得到:
Warning: fsockopen() [function.fsockopen]: unable to connect to localhost:port
(No connection could be made because the target machine actively refused it. )
in C:\xampp\htdocs\PhpMQTTClient-master\SAM\MQTT\sam_mqtt.php on line 641
Offline
我试过,但它不能解决我的问题。
有
当用户注册后,我想向用户发送确认电子邮件。我使用的是xampp。当我运行我的php文件时,它返回以下错误:
Warning: fsockopen() [function.fsockopen]: unable to connect to ssl://smtp.gmail.com:465 (Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP?) in C:\xampp\htdocs\class.smtp.php on line 122
当我尝试使用fopen/fsockopen和这样的函数来检索远程数据时,我似乎无法弄清楚为什么在路径/admincp/global.php(226)中的第12行代码中收到:致命错误: Can't use function return value in write context in path/admincp/global.php(226):eval()d代码。
我的代码是:
我尝试过使用fopen/fread和fsockopen/fgets。我甚至不知道从哪里开始调试它。
如能给予帮助,我将不胜感激,谢谢!
我有一个php脚本:我把一个网站列表放在一个文本区域中,然后php脚本检查网站是关闭还是打开。我的问题是:当一个网站宕机时,脚本会显示一个错误,并停止使用列表中的其余部分:
Warning: fsockopen() [function.fsockopen]: unable to connect to http://SITEDOWN.com:80 (php_network_getaddresses: getaddrinfo failed: Name or service not known) in /home/checklist/public_html/checklist.php (1) : e
我正在使用PHP fsockopen()来完成我的服务器和PayPal之间的付款。但是,当我尝试使用SSL连接时,我收到以下错误:
Warning: fsockopen() [function.fsockopen]: unable to connect to ssl://:443
(Unable to find the socket transport "ssl" - did you forget to enable
it when you configured PHP?)
我确信我对fsockopen()方法的调用是正确的,因为在我升级开发服务器上的PHP之前,它工作正常
我使用fsockopen()在一个循环中连接到多个服务器。
然而,一些服务器是无效的,我得到如下的PHP警告:
Warning: fsockopen() [function.fsockopen]: php_network_getaddresses: getaddrinfo failed: The requested name is valid, but no data of the requested type was found
有没有办法防止这些警告。
比如在尝试fsockopen之前检查服务器是否正常?
或者有没有其他或者更好的解决方案?
我收到了预期的通知和警告,并希望在我的PHP文件中将其关闭。错误是:
Warning: fsockopen()
通知如下:
Notice: A non well formed numeric value encountered in
我计划对这个PHP脚本使用cron,不想在任何地方记录任何错误或通知。
我正在尝试使用php函数fsockopen在smtp服务器上使用ssl,在我的本地服务器上使用apache的端口465。它在php命令行上运行得很好,但是当脚本在我的浏览器中运行时,我得到了一个SSL错误。
php.ini
extension=php_openssl.dll line is not commented
通过Apache的phpinfo
Loaded Configuration File : D:\localhost\php-5.4.11\php.ini
openssl
OpenSSL support enabled
OpenSSL Library Version OpenSSL
我刚刚遇到了一个问题,我的服务提供商似乎拒绝我使用fsockopen,告诉我这是一个安全风险,我必须找到一个建议我使用perl的替代方案。
有没有人有fsockopen的替代方案,可以在下面的脚本中使用perl?
<?php
// fetches server information from minequery.
function fetch_server_info($ip, $port){
$socket = fsockopen($ip, $port, $errno, $errstr, 0.5);
if($socket === false){
re
错误日志:
[07-Mar-2016 23:26:23 Europe/Moscow] PHP Warning: fsockopen(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /home/domeofli/public_html/test/payments.php on line 81
[07-Mar-2016 23:26:23 Europe/Moscow] PHP Warning: fsockopen(): unable to connect to ssl://www.
我有一个类,在该类中我注册了一个关闭函数,如下所示
class test{
function __construct() {
$self = $this;
$shutdown = function () use (&$self) {
$self->shutdown();
};
register_shutdown_function($shutdown);
}
public function shutdown()
{
echo 'shutd
考虑下面这个简单的代码:
<?php
error_reporting(E_ALL);
//error_reporting(E_STRICT);
date_default_timezone_set('Asia/Calcutta');
$smtp_server = fsockopen("onelocalserver.com", 25, $errno, $errstr, 120);
if(!$smtp_server)
{
// We have an error, do something
echo " E