I'm creating a php script that connects to a 3G modem connected via serial connection on COM5.

I'm getting the following error and I believe it is because php does not have r/w access to COM5:

Warning: fopen(COM5:) [function.fopen]: failed to open stream: No such file or directory in C:\xampp\htdocs\SMStest\test2.php on line 9

// mode com1: BAUD=9600 PARITY=N data=8 stop=1 xon=off
$fp = fopen ("COM5:", "w+");
if (!$fp) {
    echo "Uh-oh. Port not opened.";
} else {
    $e = chr(27);
    $string  = $e . "A" . $e . "H300";
    $string .= $e . "V100" . $e . "XL1SATO";
    $string .= $e . "Q1" . $e . "Z";
    echo $string;
    fputs ($fp, $string );
    fclose ($fp);
}
link|improve this question

68% accept rate
Tried it without the colon? – Leigh Feb 10 at 11:46
Yes both with/without the colon no difference, same error. – Luben Feb 10 at 11:47
I'm clueless, but maybe this can help? phpclasses.org/package/… – Svish Feb 10 at 11:55
COM5 is a virtual rather than a physical port: does something like dio_open('COM5:', O_RDWR | O_NOCTTY | O_NONBLOCK); work instead of fopen? – Mark Baker Feb 10 at 11:56
1  
Possible duplicate: stackoverflow.com/questions/5920600/open-com-port-in-php – Leigh Feb 10 at 11:56
show 6 more comments
feedback

1 Answer

Better late than never, I didn't realise you replied to me.

There are many ways to access COM ports on windows, alternatives to your method are opening it with the following paths:

\Device\00000123 (You can find the correct value in device manager, properties, details, physical device object name)

\\.\com5 (This is how I would open the port as a file if I was writing a program in C or something)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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