Ozeki 服务器未接收 SMS 消息

发布于 2024-09-03 12:24:13 字数 1039 浏览 8 评论 0原文

我正在尝试让 Ozeki 从我的 GSM 诺基亚 E63 接收 SMS 消息 - 它可以正常发送消息,但不会接收它们。我还尝试获取 PHP/HTML 表单来生成消息,但 Ozeki 网站上的示例不起作用!

<?php
if ($submit=="Send")
{
$url='http://localhost:9333/ozeki?'; 
$url.="action=sendMessage";
$url.="&login=admin";
$url.="&password=abc123"; 
$url.="&recepient=".urlencode($recepient);
$url.="&messageData=".urlencode($message); 
$url.="&sender=".urlencode($sender);
file($url);
}
?> 
<html>
<form method=post action='index.php'> 
<table border=0>
<tr> 
<td>Sender</td><td><input type='text' name='sender'></td> 
</tr>
<tr> 
<td>Recepient</td><td><input type='text' name='recepient'></td> 
</tr>
<tr> 
<td>Message</td><td><input type='text' name='message'</td> 
</tr>
<tr> 
<td colspan=2><input type=submit name=submit value=Send> 
</form>
</tr>
</table>
</form> 
</html>

有什么帮助吗?

I'm trying to get Ozeki to receive SMS messages from my GSM Nokia E63 - it will send messages fine but wont receive them. I am also trying to get a PHP/HTML form to generate messages, but the example on the Ozeki website won't work!

<?php
if ($submit=="Send")
{
$url='http://localhost:9333/ozeki?'; 
$url.="action=sendMessage";
$url.="&login=admin";
$url.="&password=abc123"; 
$url.="&recepient=".urlencode($recepient);
$url.="&messageData=".urlencode($message); 
$url.="&sender=".urlencode($sender);
file($url);
}
?> 
<html>
<form method=post action='index.php'> 
<table border=0>
<tr> 
<td>Sender</td><td><input type='text' name='sender'></td> 
</tr>
<tr> 
<td>Recepient</td><td><input type='text' name='recepient'></td> 
</tr>
<tr> 
<td>Message</td><td><input type='text' name='message'</td> 
</tr>
<tr> 
<td colspan=2><input type=submit name=submit value=Send> 
</form>
</tr>
</table>
</form> 
</html>

Any help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

北座城市 2024-09-10 12:24:13

我不认为 Ozeki 支持 GSM 诺基亚 E63 或任何较新的诺基亚手机(用于接收)。发送工作正常

“如果您的手机型号基于 Symbian 手机操作系统(大多数高端诺基亚和索尼爱立信设备),您将无法将其用于传入 SMS。Symbian 手机永远不会将传入 SMS 消息和传入传送报告传送到手机的调制解调器接口。”

I don't think that Ozeki supports GSM Nokia E63 or any newer nokia phone (for receiving).. Sending works fine

"If your phone model is based on the Symbian mobile phone operating system (most high end Nokia and SonyEricsson devices) you will not be able to use it for incoming SMS. Symbian phones never deliver incoming SMS messages and incoming delivery report to the modem interface of the phone."

落花浅忆 2024-09-10 12:24:13

西门子 c55 + bluetech 电缆数据工作正常..

siemens c55 + bluetech cable data works fine..

橪书 2024-09-10 12:24:13

只需关闭消息输入框即可。也许您的容器没有选择它。只需输入:

<td><input type='text' name='message' /></td> 

而不是

<td><input type='text' name='message'</td> 

Just close the message input box .Maybe your container doesn't pick that. Just put:

<td><input type='text' name='message' /></td> 

instead of

<td><input type='text' name='message'</td> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文