Ozeki Server not receiving SMS messages

拥有回忆 提交于 2019-12-12 01:21:03

问题


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?


回答1:


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."




回答2:


siemens c55 + bluetech cable data works fine..




回答3:


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> 


来源:https://stackoverflow.com/questions/2948893/ozeki-server-not-receiving-sms-messages

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!