I'm trying for four days now to make a call from out a web script with the Skype API but without any success. I tried everything, PHP, Javascript, VBScript. The only way I achieved to make a call is with VBScript and by executing it through the command prompt (wscript.exe test.vbs). So now I tried to execute this (wscript.exe test.vbs) through PHP with the system() command, but without any luck.
The PHP looks like this:
<?
system("cscript.exe c:\test.vbs");
?>
And the result is this:
Microsoft ® Windows Script Host Version 5.6 Copyright © Microsoft Corporation 1996-2001. All rights reserved. Input Error: There is no file extension in "C:\Program Files\vtigerCRM4.2.4rc2\apache\htdocs\vtigerCRM\koalamedia\callcenter".
Can anyone please help me with this ? I also tried PHP but I get errors all the time
Thanks!!!