Ozeki Server not receiving SMS messages

2019-09-08 09:00发布

问题:

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>