短信 API 无法在本地计算机中工作,但如果放置在托管服务器中则可以工作

问题描述 投票:0回答:2

下面的 php 代码在 Web 服务器上运行良好(即,短信服务器 位于),但在具有

xampp
wamp
的本地计算机上无法正常工作。

实际服务器在godaddy

我错过了什么?

该代码从表中检索连接详细信息,其中包括: 用户名、密码、msisdn 和发件人。当消息最终发送出去时, 该消息已被标记,因此不会再次发送。

<?php

$id = 0;

$con=mysqli_connect("localhost","root","","afrcan_wp");
// Check connection
if (mysqli_connect_errno())
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }

$sql="SELECT id,message,username,password,MSISDN,sender,messagestatus FROM outgoingsms where messagestatus = 'not sent' LIMIT 1";

if ($result=mysqli_query($con,$sql))
  {
  // Fetch one and one row
  while ($row=mysqli_fetch_row($result))
    {

    $id=$row[0];    

    $text1=$row[1];

    $username=$row[2];

    $password=$row[3];

    $to=$row[4];

    $sender=$row[5];

    $messagestatus=$row[6];

 //$conn1=mysqli_connect("localhost","afrcan_wp","Sirhenry888","afrcan_wp");
$conn1 = new mysqli("localhost","root","","african_wp");
// Check connection
if ($conn1->connect_error) {
    die("Connection failed: " . $conn1->connect_error);
} 

$sql = "UPDATE outgoingsms SET messagestatus='sent' WHERE id=$id";

if ($conn1->query($sql) === TRUE) {
    echo "Record updated successfully";
} else {
    echo "Error updating record: " . $conn1->error;
}


$text = trim($text1);

$postUrl = "https://www.connectmedia.co.ke/user-board/?api";

$action="send";

$post = [
'action' => "$action",
'to' => array($to),
'username' => "$username",
'password' => "$password",
'sender' => "$sender",
'message' => urlencode("$text"),
];
$ch = curl_init($postUrl);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($post));
$response = curl_exec($ch);
curl_close($ch);
echo "$response";

    //send messages
    }
  // Free result set
  mysqli_free_result($result);

 $conn1->close();

}

mysqli_close($con);

?>

是代码的问题吗? 互联网连接?

任何帮助将不胜感激

php mysql sms
2个回答
0
投票

如果这在 Web 服务器上工作但在本地主机上不起作用,则可能是 CURL 存在防火墙问题。默认情况下,CURL 使用端口 1080 。检查该端口是否在您的本地主机上打开,或者尝试通过执行以下操作更改端口

curl_setopt ($ch, CURLOPT_PORT , 8089);

0
投票

在本地计算机或任何地方安装 xampp 服务器后,只需在 php 配置文件 (php.ini) 中添加以下行即可。它运行完美。

curl.cainfo = "C:\xampp pache 我

© www.soinside.com 2019 - 2024. All rights reserved.