I've read most of the posts regarding this matter but I find nothing that is relevant to my problem.

I don't know how to connect to the modem with php code. I would greatly appreciate any help or links to where I can find the code.

I have a Sierra Wireless 3G modem. It is connected to Port_#0006.Hub_#0003

I found that the commands sent to the modem should look something like below

AT+CMGF=1 OK
AT+CMGS="+31123456789"

This is the text message.→
+CMGS: 198
OK

Best Regards Luben

link|improve this question

68% accept rate
Are you sure you're talking about PHP? That's a server-side script language. Are you plugging in your 3G modem to your server machine where you are running your web server? – MMM Feb 9 at 13:18
Yes the modem is plugged into the server. Its fixed now turns out the ethernet drivers were installed not the serial ones. – Luben Feb 10 at 11:51
feedback

2 Answers

up vote 1 down vote accepted

In most cases the Wireless modem will create a virtual serial port

  • On Windows look at device manager, View->Devices by Connection and follow the tree back from the modem to find the COMn port (n being what you need to identify).
  • On linux look for /dev/ttyUSBn (again n being what you need to identify).

You can then fopen() the device file (\\.\comn on Windows, /dev/ttyUSBn on Linux) and fwrite() your comands there.

link|improve this answer
Yes I am having difficulty locating this virtual port. I tried viewing devices by connection but it still says Port_#0006.Hub_#0003. Do you have any suggestions how to locate this port? – Luben Feb 9 at 14:37
Port_#0006.Hub_#0003 is the USB device path, I am quite sure, there must be a "normal" COM port name. If you locate your Modem on viewing devices by connection, please post the chain of device names from the modem back to the root of the tree – Eugen Rieck Feb 9 at 14:45
Intel(R) 5 series/3400 Series Chipset Family USB Enhanced Host Controller - 3B3C ->USB Root Hub -->Generic USB Hub --->AirLink USB Ethernet/RNDIS #3 – Luben Feb 9 at 14:48
OK, no info there. Which Windows version? – Eugen Rieck Feb 9 at 14:50
Windows 7 Professional – Luben Feb 9 at 14:57
show 4 more comments
feedback

Your modem driver probably installed a Virtual Serial Port. You need to locate this and then use a library like php-serial to talk to the modem and send the AT commands.

link|improve this answer
Yes I am having difficulty locating this virtual port. I tried viewing devices by connection but it still says Port_#0006.Hub_#0003. Do you have any suggestions how to locate this port? – Luben Feb 9 at 14:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.